Skip to content

Commit

Permalink
chore(deps)!: upgrade to @sentry/angular v8
Browse files Browse the repository at this point in the history
  • Loading branch information
Badisi committed Aug 15, 2024
1 parent d318107 commit 767f64f
Show file tree
Hide file tree
Showing 7 changed files with 2,118 additions and 1,829 deletions.
3,923 changes: 2,106 additions & 1,817 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"projects/lib"
],
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.7",
"@angular/cli": "~17.3.7",
"@angular/compiler": "^17.3.9",
"@angular/compiler-cli": "^17.3.9",
"@angular/platform-browser-dynamic": "^17.3.9",
"@angular-devkit/build-angular": "^18.2.0",
"@angular/cli": "~18.2.0",
"@angular/compiler": "^18.2.0",
"@angular/compiler-cli": "^18.2.0",
"@angular/platform-browser-dynamic": "^18.2.0",
"@colors/colors": "^1.6.0",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
Expand All @@ -32,10 +32,10 @@
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "^15.2.9",
"ng-packagr": "^17.3.0",
"ng-packagr": "^18.2.0",
"ts-node-dev": "^2.0.0",
"tslib": "^2.6.3",
"typescript": "~5.4.5"
"typescript": "~5.5.4"
},
"commitlint": {
"extends": [
Expand Down
2 changes: 1 addition & 1 deletion projects/lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
},
"dependencies": {
"@hug/ngx-schematics-utilities": "^10.1.2",
"@sentry/angular-ivy": "^7.114.0",
"@sentry/angular": "8.26.0",
"@sentry/cli": "2.33.1",
"tslib": "^2.6.3"
},
Expand Down
2 changes: 1 addition & 1 deletion projects/lib/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export type { BrowserOptions, User } from '@sentry/angular-ivy';
export type { BrowserOptions, User } from '@sentry/angular';
export type { SentryOptions } from './ngx-sentry';
export { setSentryUser, initSentry } from './ngx-sentry';
export { NgxSentryModule } from './ngx-sentry.module';
Expand Down
2 changes: 1 addition & 1 deletion projects/lib/src/ngx-sentry.module.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ModuleWithProviders, NgModule } from '@angular/core';
import { ErrorHandlerOptions } from '@sentry/angular-ivy';
import { ErrorHandlerOptions } from '@sentry/angular';

import { NGX_SENTRY_PROVIDERS } from './ngx-sentry';

Expand Down
2 changes: 1 addition & 1 deletion projects/lib/src/ngx-sentry.provider.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { EnvironmentProviders, makeEnvironmentProviders } from '@angular/core';
import { ErrorHandlerOptions } from '@sentry/angular-ivy';
import { ErrorHandlerOptions } from '@sentry/angular';

import { NGX_SENTRY_PROVIDERS } from './ngx-sentry';

Expand Down
2 changes: 1 addition & 1 deletion projects/lib/src/ngx-sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { APP_INITIALIZER, ErrorHandler, Provider } from '@angular/core';
import { Router } from '@angular/router';
import {
BrowserOptions, browserTracingIntegration, createErrorHandler, ErrorHandlerOptions, getCurrentScope, init, TraceService, User
} from '@sentry/angular-ivy';
} from '@sentry/angular';

export const NGX_SENTRY_PROVIDERS = (options?: ErrorHandlerOptions): Provider[] => [{
// Automatically send Javascript errors captured by the Angular's error handler
Expand Down

0 comments on commit 767f64f

Please sign in to comment.