fix(deps): update sentry-javascript monorepo to v7.80.1 #3819

Merged
konrad merged 2 commits from renovate/sentry-javascript-monorepo into main 2023-11-17 22:50:08 +00:00
Member

This PR contains the following updates:

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

Release Notes

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

v7.80.1

Compare Source

  • fix(astro): Adjust Vite plugin config to upload server source maps (#​9541)
  • fix(nextjs): Add tracing extensions in all serverside wrappers (#​9537)
  • fix(nextjs): Fix serverside transaction names on Windows (#​9526)
  • fix(node): Fix tRPC middleware typing (#​9540)
  • fix(replay): Add additional safeguards for capturing network bodies (#​9506)
  • fix(tracing): Update prisma span to be db.prisma (#​9512)

v7.80.0

Compare Source

  • feat(astro): Add distributed tracing via <meta> tags (#​9483)
  • feat(node): Capture internal server errors in trpc middleware (#​9482)
  • feat(remix): Export a type to use for MetaFunction parameters (#​9493)
  • fix(astro): Mark SDK package as Astro-external (#​9509)
  • ref(nextjs): Don't initialize Server SDK during build (#​9503)

v7.79.0

Compare Source

  • feat(tracing): Add span origin to trace context (#​9472)
  • fix(deno): Emit .mjs files (#​9485)
  • fix(nextjs): Flush servercomponent events for edge (#​9487)

v7.78.0

Compare Source

Important Changes
  • Replay Bundle Size improvements

We've dramatically decreased the bundle size of our Replay package, reducing the minified & gzipped bundle size by ~20 KB!
This was possible by extensive use of tree shaking and a host of small changes to reduce our footprint:

  • feat(replay): Update rrweb to 2.2.0 (#​9414)
  • ref(replay): Use fflate instead of pako for compression (#​9436)

By using tree shaking it is possible to shave up to 10 additional KB off the bundle.

Other Changes
  • feat(astro): Add Sentry middleware (#​9445)
  • feat(feedback): Add "outline focus" and "foreground hover" vars (#​9462)
  • feat(feedback): Add openDialog and closeDialog onto integration interface (#​9464)
  • feat(feedback): Implement new user feedback embeddable widget (#​9217)
  • feat(nextjs): Add automatic sourcemapping for edge part of the SDK (#​9454)
  • feat(nextjs): Add client routing instrumentation for app router (#​9446)
  • feat(node-experimental): Add hapi tracing support (#​9449)
  • feat(replay): Allow to configure beforeErrorSampling (#​9470)
  • feat(replay): Stop fixing truncated JSONs in SDK (#​9437)
  • fix(nextjs): Fix sourcemaps resolving for local dev when basePath is set (#​9457)
  • fix(nextjs): Only inject basepath in dev mode (#​9465)
  • fix(replay): Ensure we stop for rate limit headers (#​9420)
  • ref(feedback): Add treeshaking for logger statements (#​9475)
  • ref(replay): Use rrweb for slow click detection (#​9408)
  • build(polyfills): Remove output format specific logic (#​9467)

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.77.0` -> `7.80.1`](https://renovatebot.com/diffs/npm/@sentry%2ftracing/7.77.0/7.80.1) | | [@sentry/vue](https://github.com/getsentry/sentry-javascript/tree/master/packages/vue) ([source](https://github.com/getsentry/sentry-javascript)) | dependencies | minor | [`7.77.0` -> `7.80.1`](https://renovatebot.com/diffs/npm/@sentry%2fvue/7.77.0/7.80.1) | --- ### Release Notes <details> <summary>getsentry/sentry-javascript (@&#8203;sentry/tracing)</summary> ### [`v7.80.1`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7801) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.80.0...7.80.1) - fix(astro): Adjust Vite plugin config to upload server source maps ([#&#8203;9541](https://github.com/getsentry/sentry-javascript/issues/9541)) - fix(nextjs): Add tracing extensions in all serverside wrappers ([#&#8203;9537](https://github.com/getsentry/sentry-javascript/issues/9537)) - fix(nextjs): Fix serverside transaction names on Windows ([#&#8203;9526](https://github.com/getsentry/sentry-javascript/issues/9526)) - fix(node): Fix tRPC middleware typing ([#&#8203;9540](https://github.com/getsentry/sentry-javascript/issues/9540)) - fix(replay): Add additional safeguards for capturing network bodies ([#&#8203;9506](https://github.com/getsentry/sentry-javascript/issues/9506)) - fix(tracing): Update prisma span to be `db.prisma` ([#&#8203;9512](https://github.com/getsentry/sentry-javascript/issues/9512)) ### [`v7.80.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7800) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.79.0...7.80.0) - feat(astro): Add distributed tracing via `<meta>` tags ([#&#8203;9483](https://github.com/getsentry/sentry-javascript/issues/9483)) - feat(node): Capture internal server errors in trpc middleware ([#&#8203;9482](https://github.com/getsentry/sentry-javascript/issues/9482)) - feat(remix): Export a type to use for `MetaFunction` parameters ([#&#8203;9493](https://github.com/getsentry/sentry-javascript/issues/9493)) - fix(astro): Mark SDK package as Astro-external ([#&#8203;9509](https://github.com/getsentry/sentry-javascript/issues/9509)) - ref(nextjs): Don't initialize Server SDK during build ([#&#8203;9503](https://github.com/getsentry/sentry-javascript/issues/9503)) ### [`v7.79.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7790) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.78.0...7.79.0) - feat(tracing): Add span `origin` to trace context ([#&#8203;9472](https://github.com/getsentry/sentry-javascript/issues/9472)) - fix(deno): Emit .mjs files ([#&#8203;9485](https://github.com/getsentry/sentry-javascript/issues/9485)) - fix(nextjs): Flush servercomponent events for edge ([#&#8203;9487](https://github.com/getsentry/sentry-javascript/issues/9487)) ### [`v7.78.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7780) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.77.0...7.78.0) ##### Important Changes - **Replay Bundle Size improvements** We've dramatically decreased the bundle size of our Replay package, reducing the minified & gzipped bundle size by ~20 KB! This was possible by extensive use of tree shaking and a host of small changes to reduce our footprint: - feat(replay): Update rrweb to 2.2.0 ([#&#8203;9414](https://github.com/getsentry/sentry-javascript/issues/9414)) - ref(replay): Use fflate instead of pako for compression ([#&#8203;9436](https://github.com/getsentry/sentry-javascript/issues/9436)) By using [tree shaking](https://docs.sentry.io/platforms/javascript/configuration/tree-shaking/) it is possible to shave up to 10 additional KB off the bundle. ##### Other Changes - feat(astro): Add Sentry middleware ([#&#8203;9445](https://github.com/getsentry/sentry-javascript/issues/9445)) - feat(feedback): Add "outline focus" and "foreground hover" vars ([#&#8203;9462](https://github.com/getsentry/sentry-javascript/issues/9462)) - feat(feedback): Add `openDialog` and `closeDialog` onto integration interface ([#&#8203;9464](https://github.com/getsentry/sentry-javascript/issues/9464)) - feat(feedback): Implement new user feedback embeddable widget ([#&#8203;9217](https://github.com/getsentry/sentry-javascript/issues/9217)) - feat(nextjs): Add automatic sourcemapping for edge part of the SDK ([#&#8203;9454](https://github.com/getsentry/sentry-javascript/issues/9454)) - feat(nextjs): Add client routing instrumentation for app router ([#&#8203;9446](https://github.com/getsentry/sentry-javascript/issues/9446)) - feat(node-experimental): Add hapi tracing support ([#&#8203;9449](https://github.com/getsentry/sentry-javascript/issues/9449)) - feat(replay): Allow to configure `beforeErrorSampling` ([#&#8203;9470](https://github.com/getsentry/sentry-javascript/issues/9470)) - feat(replay): Stop fixing truncated JSONs in SDK ([#&#8203;9437](https://github.com/getsentry/sentry-javascript/issues/9437)) - fix(nextjs): Fix sourcemaps resolving for local dev when basePath is set ([#&#8203;9457](https://github.com/getsentry/sentry-javascript/issues/9457)) - fix(nextjs): Only inject basepath in dev mode ([#&#8203;9465](https://github.com/getsentry/sentry-javascript/issues/9465)) - fix(replay): Ensure we stop for rate limit headers ([#&#8203;9420](https://github.com/getsentry/sentry-javascript/issues/9420)) - ref(feedback): Add treeshaking for logger statements ([#&#8203;9475](https://github.com/getsentry/sentry-javascript/issues/9475)) - ref(replay): Use rrweb for slow click detection ([#&#8203;9408](https://github.com/getsentry/sentry-javascript/issues/9408)) - build(polyfills): Remove output format specific logic ([#&#8203;9467](https://github.com/getsentry/sentry-javascript/issues/9467)) </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:eyJjcmVhdGVkSW5WZXIiOiIzNy41MC4xIiwidXBkYXRlZEluVmVyIjoiMzcuNTAuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
renovate added the
dependencies
label 2023-11-08 11:11:26 +00:00
renovate force-pushed renovate/sentry-javascript-monorepo from 8555e76525 to 6bc4a1622c 2023-11-08 11:11:29 +00:00 Compare
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.78.0 to fix(deps): update sentry-javascript monorepo to v7.79.0 2023-11-08 16:12:10 +00:00
renovate force-pushed renovate/sentry-javascript-monorepo from 6bc4a1622c to 1d1349d4d3 2023-11-08 16:12:14 +00:00 Compare
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.79.0 to fix(deps): update sentry-javascript monorepo to v7.80.0 2023-11-09 17:12:03 +00:00
renovate force-pushed renovate/sentry-javascript-monorepo from 1d1349d4d3 to ca799653e5 2023-11-09 17:12:08 +00:00 Compare
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.80.0 to fix(deps): update sentry-javascript monorepo to v7.80.1 2023-11-14 11:12:21 +00:00
renovate force-pushed renovate/sentry-javascript-monorepo from ca799653e5 to 11a884bce0 2023-11-14 11:12:26 +00:00 Compare
konrad added 1 commit 2023-11-17 21:43:30 +00:00
continuous-integration/drone/pr Build is passing Details
a68c3a6515
chore(deps): update lockfile
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://3819-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://3819-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.
Author
Member

Edited/Blocked Notification

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.

### Edited/Blocked Notification 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.
konrad merged commit 6711a08de9 into main 2023-11-17 22:50:05 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.