Closed renovate[bot] closed 3 days ago
Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.
You can manually request rebase by checking the rebase/retry box above.
⚠️ Warning: custom changes will be lost.
This PR contains the following updates:
8.39.0
->8.40.0
Release Notes
getsentry/sentry-javascript (@sentry/browser)
### [`v8.40.0`](https://redirect.github.com/getsentry/sentry-javascript/releases/tag/8.40.0) [Compare Source](https://redirect.github.com/getsentry/sentry-javascript/compare/8.39.0...8.40.0) ##### Important Changes - **feat(angular): Support Angular 19 ([#14398](https://redirect.github.com/getsentry/sentry-javascript/pull/14398))** The `@sentry/angular` SDK can now be used with Angular 19. If you're upgrading to the new Angular version, you might want to migrate from the now deprecated `APP_INITIALIZER` token to `provideAppInitializer`. In this case, change the Sentry `TraceService` initialization in `app.config.ts`: ```ts // Angular 18 export const appConfig: ApplicationConfig = { providers: [ // other providers { provide: TraceService, deps: [Router], }, { provide: APP_INITIALIZER, useFactory: () => () => {}, deps: [TraceService], multi: true, }, ], }; // Angular 19 export const appConfig: ApplicationConfig = { providers: [ // other providers { provide: TraceService, deps: [Router], }, provideAppInitializer(() => { inject(TraceService); }), ], }; ``` - **feat(core): Deprecate `debugIntegration` and `sessionTimingIntegration` ([#14363](https://redirect.github.com/getsentry/sentry-javascript/pull/14363))** The `debugIntegration` was deprecated and will be removed in the next major version of the SDK. To log outgoing events, use [Hook Options](https://docs.sentry.io/platforms/javascript/configuration/options/#hooks) (`beforeSend`, `beforeSendTransaction`, ...). The `sessionTimingIntegration` was deprecated and will be removed in the next major version of the SDK. To capture session durations alongside events, use [Context](https://docs.sentry.io/platforms/javascript/enriching-events/context/) (`Sentry.setContext()`). - **feat(nestjs): Deprecate `@WithSentry` in favor of `@SentryExceptionCaptured` ([#14323](https://redirect.github.com/getsentry/sentry-javascript/pull/14323))** The `@WithSentry` decorator was deprecated. Use `@SentryExceptionCaptured` instead. This is a simple renaming and functionality stays identical. - **feat(nestjs): Deprecate `SentryTracingInterceptor`, `SentryService`, `SentryGlobalGenericFilter`, `SentryGlobalGraphQLFilter` ([#14371](https://redirect.github.com/getsentry/sentry-javascript/pull/14371))** The `SentryTracingInterceptor` was deprecated. If you are using `@sentry/nestjs` you can safely remove any references to the `SentryTracingInterceptor`. If you are using another package migrate to `@sentry/nestjs` and remove the `SentryTracingInterceptor` afterwards. The `SentryService` was deprecated and its functionality was added to `Sentry.init`. If you are using `@sentry/nestjs` you can safely remove any references to the `SentryService`. If you are using another package migrate to `@sentry/nestjs` and remove the `SentryService` afterwards. The `SentryGlobalGenericFilter` was deprecated. Use the `SentryGlobalFilter` instead which is a drop-in replacement. The `SentryGlobalGraphQLFilter` was deprecated. Use the `SentryGlobalFilter` instead which is a drop-in replacement. - **feat(node): Deprecate `nestIntegration` and `setupNestErrorHandler` in favor of using `@sentry/nestjs` ([#14374](https://redirect.github.com/getsentry/sentry-javascript/pull/14374))** The `nestIntegration` and `setupNestErrorHandler` functions from `@sentry/node` were deprecated and will be removed in the next major version of the SDK. If you're using `@sentry/node` in a NestJS application, we recommend switching to our new dedicated `@sentry/nestjs` package. ##### Other Changes - feat(browser): Send additional LCP timing info ([#14372](https://redirect.github.com/getsentry/sentry-javascript/pull/14372)) - feat(replay): Clear event buffer when full and in buffer mode ([#14078](https://redirect.github.com/getsentry/sentry-javascript/pull/14078)) - feat(core): Ensure `normalizedRequest` on `sdkProcessingMetadata` is merged ([#14315](https://redirect.github.com/getsentry/sentry-javascript/pull/14315)) - feat(core): Hoist everything from `@sentry/utils` into `@sentry/core` ([#14382](https://redirect.github.com/getsentry/sentry-javascript/pull/14382)) - fix(core): Do not throw when trying to fill readonly properties ([#14402](https://redirect.github.com/getsentry/sentry-javascript/pull/14402)) - fix(feedback): Fix `__self` and `__source` attributes on feedback nodes ([#14356](https://redirect.github.com/getsentry/sentry-javascript/pull/14356)) - fix(feedback): Fix non-wrapping form title ([#14355](https://redirect.github.com/getsentry/sentry-javascript/pull/14355)) - fix(nextjs): Update check for not found navigation error ([#14378](https://redirect.github.com/getsentry/sentry-javascript/pull/14378)) #### Bundle size 📦 | Path | Size | | ---------------------------------------------------------------- | ----------------- | | [@sentry/browser](https://redirect.github.com/sentry/browser) | 22.88 KB | | [@sentry/browser](https://redirect.github.com/sentry/browser) - with treeshaking flags | 21.57 KB | | [@sentry/browser](https://redirect.github.com/sentry/browser) (incl. Tracing) | 35.46 KB | | [@sentry/browser](https://redirect.github.com/sentry/browser) (incl. Tracing, Replay) | 72.22 KB | | [@sentry/browser](https://redirect.github.com/sentry/browser) (incl. Tracing, Replay) - with treeshaking flags | 62.53 KB | | [@sentry/browser](https://redirect.github.com/sentry/browser) (incl. Tracing, Replay with Canvas) | 76.52 KB | | [@sentry/browser](https://redirect.github.com/sentry/browser) (incl. Tracing, Replay, Feedback) | 89.02 KB | | [@sentry/browser](https://redirect.github.com/sentry/browser) (incl. Feedback) | 39.63 KB | | [@sentry/browser](https://redirect.github.com/sentry/browser) (incl. sendFeedback) | 27.51 KB | | [@sentry/browser](https://redirect.github.com/sentry/browser) (incl. FeedbackAsync) | 32.32 KB | | [@sentry/react](https://redirect.github.com/sentry/react) | 25.58 KB | | [@sentry/react](https://redirect.github.com/sentry/react) (incl. Tracing) | 38.32 KB | | [@sentry/vue](https://redirect.github.com/sentry/vue) | 27.04 KB | | [@sentry/vue](https://redirect.github.com/sentry/vue) (incl. Tracing) | 37.27 KB | | [@sentry/svelte](https://redirect.github.com/sentry/svelte) | 23.03 KB | | CDN Bundle | 24.04 KB | | CDN Bundle (incl. Tracing) | 37.02 KB | | CDN Bundle (incl. Tracing, Replay) | 71.81 KB | | CDN Bundle (incl. Tracing, Replay, Feedback) | 77.16 KB | | CDN Bundle - uncompressed | 70.9 KB | | CDN Bundle (incl. Tracing) - uncompressed | 110.25 KB | | CDN Bundle (incl. Tracing, Replay) - uncompressed | 223.05 KB | | CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 236.27 KB | | [@sentry/nextjs](https://redirect.github.com/sentry/nextjs) (client) | 38.42 KB | | [@sentry/sveltekit](https://redirect.github.com/sentry/sveltekit) (client) | 35.97 KB | | [@sentry/node](https://redirect.github.com/sentry/node) | 134.48 KB | | [@sentry/node](https://redirect.github.com/sentry/node) - without tracing | 96.32 KB | | [@sentry/aws-serverless](https://redirect.github.com/sentry/aws-serverless) | 106.57 KB |Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.