fix(deps): update sentry-javascript monorepo to v7.95.0 #3911

Merged
konrad merged 1 commits from renovate/sentry-javascript-monorepo into main 2024-01-23 20:18:18 +00:00
Member

This PR contains the following updates:

Package Type Update Change
@sentry/tracing (source) dependencies minor 7.94.1 -> 7.95.0
@sentry/vue (source) dependencies minor 7.94.1 -> 7.95.0

Release Notes

getsentry/sentry-javascript (@​sentry/tracing)

v7.95.0

Compare Source

Important Changes
Deprecations

This release includes some deprecations in preparation for v8.

Most notably, it deprecates the Replay & Feedback classes in favor of a functional replacement:

import * as Sentry from '@​sentry/browser';

Sentry.init({
  integrations: [
    // Instead of
    new Sentry.Replay(),
    new Sentry.Feedback(),
    // Use the functional replacement:
    Sentry.replayIntegration(),
    Sentry.feedbackIntegration(),
  ],
});
  • feat(core): Deprecate Span.origin in favor of sentry.origin attribute (#​10260)
  • feat(core): Deprecate Span.parentSpanId (#​10244)
  • feat(core): Expose isInitialized() to replace checking via getClient (#​10296)
  • feat(replay): Deprecate Replay, ReplayCanvas, Feedback classes (#​10270)
  • feat(wasm): Deprecate Wasm integration class (#​10230)
Other Changes
  • feat: Make parameterize function available through browser and node API (#​10085)
  • feat(feedback): Configure feedback border radius (#​10289)
  • feat(sveltekit): Update default integration handling & deprecate addOrUpdateIntegration (#​10263)
  • fix(replay-canvas): Add missing dependency on @​sentry/utils (#​10279)
  • fix(tracing): Don't send negative ttfb (#​10286)

Work in this release contributed by @​AleshaOleg. Thank you for your contribution!


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 these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@sentry/tracing](https://github.com/getsentry/sentry-javascript/tree/master/packages/tracing) ([source](https://github.com/getsentry/sentry-javascript)) | dependencies | minor | [`7.94.1` -> `7.95.0`](https://renovatebot.com/diffs/npm/@sentry%2ftracing/7.94.1/7.95.0) | | [@sentry/vue](https://github.com/getsentry/sentry-javascript/tree/master/packages/vue) ([source](https://github.com/getsentry/sentry-javascript)) | dependencies | minor | [`7.94.1` -> `7.95.0`](https://renovatebot.com/diffs/npm/@sentry%2fvue/7.94.1/7.95.0) | --- ### Release Notes <details> <summary>getsentry/sentry-javascript (@&#8203;sentry/tracing)</summary> ### [`v7.95.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7950) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.94.1...7.95.0) ##### Important Changes ##### Deprecations This release includes some deprecations in preparation for v8. Most notably, it deprecates the `Replay` & `Feedback` classes in favor of a functional replacement: ```js import * as Sentry from '@&#8203;sentry/browser'; Sentry.init({ integrations: [ // Instead of new Sentry.Replay(), new Sentry.Feedback(), // Use the functional replacement: Sentry.replayIntegration(), Sentry.feedbackIntegration(), ], }); ``` - feat(core): Deprecate `Span.origin` in favor of `sentry.origin` attribute ([#&#8203;10260](https://github.com/getsentry/sentry-javascript/issues/10260)) - feat(core): Deprecate `Span.parentSpanId` ([#&#8203;10244](https://github.com/getsentry/sentry-javascript/issues/10244)) - feat(core): Expose `isInitialized()` to replace checking via `getClient` ([#&#8203;10296](https://github.com/getsentry/sentry-javascript/issues/10296)) - feat(replay): Deprecate `Replay`, `ReplayCanvas`, `Feedback` classes ([#&#8203;10270](https://github.com/getsentry/sentry-javascript/issues/10270)) - feat(wasm): Deprecate `Wasm` integration class ([#&#8203;10230](https://github.com/getsentry/sentry-javascript/issues/10230)) ##### Other Changes - feat: Make `parameterize` function available through browser and node API ([#&#8203;10085](https://github.com/getsentry/sentry-javascript/issues/10085)) - feat(feedback): Configure feedback border radius ([#&#8203;10289](https://github.com/getsentry/sentry-javascript/issues/10289)) - feat(sveltekit): Update default integration handling & deprecate `addOrUpdateIntegration` ([#&#8203;10263](https://github.com/getsentry/sentry-javascript/issues/10263)) - fix(replay-canvas): Add missing dependency on [@&#8203;sentry/utils](https://github.com/sentry/utils) ([#&#8203;10279](https://github.com/getsentry/sentry-javascript/issues/10279)) - fix(tracing): Don't send negative ttfb ([#&#8203;10286](https://github.com/getsentry/sentry-javascript/issues/10286)) Work in this release contributed by [@&#8203;AleshaOleg](https://github.com/AleshaOleg). Thank you for your contribution! </details> --- ### 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 these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
renovate added the
dependencies
label 2024-01-23 19:18:47 +00:00
renovate added 1 commit 2024-01-23 19:18:49 +00:00
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
5169cca8d8
fix(deps): update sentry-javascript monorepo to v7.95.0
Member

Hi renovate!

Thank you for creating a PR!

I've deployed the changes of this PR on a preview environment under this URL: https://3911-renovate-sentry-javascript-monor--vikunja-frontend-preview.netlify.app

You can use this url to view the changes live and test them out.
You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/.

Have a nice day!

Beep boop, I'm a bot.

Hi renovate! Thank you for creating a PR! I've deployed the changes of this PR on a preview environment under this URL: https://3911-renovate-sentry-javascript-monor--vikunja-frontend-preview.netlify.app You can use this url to view the changes live and test them out. You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/. Have a nice day! > Beep boop, I'm a bot.
konrad merged commit 5169cca8d8 into main 2024-01-23 20:18:18 +00:00
konrad deleted branch renovate/sentry-javascript-monorepo 2024-01-23 20:18:19 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.