fix(deps): update sentry-javascript monorepo to v7.88.0 - autoclosed #3847

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.85.0 -> 7.88.0
@sentry/vue (source) dependencies minor 7.85.0 -> 7.88.0

Release Notes

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

v7.88.0

Compare Source

Important Changes
  • feat(browser): Add browser metrics sdk (#​9794)

The release adds alpha support for Sentry developer metrics in the Browser SDKs (@sentry/browser and related framework SDKs). Via the newly introduced APIs, you can now flush metrics directly to Sentry.

To enable capturing metrics, you first need to add the MetricsAggregator integration.

Sentry.init({
  dsn: '__DSN__',
  integrations: [
    new Sentry.metrics.MetricsAggregator(),
  ],
});

Then you'll be able to add counters, sets, distributions, and gauges under the Sentry.metrics namespace.

// Add 4 to a counter named `hits`
Sentry.metrics.increment('hits', 4);

// Add 2 to gauge named `parallel_requests`, tagged with `happy: "no"`
Sentry.metrics.gauge('parallel_requests', 2, { tags: { happy: 'no' } });

// Add 4.6 to a distribution named `response_time` with unit seconds
Sentry.metrics.distribution('response_time', 4.6, { unit: 'seconds' });

// Add 2 to a set named `valuable.ids`
Sentry.metrics.set('valuable.ids', 2);

In a future release we'll add support for server runtimes (Node, Deno, Bun, Vercel Edge, etc.)

  • feat(deno): Optionally instrument Deno.cron (#​9808)

This releases add support for instrumenting Deno cron's with Sentry cron monitors. This requires v1.38 of Deno run with the --unstable flag and the usage of the DenoCron Sentry integration.

// Import from the Deno registry
import * as Sentry from "https://deno.land/x/sentry/index.mjs";

Sentry.init({
  dsn: '__DSN__',
  integrations: [
    new Sentry.DenoCron(),
  ],
});
Other Changes
  • feat(replay): Bump rrweb to 2.6.0 (#​9847)
  • fix(nextjs): Guard against injecting multiple times (#​9807)
  • ref(remix): Bump Sentry CLI to ^2.23.0 (#​9773)

v7.87.0

Compare Source

  • feat: Add top level getCurrentScope() method (#​9800)
  • feat(replay): Bump rrweb to 2.5.0 (#​9803)
  • feat(replay): Capture hydration error breadcrumb (#​9759)
  • feat(types): Add profile envelope types (#​9798)
  • fix(astro): Avoid RegExp creation during route interpolation (#​9815)
  • fix(browser): Avoid importing from ./exports (#​9775)
  • fix(nextjs): Catch rejecting flushes (#​9811)
  • fix(nextjs): Fix devserver CORS blockage when assetPrefix is defined (#​9766)
  • fix(node): Capture errors in tRPC middleware (#​9782)

v7.86.0

Compare Source

  • feat(core): Use SDK_VERSION for hub API version (#​9732)
  • feat(nextjs): Emit warning if your app directory doesn't have a global-error.js file (#​9753)
  • feat(node): Add cloudflare pages commit sha (#​9751)
  • feat(remix): Bump @​sentry/cli to 2.22.3 (#​9741)
  • fix(nextjs): Don't accidentally trigger static generation bailout (#​9749)
  • fix(node): Guard process.env.NODE_ENV access in Spotlight integration (#​9748)
  • fix(utils): Fix XHR instrumentation early return (#​9770)
  • ref(remix): Rework Error Handling (#​9725)

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.85.0` -> `7.88.0`](https://renovatebot.com/diffs/npm/@sentry%2ftracing/7.85.0/7.88.0) | | [@sentry/vue](https://github.com/getsentry/sentry-javascript/tree/master/packages/vue) ([source](https://github.com/getsentry/sentry-javascript)) | dependencies | minor | [`7.85.0` -> `7.88.0`](https://renovatebot.com/diffs/npm/@sentry%2fvue/7.85.0/7.88.0) | --- ### Release Notes <details> <summary>getsentry/sentry-javascript (@&#8203;sentry/tracing)</summary> ### [`v7.88.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7880) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.87.0...7.88.0) ##### Important Changes - **feat(browser): Add browser metrics sdk ([#&#8203;9794](https://github.com/getsentry/sentry-javascript/issues/9794))** The release adds alpha support for [Sentry developer metrics](https://github.com/getsentry/sentry/discussions/58584) in the Browser SDKs (`@sentry/browser` and related framework SDKs). Via the newly introduced APIs, you can now flush metrics directly to Sentry. To enable capturing metrics, you first need to add the `MetricsAggregator` integration. ```js Sentry.init({ dsn: '__DSN__', integrations: [ new Sentry.metrics.MetricsAggregator(), ], }); ``` Then you'll be able to add `counters`, `sets`, `distributions`, and `gauges` under the `Sentry.metrics` namespace. ```js // Add 4 to a counter named `hits` Sentry.metrics.increment('hits', 4); // Add 2 to gauge named `parallel_requests`, tagged with `happy: "no"` Sentry.metrics.gauge('parallel_requests', 2, { tags: { happy: 'no' } }); // Add 4.6 to a distribution named `response_time` with unit seconds Sentry.metrics.distribution('response_time', 4.6, { unit: 'seconds' }); // Add 2 to a set named `valuable.ids` Sentry.metrics.set('valuable.ids', 2); ``` In a future release we'll add support for server runtimes (Node, Deno, Bun, Vercel Edge, etc.) - **feat(deno): Optionally instrument `Deno.cron` ([#&#8203;9808](https://github.com/getsentry/sentry-javascript/issues/9808))** This releases add support for instrumenting [Deno cron's](https://deno.com/blog/cron) with [Sentry cron monitors](https://docs.sentry.io/product/crons/). This requires v1.38 of Deno run with the `--unstable` flag and the usage of the `DenoCron` Sentry integration. ```ts // Import from the Deno registry import * as Sentry from "https://deno.land/x/sentry/index.mjs"; Sentry.init({ dsn: '__DSN__', integrations: [ new Sentry.DenoCron(), ], }); ``` ##### Other Changes - feat(replay): Bump `rrweb` to 2.6.0 ([#&#8203;9847](https://github.com/getsentry/sentry-javascript/issues/9847)) - fix(nextjs): Guard against injecting multiple times ([#&#8203;9807](https://github.com/getsentry/sentry-javascript/issues/9807)) - ref(remix): Bump Sentry CLI to ^2.23.0 ([#&#8203;9773](https://github.com/getsentry/sentry-javascript/issues/9773)) ### [`v7.87.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7870) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.86.0...7.87.0) - feat: Add top level `getCurrentScope()` method ([#&#8203;9800](https://github.com/getsentry/sentry-javascript/issues/9800)) - feat(replay): Bump `rrweb` to 2.5.0 ([#&#8203;9803](https://github.com/getsentry/sentry-javascript/issues/9803)) - feat(replay): Capture hydration error breadcrumb ([#&#8203;9759](https://github.com/getsentry/sentry-javascript/issues/9759)) - feat(types): Add profile envelope types ([#&#8203;9798](https://github.com/getsentry/sentry-javascript/issues/9798)) - fix(astro): Avoid RegExp creation during route interpolation ([#&#8203;9815](https://github.com/getsentry/sentry-javascript/issues/9815)) - fix(browser): Avoid importing from `./exports` ([#&#8203;9775](https://github.com/getsentry/sentry-javascript/issues/9775)) - fix(nextjs): Catch rejecting flushes ([#&#8203;9811](https://github.com/getsentry/sentry-javascript/issues/9811)) - fix(nextjs): Fix devserver CORS blockage when `assetPrefix` is defined ([#&#8203;9766](https://github.com/getsentry/sentry-javascript/issues/9766)) - fix(node): Capture errors in tRPC middleware ([#&#8203;9782](https://github.com/getsentry/sentry-javascript/issues/9782)) ### [`v7.86.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7860) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.85.0...7.86.0) - feat(core): Use SDK_VERSION for hub API version ([#&#8203;9732](https://github.com/getsentry/sentry-javascript/issues/9732)) - feat(nextjs): Emit warning if your app directory doesn't have a global-error.js file ([#&#8203;9753](https://github.com/getsentry/sentry-javascript/issues/9753)) - feat(node): Add cloudflare pages commit sha ([#&#8203;9751](https://github.com/getsentry/sentry-javascript/issues/9751)) - feat(remix): Bump [@&#8203;sentry/cli](https://github.com/sentry/cli) to 2.22.3 ([#&#8203;9741](https://github.com/getsentry/sentry-javascript/issues/9741)) - fix(nextjs): Don't accidentally trigger static generation bailout ([#&#8203;9749](https://github.com/getsentry/sentry-javascript/issues/9749)) - fix(node): Guard `process.env.NODE_ENV` access in Spotlight integration ([#&#8203;9748](https://github.com/getsentry/sentry-javascript/issues/9748)) - fix(utils): Fix XHR instrumentation early return ([#&#8203;9770](https://github.com/getsentry/sentry-javascript/issues/9770)) - ref(remix): Rework Error Handling ([#&#8203;9725](https://github.com/getsentry/sentry-javascript/issues/9725)) </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-12-07 12:14:43 +00:00
renovate added 1 commit 2023-12-07 12:14:46 +00:00
continuous-integration/drone/pr Build is failing Details
e7a5290d22
fix(deps): update sentry-javascript monorepo to v7.86.0
renovate force-pushed renovate/sentry-javascript-monorepo from 7a15ced809 to e7a5290d22 2023-12-07 12:14:47 +00:00 Compare
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.86.0 to fix(deps): update sentry-javascript monorepo to v7.87.0 2023-12-13 14:16:44 +00:00
renovate force-pushed renovate/sentry-javascript-monorepo from e7a5290d22 to 9eb8859044 2023-12-13 14:16:52 +00:00 Compare
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.87.0 to fix(deps): update sentry-javascript monorepo to v7.88.0 2023-12-14 18:16:34 +00:00
renovate force-pushed renovate/sentry-javascript-monorepo from 9eb8859044 to 12caae90ee 2023-12-14 18:16:40 +00:00 Compare
renovate changed title from fix(deps): update sentry-javascript monorepo to v7.88.0 to fix(deps): update sentry-javascript monorepo to v7.88.0 - autoclosed 2023-12-19 15:19:28 +00:00
renovate closed this pull request 2023-12-19 15:19:28 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.