fix(deps): update sentry-javascript monorepo to v7.68.0 - autoclosed #3705

Closed
renovate wants to merge 1 commits from renovate/sentry-javascript-monorepo into main
Member

This PR contains the following updates:

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

Release Notes

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

v7.68.0

Compare Source

  • feat(browser): Add BroadcastChannel and SharedWorker to TryCatch EventTargets (#​8943)
  • feat(core): Add name to Span (#​8949)
  • feat(core): Add ServerRuntimeClient (#​8930)
  • fix(node-experimental): Ensure span.finish() works as expected (#​8947)
  • fix(remix): Add new sourcemap-upload script files to prepack assets. (#​8948)
  • fix(publish): Publish downleveled TS3.8 types and fix types path (#​8954)

v7.67.0

Compare Source

Important Changes
  • feat: Mark errors caught by the SDK as unhandled
    • feat(browser): Mark errors caught from TryCatch integration as unhandled (#​8890)
    • feat(integrations): Mark errors caught from HttpClient and CaptureConsole integrations as unhandled (#​8891)
    • feat(nextjs): Mark errors caught from NextJS wrappers as unhandled (#​8893)
    • feat(react): Mark errors captured from ErrorBoundary as unhandled (#​8914)
    • feat(remix): Add debugid injection and map deletion to sourcemaps script (#​8814)
    • feat(remix): Mark errors caught from Remix instrumentation as unhandled (#​8894)
    • feat(serverless): Mark errors caught in Serverless handlers as unhandled (#​8907)
    • feat(vue): Mark errors caught by Vue wrappers as unhandled (#​8905)

This release fixes inconsistent behaviour of when our SDKs classify captured errors as unhandled.
Previously, some of our instrumentations correctly set unhandled, while others set handled.
Going forward, all errors caught automatically from our SDKs will be marked as unhandled.
If you manually capture errors (e.g. by calling Sentry.captureException), your errors will continue to be reported as handled.

This change might lead to a decrease in reported crash-free sessions and consequently in your release health score.
If you have concerns about this, feel free to open an issue.

Other Changes
  • feat(node-experimental): Implement new performance APIs (#​8911)
  • feat(node-experimental): Sync OTEL context with Sentry AsyncContext (#​8797)
  • feat(replay): Allow to configure maxReplayDuration (#​8769)
  • fix(browser): Add replay and profiling options to BrowserClientOptions (#​8921)
  • fix(browser): Check for existence of instrumentation targets (#​8939)
  • fix(nextjs): Don't re-export default in route handlers (#​8924)
  • fix(node): Improve mysql integration (#​8923)
  • fix(remix): Guard against missing default export for server instrument (#​8909)
  • ref(browser): Deprecate top-level wrap function (#​8927)
  • ref(node-otel): Avoid exporting internals & refactor attribute adding (#​8920)

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

v7.66.0

Compare Source

  • fix: Defer tracing decision to downstream SDKs when using SDK without performance (#​8839)
  • fix(nextjs): Fix package.json exports (#​8895)
  • fix(sveltekit): Ensure target file exists before applying auto instrumentation (#​8881)
  • ref: Use consistent console instrumentation (#​8879)
  • ref(browser): Refactor sentry breadcrumb to use hook (#​8892)
  • ref(tracing): Add origin to spans (#​8765)

v7.65.0

Compare Source

  • build: Remove build-specific polyfills (#​8809)
  • build(deps): bump protobufjs from 6.11.3 to 6.11.4 (#​8822)
  • deps(sveltekit): Bump @sentry/vite-plugin (#​8877)
  • feat(core): Introduce Sentry.startActiveSpan and Sentry.startSpan (#​8803)
  • fix: Memoize AsyncLocalStorage instance (#​8831)
  • fix(nextjs): Check for validity of API route handler signature (#​8811)
  • fix(nextjs): Fix requestAsyncStorageShim path resolution on windows (#​8875)
  • fix(node): Log entire error object in OnUncaughtException (#​8876)
  • fix(node): More relevant warning message when tracing extensions are missing (#​8820)
  • fix(replay): Streamline session creation/refresh (#​8813)
  • fix(sveltekit): Avoid invalidating data on route changes in wrapServerLoadWithSentry (#​8801)
  • fix(tracing): Better guarding for performance observer (#​8872)
  • ref(sveltekit): Remove custom client fetch instrumentation and use default instrumentation (#​8802)
  • ref(tracing-internal): Deprecate tracePropagationTargets in BrowserTracing (#​8874)

v7.64.0

Compare Source

  • feat(core): Add setMeasurement export (#​8791)
  • fix(nextjs): Check for existence of default export when wrapping pages (#​8794)
  • fix(nextjs): Ensure imports are valid relative paths (#​8799)
  • fix(nextjs): Only re-export default export if it exists (#​8800)

v7.63.0

Compare Source

  • build(deps): bump @​opentelemetry/instrumentation from 0.41.0 to 0.41.2
  • feat(eventbuilder): Export exceptionFromError for use in hybrid SDKs (#​8766)
  • feat(node-experimental): Re-export from node (#​8786)
  • feat(tracing): Add db connection attributes for mysql spans (#​8775)
  • feat(tracing): Add db connection attributes for postgres spans (#​8778)
  • feat(tracing): Improve data collection for mongodb spans (#​8774)
  • fix(nextjs): Execute sentry config independently of autoInstrumentServerFunctions and autoInstrumentAppDirectory (#​8781)
  • fix(replay): Ensure we do not flush if flush took too long (#​8784)
  • fix(replay): Ensure we do not try to flush when we force stop replay (#​8783)
  • fix(replay): Fix hasCheckout handling (#​8782)
  • fix(replay): Handle multiple clicks in a short time (#​8773)
  • ref(replay): Skip events being added too long after initial segment (#​8768)

v7.62.0

Compare Source

Important Changes
  • feat(integrations): Add ContextLines integration for html-embedded JS stack frames (#​8699)

This release adds the ContextLines integration as an optional integration for the Browser SDKs to @sentry/integrations.

This integration adds source code from inline JavaScript of the current page's HTML (e.g. JS in <script> tags) to stack traces of captured errors.
It can't collect source code from assets referenced by your HTML (e.g. <script src="..." />).

The ContextLines integration is useful when you have inline JS code in HTML pages that can't be accessed by Sentry's backend, for example, due to a login-protected page.

import { ContextLines } from "@&#8203;sentry/integrations";

Sentry.init({
  // ...
  integrations: [
    new ContextLines({
      // The number of lines to collect before and after each stack frame's line number
      // Defaults to 7
      frameContextLines: 7,
    }),
  ],
});
Other Changes
  • fix(nextjs): Make all wrappers isomorphic and available in all runtimes (#​8743)
  • fix(replay): Cancel debounce when replay is too short/long (#​8742)
  • fix(utils): dirname and basename should handle Windows paths (#​8737)
  • ref: Hoist flush, close, and lastEventId into @sentry/core (#​8731)
  • ref(node): Don't call JSON.stringify on prisma client when logging (#​8745)

v7.61.1

Compare Source

  • feat(nextjs): Add AsyncLocalStorage async context strategy to edge SDK (#​8720)
  • fix(core): Filter internal API frames for synthetic frames (#​8710)
  • fix(integrations): Capture exception if any arg to console method is an error (#​8671)
  • fix(node-experimental): Update auto integration lookup & readme (#​8690)
  • fix(node): Add availablility check on current hub to Node ContextLines integration (#​8715)
  • fix(replay): Ensure buffer sessions end after capturing an error (#​8713)
  • fix(replay): Ensure buffer->session switch is reliable (#​8712)
  • fix(replay): Ensure we debounce flush if replay too short (#​8716)
  • fix(replay): Improve capture of errorIds/traceIds (#​8678)
  • fix(tracing): Set correct parent span id on fetch sentry-trace header (#​8687)
  • fix(utils): Avoid pre_context and context_line overlap if frame lineno is out of bounds (#​8722)
  • ref(replay): Improve status logging (#​8709)
  • ref(nextjs): Allow withSentryConfig to accept async config function (#​8721)

v7.61.0

Compare Source

Important Changes
  • feat(node-experimental): Add @sentry/node-experimental package as MVP for POTEL (#​8609)

This introduces a new, experimental package, @sentry/node-experimental.
This is a variant of the Node SDK which uses OpenTelemetry under the hood for performance instrumentation.

Note that this package is very much WIP, considered unstable and may change at any time.
No SemVer guarantees apply whatsoever. Still, if you're brave enough you can give it a try.
Read more about @​sentry/node-experimental

Other Changes
  • fix(node): Don't set extra baggage headers (#​8657)
  • fix(tracing): Trim idle transaction spans if they exceed final timeout (#​8653)

v7.60.1

Compare Source

  • fix(nextjs): Match folder paths with trailing separator (#​8615)
  • fix(replay): Ignore clicks with shift pressed (#​8648)
  • fix(replay): Use session.started for min/max duration check (#​8617)

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.60.0` -> `7.68.0`](https://renovatebot.com/diffs/npm/@sentry%2ftracing/7.60.0/7.68.0) | | [@sentry/vue](https://github.com/getsentry/sentry-javascript/tree/master/packages/vue) ([source](https://github.com/getsentry/sentry-javascript)) | dependencies | minor | [`7.60.0` -> `7.68.0`](https://renovatebot.com/diffs/npm/@sentry%2fvue/7.60.0/7.68.0) | --- ### Release Notes <details> <summary>getsentry/sentry-javascript (@&#8203;sentry/tracing)</summary> ### [`v7.68.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7680) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.67.0...7.68.0) - feat(browser): Add `BroadcastChannel` and `SharedWorker` to TryCatch EventTargets ([#&#8203;8943](https://github.com/getsentry/sentry-javascript/issues/8943)) - feat(core): Add `name` to `Span` ([#&#8203;8949](https://github.com/getsentry/sentry-javascript/issues/8949)) - feat(core): Add `ServerRuntimeClient` ([#&#8203;8930](https://github.com/getsentry/sentry-javascript/issues/8930)) - fix(node-experimental): Ensure `span.finish()` works as expected ([#&#8203;8947](https://github.com/getsentry/sentry-javascript/issues/8947)) - fix(remix): Add new sourcemap-upload script files to prepack assets. ([#&#8203;8948](https://github.com/getsentry/sentry-javascript/issues/8948)) - fix(publish): Publish downleveled TS3.8 types and fix types path ([#&#8203;8954](https://github.com/getsentry/sentry-javascript/issues/8954)) ### [`v7.67.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7670) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.66.0...7.67.0) ##### Important Changes - **feat: Mark errors caught by the SDK as unhandled** - feat(browser): Mark errors caught from `TryCatch` integration as unhandled ([#&#8203;8890](https://github.com/getsentry/sentry-javascript/issues/8890)) - feat(integrations): Mark errors caught from `HttpClient` and `CaptureConsole` integrations as unhandled ([#&#8203;8891](https://github.com/getsentry/sentry-javascript/issues/8891)) - feat(nextjs): Mark errors caught from NextJS wrappers as unhandled ([#&#8203;8893](https://github.com/getsentry/sentry-javascript/issues/8893)) - feat(react): Mark errors captured from ErrorBoundary as unhandled ([#&#8203;8914](https://github.com/getsentry/sentry-javascript/issues/8914)) - feat(remix): Add debugid injection and map deletion to sourcemaps script ([#&#8203;8814](https://github.com/getsentry/sentry-javascript/issues/8814)) - feat(remix): Mark errors caught from Remix instrumentation as unhandled ([#&#8203;8894](https://github.com/getsentry/sentry-javascript/issues/8894)) - feat(serverless): Mark errors caught in Serverless handlers as unhandled ([#&#8203;8907](https://github.com/getsentry/sentry-javascript/issues/8907)) - feat(vue): Mark errors caught by Vue wrappers as unhandled ([#&#8203;8905](https://github.com/getsentry/sentry-javascript/issues/8905)) This release fixes inconsistent behaviour of when our SDKs classify captured errors as unhandled. Previously, some of our instrumentations correctly set unhandled, while others set handled. Going forward, all errors caught automatically from our SDKs will be marked as unhandled. If you manually capture errors (e.g. by calling `Sentry.captureException`), your errors will continue to be reported as handled. This change might lead to a decrease in reported crash-free sessions and consequently in your release health score. If you have concerns about this, feel free to open an issue. ##### Other Changes - feat(node-experimental): Implement new performance APIs ([#&#8203;8911](https://github.com/getsentry/sentry-javascript/issues/8911)) - feat(node-experimental): Sync OTEL context with Sentry AsyncContext ([#&#8203;8797](https://github.com/getsentry/sentry-javascript/issues/8797)) - feat(replay): Allow to configure `maxReplayDuration` ([#&#8203;8769](https://github.com/getsentry/sentry-javascript/issues/8769)) - fix(browser): Add replay and profiling options to `BrowserClientOptions` ([#&#8203;8921](https://github.com/getsentry/sentry-javascript/issues/8921)) - fix(browser): Check for existence of instrumentation targets ([#&#8203;8939](https://github.com/getsentry/sentry-javascript/issues/8939)) - fix(nextjs): Don't re-export default in route handlers ([#&#8203;8924](https://github.com/getsentry/sentry-javascript/issues/8924)) - fix(node): Improve mysql integration ([#&#8203;8923](https://github.com/getsentry/sentry-javascript/issues/8923)) - fix(remix): Guard against missing default export for server instrument ([#&#8203;8909](https://github.com/getsentry/sentry-javascript/issues/8909)) - ref(browser): Deprecate top-level `wrap` function ([#&#8203;8927](https://github.com/getsentry/sentry-javascript/issues/8927)) - ref(node-otel): Avoid exporting internals & refactor attribute adding ([#&#8203;8920](https://github.com/getsentry/sentry-javascript/issues/8920)) Work in this release contributed by [@&#8203;SorsOps](https://github.com/SorsOps). Thank you for your contribution! ### [`v7.66.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7660) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.65.0...7.66.0) - fix: Defer tracing decision to downstream SDKs when using SDK without performance ([#&#8203;8839](https://github.com/getsentry/sentry-javascript/issues/8839)) - fix(nextjs): Fix `package.json` exports ([#&#8203;8895](https://github.com/getsentry/sentry-javascript/issues/8895)) - fix(sveltekit): Ensure target file exists before applying auto instrumentation ([#&#8203;8881](https://github.com/getsentry/sentry-javascript/issues/8881)) - ref: Use consistent console instrumentation ([#&#8203;8879](https://github.com/getsentry/sentry-javascript/issues/8879)) - ref(browser): Refactor sentry breadcrumb to use hook ([#&#8203;8892](https://github.com/getsentry/sentry-javascript/issues/8892)) - ref(tracing): Add `origin` to spans ([#&#8203;8765](https://github.com/getsentry/sentry-javascript/issues/8765)) ### [`v7.65.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7650) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.64.0...7.65.0) - build: Remove build-specific polyfills ([#&#8203;8809](https://github.com/getsentry/sentry-javascript/issues/8809)) - build(deps): bump protobufjs from 6.11.3 to 6.11.4 ([#&#8203;8822](https://github.com/getsentry/sentry-javascript/issues/8822)) - deps(sveltekit): Bump `@sentry/vite-plugin` ([#&#8203;8877](https://github.com/getsentry/sentry-javascript/issues/8877)) - feat(core): Introduce `Sentry.startActiveSpan` and `Sentry.startSpan` ([#&#8203;8803](https://github.com/getsentry/sentry-javascript/issues/8803)) - fix: Memoize `AsyncLocalStorage` instance ([#&#8203;8831](https://github.com/getsentry/sentry-javascript/issues/8831)) - fix(nextjs): Check for validity of API route handler signature ([#&#8203;8811](https://github.com/getsentry/sentry-javascript/issues/8811)) - fix(nextjs): Fix `requestAsyncStorageShim` path resolution on windows ([#&#8203;8875](https://github.com/getsentry/sentry-javascript/issues/8875)) - fix(node): Log entire error object in `OnUncaughtException` ([#&#8203;8876](https://github.com/getsentry/sentry-javascript/issues/8876)) - fix(node): More relevant warning message when tracing extensions are missing ([#&#8203;8820](https://github.com/getsentry/sentry-javascript/issues/8820)) - fix(replay): Streamline session creation/refresh ([#&#8203;8813](https://github.com/getsentry/sentry-javascript/issues/8813)) - fix(sveltekit): Avoid invalidating data on route changes in `wrapServerLoadWithSentry` ([#&#8203;8801](https://github.com/getsentry/sentry-javascript/issues/8801)) - fix(tracing): Better guarding for performance observer ([#&#8203;8872](https://github.com/getsentry/sentry-javascript/issues/8872)) - ref(sveltekit): Remove custom client fetch instrumentation and use default instrumentation ([#&#8203;8802](https://github.com/getsentry/sentry-javascript/issues/8802)) - ref(tracing-internal): Deprecate `tracePropagationTargets` in `BrowserTracing` ([#&#8203;8874](https://github.com/getsentry/sentry-javascript/issues/8874)) ### [`v7.64.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7640) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.63.0...7.64.0) - feat(core): Add setMeasurement export ([#&#8203;8791](https://github.com/getsentry/sentry-javascript/issues/8791)) - fix(nextjs): Check for existence of default export when wrapping pages ([#&#8203;8794](https://github.com/getsentry/sentry-javascript/issues/8794)) - fix(nextjs): Ensure imports are valid relative paths ([#&#8203;8799](https://github.com/getsentry/sentry-javascript/issues/8799)) - fix(nextjs): Only re-export default export if it exists ([#&#8203;8800](https://github.com/getsentry/sentry-javascript/issues/8800)) ### [`v7.63.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7630) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.62.0...7.63.0) - build(deps): bump [@&#8203;opentelemetry/instrumentation](https://github.com/opentelemetry/instrumentation) from 0.41.0 to 0.41.2 - feat(eventbuilder): Export `exceptionFromError` for use in hybrid SDKs ([#&#8203;8766](https://github.com/getsentry/sentry-javascript/issues/8766)) - feat(node-experimental): Re-export from node ([#&#8203;8786](https://github.com/getsentry/sentry-javascript/issues/8786)) - feat(tracing): Add db connection attributes for mysql spans ([#&#8203;8775](https://github.com/getsentry/sentry-javascript/issues/8775)) - feat(tracing): Add db connection attributes for postgres spans ([#&#8203;8778](https://github.com/getsentry/sentry-javascript/issues/8778)) - feat(tracing): Improve data collection for mongodb spans ([#&#8203;8774](https://github.com/getsentry/sentry-javascript/issues/8774)) - fix(nextjs): Execute sentry config independently of `autoInstrumentServerFunctions` and `autoInstrumentAppDirectory` ([#&#8203;8781](https://github.com/getsentry/sentry-javascript/issues/8781)) - fix(replay): Ensure we do not flush if flush took too long ([#&#8203;8784](https://github.com/getsentry/sentry-javascript/issues/8784)) - fix(replay): Ensure we do not try to flush when we force stop replay ([#&#8203;8783](https://github.com/getsentry/sentry-javascript/issues/8783)) - fix(replay): Fix `hasCheckout` handling ([#&#8203;8782](https://github.com/getsentry/sentry-javascript/issues/8782)) - fix(replay): Handle multiple clicks in a short time ([#&#8203;8773](https://github.com/getsentry/sentry-javascript/issues/8773)) - ref(replay): Skip events being added too long after initial segment ([#&#8203;8768](https://github.com/getsentry/sentry-javascript/issues/8768)) ### [`v7.62.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7620) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.61.1...7.62.0) ##### Important Changes - **feat(integrations): Add `ContextLines` integration for html-embedded JS stack frames ([#&#8203;8699](https://github.com/getsentry/sentry-javascript/issues/8699))** This release adds the `ContextLines` integration as an optional integration for the Browser SDKs to `@sentry/integrations`. This integration adds source code from inline JavaScript of the current page's HTML (e.g. JS in `<script>` tags) to stack traces of captured errors. It *can't* collect source code from assets referenced by your HTML (e.g. `<script src="..." />`). The `ContextLines` integration is useful when you have inline JS code in HTML pages that can't be accessed by Sentry's backend, for example, due to a login-protected page. ```js import { ContextLines } from "@&#8203;sentry/integrations"; Sentry.init({ // ... integrations: [ new ContextLines({ // The number of lines to collect before and after each stack frame's line number // Defaults to 7 frameContextLines: 7, }), ], }); ``` ##### Other Changes - fix(nextjs): Make all wrappers isomorphic and available in all runtimes ([#&#8203;8743](https://github.com/getsentry/sentry-javascript/issues/8743)) - fix(replay): Cancel debounce when replay is too short/long ([#&#8203;8742](https://github.com/getsentry/sentry-javascript/issues/8742)) - fix(utils): `dirname` and `basename` should handle Windows paths ([#&#8203;8737](https://github.com/getsentry/sentry-javascript/issues/8737)) - ref: Hoist `flush`, `close`, and `lastEventId` into `@sentry/core` ([#&#8203;8731](https://github.com/getsentry/sentry-javascript/issues/8731)) - ref(node): Don't call `JSON.stringify` on prisma client when logging ([#&#8203;8745](https://github.com/getsentry/sentry-javascript/issues/8745)) ### [`v7.61.1`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7611) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.61.0...7.61.1) - feat(nextjs): Add `AsyncLocalStorage` async context strategy to edge SDK ([#&#8203;8720](https://github.com/getsentry/sentry-javascript/issues/8720)) - fix(core): Filter internal API frames for synthetic frames ([#&#8203;8710](https://github.com/getsentry/sentry-javascript/issues/8710)) - fix(integrations): Capture exception if any arg to console method is an error ([#&#8203;8671](https://github.com/getsentry/sentry-javascript/issues/8671)) - fix(node-experimental): Update auto integration lookup & readme ([#&#8203;8690](https://github.com/getsentry/sentry-javascript/issues/8690)) - fix(node): Add availablility check on current hub to Node `ContextLines` integration ([#&#8203;8715](https://github.com/getsentry/sentry-javascript/issues/8715)) - fix(replay): Ensure buffer sessions end after capturing an error ([#&#8203;8713](https://github.com/getsentry/sentry-javascript/issues/8713)) - fix(replay): Ensure buffer->session switch is reliable ([#&#8203;8712](https://github.com/getsentry/sentry-javascript/issues/8712)) - fix(replay): Ensure we debounce flush if replay too short ([#&#8203;8716](https://github.com/getsentry/sentry-javascript/issues/8716)) - fix(replay): Improve capture of errorIds/traceIds ([#&#8203;8678](https://github.com/getsentry/sentry-javascript/issues/8678)) - fix(tracing): Set correct parent span id on fetch sentry-trace header ([#&#8203;8687](https://github.com/getsentry/sentry-javascript/issues/8687)) - fix(utils): Avoid `pre_context` and `context_line` overlap if frame lineno is out of bounds ([#&#8203;8722](https://github.com/getsentry/sentry-javascript/issues/8722)) - ref(replay): Improve status logging ([#&#8203;8709](https://github.com/getsentry/sentry-javascript/issues/8709)) - ref(nextjs): Allow withSentryConfig to accept async config function ([#&#8203;8721](https://github.com/getsentry/sentry-javascript/issues/8721)) ### [`v7.61.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7610) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.60.1...7.61.0) ##### Important Changes - **feat(node-experimental): Add `@sentry/node-experimental` package as MVP for POTEL ([#&#8203;8609](https://github.com/getsentry/sentry-javascript/issues/8609))** This introduces a new, *experimental* package, `@sentry/node-experimental`. This is a variant of the Node SDK which uses OpenTelemetry under the hood for performance instrumentation. Note that this package is very much WIP, considered unstable and may change at any time. **No SemVer guarantees apply whatsoever.** Still, if you're brave enough you can give it a try. [Read more about @&#8203;sentry/node-experimental](./packages/node-experimental/README.md) ##### Other Changes - fix(node): Don't set extra baggage headers ([#&#8203;8657](https://github.com/getsentry/sentry-javascript/issues/8657)) - fix(tracing): Trim idle transaction spans if they exceed final timeout ([#&#8203;8653](https://github.com/getsentry/sentry-javascript/issues/8653)) ### [`v7.60.1`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7601) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.60.0...7.60.1) - fix(nextjs): Match folder paths with trailing separator ([#&#8203;8615](https://github.com/getsentry/sentry-javascript/issues/8615)) - fix(replay): Ignore clicks with `shift` pressed ([#&#8203;8648](https://github.com/getsentry/sentry-javascript/issues/8648)) - fix(replay): Use `session.started` for min/max duration check ([#&#8203;8617](https://github.com/getsentry/sentry-javascript/issues/8617)) </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:eyJjcmVhdGVkSW5WZXIiOiIzNS4yNC42IiwidXBkYXRlZEluVmVyIjoiMzYuNjUuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
renovate added the
dependencies
label 2023-07-26 15:05:50 +00:00
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://3705-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://3705-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.
renovate force-pushed renovate/sentry-javascript-monorepo from fbc95af004 to 51e3a57b95 2023-07-31 15:05:54 +00:00 Compare
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.60.1 to fix(deps): update sentry-javascript monorepo to v7.61.0 2023-07-31 15:05:56 +00:00
renovate force-pushed renovate/sentry-javascript-monorepo from 51e3a57b95 to 625f1e78f0 2023-08-04 07:06:36 +00:00 Compare
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.61.0 to fix(deps): update sentry-javascript monorepo to v7.61.1 2023-08-04 07:06:39 +00:00
renovate force-pushed renovate/sentry-javascript-monorepo from 625f1e78f0 to 442144a3fc 2023-08-09 11:07:22 +00:00 Compare
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.61.1 to fix(deps): update sentry-javascript monorepo to v7.62.0 2023-08-09 11:07:24 +00:00
renovate force-pushed renovate/sentry-javascript-monorepo from 442144a3fc to 9521a7a04c 2023-08-10 18:07:10 +00:00 Compare
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.62.0 to fix(deps): update sentry-javascript monorepo to v7.63.0 2023-08-10 18:07:13 +00:00
renovate force-pushed renovate/sentry-javascript-monorepo from 9521a7a04c to 2ea90ef9c1 2023-08-14 12:08:13 +00:00 Compare
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.63.0 to fix(deps): update sentry-javascript monorepo to v7.64.0 2023-08-14 12:08:16 +00:00
renovate force-pushed renovate/sentry-javascript-monorepo from 2ea90ef9c1 to f4d753b8bd 2023-08-21 11:09:01 +00:00 Compare
renovate force-pushed renovate/sentry-javascript-monorepo from f4d753b8bd to 35e0b3ef8d 2023-08-27 15:07:12 +00:00 Compare
renovate force-pushed renovate/sentry-javascript-monorepo from 35e0b3ef8d to 5653277b72 2023-08-28 14:07:35 +00:00 Compare
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.64.0 to fix(deps): update sentry-javascript monorepo to v7.65.0 2023-08-28 14:07:39 +00:00
renovate force-pushed renovate/sentry-javascript-monorepo from 5653277b72 to b487b3c318 2023-08-30 12:07:18 +00:00 Compare
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.65.0 to fix(deps): update sentry-javascript monorepo to v7.66.0 2023-08-30 12:07:23 +00:00
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.66.0 to fix(deps): update sentry-javascript monorepo to v7.67.0 2023-09-05 12:09:57 +00:00
renovate force-pushed renovate/sentry-javascript-monorepo from 0a8aefe348 to 3c5cedbf5a 2023-09-06 13:09:46 +00:00 Compare
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.67.0 to fix(deps): update sentry-javascript monorepo to v7.68.0 2023-09-06 13:09:49 +00:00
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.68.0 to fix(deps): update sentry-javascript monorepo to v7.68.0 - autoclosed 2023-09-06 14:11:27 +00:00
renovate closed this pull request 2023-09-06 14:11:27 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.