fix(deps): update sentry-javascript monorepo to v7.58.0 #3674

Merged
konrad merged 1 commits from renovate/sentry-javascript-monorepo into main 2023-07-13 06:47:24 +00:00
Member

This PR contains the following updates:

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

Release Notes

getsentry/sentry-javascript

v7.58.0

Compare Source

Important Changes
  • Performance Monitoring not required for Distributed Tracing

This release adds support for distributed tracing without requiring performance monitoring to be active on the JavaScript SDKs (browser and node). This means even if there is no sampled transaction/span, the SDK will still propagate traces to downstream services. Distributed Tracing can be configured with the tracePropagationTargets option, which controls what requests to attach the sentry-trace and baggage HTTP headers to (which is what propagates tracing information).

Sentry.init({
  tracePropagationTargets: ["third-party-site.com", /^https:\/\/yourserver\.io\/api/],
});
  • feat(tracing): Add tracing without performance to browser and client Sveltekit (#​8458)

  • feat(node): Add tracing without performance to Node http integration (#​8450)

  • feat(node): Add tracing without performance to Node Undici (#​8449)

  • feat(node): Populate propagation context using env variables (#​8422)

  • feat(core): Support AggregateErrors in LinkedErrors integration (#​8463)

This release adds support for AggregateErrors. AggregateErrors are considered as Exception Groups by Sentry, and will be visualized and grouped differently. See the Exception Groups Changelog Post for more details.

Exception Group support requires Self-Hosted Sentry version 23.5.1 or newer.

  • feat(replay): Add a new option networkDetailDenyUrls (#​8439)

This release adds a new option networkDetailDenyUrls to the Replay integration. This option allows you to specify a list of URLs that should not be captured by the Replay integration, which can be used alongside the existing networkDetailAllowUrls for finely grained control of which URLs should have network details captured.

Sentry.init({
  integrations: [
    new Sentry.Integrations.Replay({
      networkDetailDenyUrls: [/^http:\/\/example.com\/test$/],
    }),
  ],
});
Other Changes
  • feat(core): Add helpers to get module metadata from injected code (#​8438)
  • feat(core): Add sampling decision to trace envelope header (#​8483)
  • feat(node): Add trace context to checkin (#​8503)
  • feat(node): Export getModule for Electron SDK (#​8488)
  • feat(types): Allow user.id to be a number (#​8330)
  • fix(browser): Set anonymous crossorigin attribute on report dialog (#​8424)
  • fix(nextjs): Ignore tunnelRoute when doing static exports (#​8471)
  • fix(nextjs): Use basePath option for tunnelRoute (#​8454)
  • fix(node): Apply source context to linked errors even when it is uncached (#​8453)
  • fix(node): report errorMiddleware errors as unhandled (#​8048)
  • fix(react): Add support for basename option of createBrowserRouter (#​8457)
  • fix(remix): Add explicit @sentry/node exports. (#​8509)
  • fix(remix): Don't inject trace/baggage to redirect and catch responses (#​8467)
  • fix(replay): Adjust slow/multi click handling (#​8380)

Work in this release contributed by @​mrdulin, @​donaldxdonald & @​ziyad-elabid-nw. Thank you for your contributions!


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.57.0` -> `7.58.0`](https://renovatebot.com/diffs/npm/@sentry%2ftracing/7.57.0/7.58.0) | | [@sentry/vue](https://github.com/getsentry/sentry-javascript/tree/master/packages/vue) ([source](https://github.com/getsentry/sentry-javascript)) | dependencies | minor | [`7.57.0` -> `7.58.0`](https://renovatebot.com/diffs/npm/@sentry%2fvue/7.57.0/7.58.0) | --- ### Release Notes <details> <summary>getsentry/sentry-javascript</summary> ### [`v7.58.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#&#8203;7580) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.57.0...7.58.0) ##### Important Changes - **Performance Monitoring not required for Distributed Tracing** This release adds support for [distributed tracing](https://docs.sentry.io/platforms/javascript/usage/distributed-tracing/) without requiring performance monitoring to be active on the JavaScript SDKs (browser and node). This means even if there is no sampled transaction/span, the SDK will still propagate traces to downstream services. Distributed Tracing can be configured with the `tracePropagationTargets` option, which controls what requests to attach the `sentry-trace` and `baggage` HTTP headers to (which is what propagates tracing information). ```js Sentry.init({ tracePropagationTargets: ["third-party-site.com", /^https:\/\/yourserver\.io\/api/], }); ``` - feat(tracing): Add tracing without performance to browser and client Sveltekit ([#&#8203;8458](https://github.com/getsentry/sentry-javascript/issues/8458)) - feat(node): Add tracing without performance to Node http integration ([#&#8203;8450](https://github.com/getsentry/sentry-javascript/issues/8450)) - feat(node): Add tracing without performance to Node Undici ([#&#8203;8449](https://github.com/getsentry/sentry-javascript/issues/8449)) - feat(node): Populate propagation context using env variables ([#&#8203;8422](https://github.com/getsentry/sentry-javascript/issues/8422)) - **feat(core): Support `AggregateErrors` in `LinkedErrors` integration ([#&#8203;8463](https://github.com/getsentry/sentry-javascript/issues/8463))** This release adds support for [`AggregateErrors`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError). AggregateErrors are considered as Exception Groups by Sentry, and will be visualized and grouped differently. See the [Exception Groups Changelog Post](https://changelog.getsentry.com/announcements/exception-groups-now-supported-for-python-and-net) for more details. Exception Group support requires Self-Hosted Sentry [version 23.5.1](https://github.com/getsentry/self-hosted/releases/tag/23.5.1) or newer. - **feat(replay): Add a new option `networkDetailDenyUrls` ([#&#8203;8439](https://github.com/getsentry/sentry-javascript/issues/8439))** This release adds a new option `networkDetailDenyUrls` to the `Replay` integration. This option allows you to specify a list of URLs that should not be captured by the `Replay` integration, which can be used alongside the existing `networkDetailAllowUrls` for finely grained control of which URLs should have network details captured. ```js Sentry.init({ integrations: [ new Sentry.Integrations.Replay({ networkDetailDenyUrls: [/^http:\/\/example.com\/test$/], }), ], }); ``` ##### Other Changes - feat(core): Add helpers to get module metadata from injected code ([#&#8203;8438](https://github.com/getsentry/sentry-javascript/issues/8438)) - feat(core): Add sampling decision to trace envelope header ([#&#8203;8483](https://github.com/getsentry/sentry-javascript/issues/8483)) - feat(node): Add trace context to checkin ([#&#8203;8503](https://github.com/getsentry/sentry-javascript/issues/8503)) - feat(node): Export `getModule` for Electron SDK ([#&#8203;8488](https://github.com/getsentry/sentry-javascript/issues/8488)) - feat(types): Allow `user.id` to be a number ([#&#8203;8330](https://github.com/getsentry/sentry-javascript/issues/8330)) - fix(browser): Set anonymous `crossorigin` attribute on report dialog ([#&#8203;8424](https://github.com/getsentry/sentry-javascript/issues/8424)) - fix(nextjs): Ignore `tunnelRoute` when doing static exports ([#&#8203;8471](https://github.com/getsentry/sentry-javascript/issues/8471)) - fix(nextjs): Use `basePath` option for `tunnelRoute` ([#&#8203;8454](https://github.com/getsentry/sentry-javascript/issues/8454)) - fix(node): Apply source context to linked errors even when it is uncached ([#&#8203;8453](https://github.com/getsentry/sentry-javascript/issues/8453)) - fix(node): report errorMiddleware errors as unhandled ([#&#8203;8048](https://github.com/getsentry/sentry-javascript/issues/8048)) - fix(react): Add support for `basename` option of `createBrowserRouter` ([#&#8203;8457](https://github.com/getsentry/sentry-javascript/issues/8457)) - fix(remix): Add explicit `@sentry/node` exports. ([#&#8203;8509](https://github.com/getsentry/sentry-javascript/issues/8509)) - fix(remix): Don't inject trace/baggage to `redirect` and `catch` responses ([#&#8203;8467](https://github.com/getsentry/sentry-javascript/issues/8467)) - fix(replay): Adjust slow/multi click handling ([#&#8203;8380](https://github.com/getsentry/sentry-javascript/issues/8380)) Work in this release contributed by [@&#8203;mrdulin](https://github.com/mrdulin), [@&#8203;donaldxdonald](https://github.com/donaldxdonald) & [@&#8203;ziyad-elabid-nw](https://github.com/ziyad-elabid-nw). Thank you for your contributions! </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:eyJjcmVhdGVkSW5WZXIiOiIzNS4yNC42IiwidXBkYXRlZEluVmVyIjoiMzUuMjQuNiJ9-->
renovate added the
dependencies
label 2023-07-12 17:04:45 +00:00
renovate added 1 commit 2023-07-12 17:04:46 +00:00
fix(deps): update sentry-javascript monorepo to v7.58.0
All checks were successful
continuous-integration/drone/pr Build is passing
7d2e94c3d1
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://3674-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://3674-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 129ef769a3 into main 2023-07-13 06:47:24 +00:00
konrad deleted branch renovate/sentry-javascript-monorepo 2023-07-13 06:47:24 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.