fix(deps): update sentry-javascript monorepo to v7.74.0 #3772

Merged
konrad merged 2 commits from renovate/sentry-javascript-monorepo into main 2023-10-13 12:27:23 +00:00
Member

This PR contains the following updates:

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

Release Notes

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

v7.74.0

Compare Source

Important Changes
  • feat(astro): Add sentryAstro integration (#​9218)

This Release introduces the first alpha version of our new SDK for Astro.
At this time, the SDK is considered experimental and things might break and change in future versions.

The core of the SDK is an Astro integration which you easily add to your Astro config:

// astro.config.js
import { defineConfig } from "astro/config";
import sentry from "@​sentry/astro";

export default defineConfig({
  integrations: [
    sentry({
      dsn: "__DSN__",
      sourceMapsUploadOptions: {
        project: "astro",
        authToken: process.env.SENTRY_AUTH_TOKEN,
      },
    }),
  ],
});

Check out the README for usage instructions and what to expect from this alpha release.

Other Changes
  • feat(core): Add addIntegration utility (#​9186)
  • feat(core): Add continueTrace method (#​9164)
  • feat(node-experimental): Add NodeFetch integration (#​9226)
  • feat(node-experimental): Use native OTEL Spans (#​9161, #​9214)
  • feat(node-experimental): Sample in OTEL Sampler (#​9203)
  • feat(serverlesss): Allow disabling transaction traces (#​9154)
  • feat(tracing): Allow direct pg module to enable esbuild support (#​9227)
  • feat(utils): Move common node ANR code to utils (#​9191)
  • feat(vue): Expose VueIntegration to initialize vue app later (#​9180)
  • fix: Don't set referrerPolicy on serverside fetch transports (#​9200)
  • fix: Ensure we never mutate options passed to init (#​9162)
  • fix(ember): Avoid pulling in utils at build time (#​9221)
  • fix(ember): Drop undefined config values (#​9175)
  • fix(node): Ensure mysql integration works without callback (#​9222)
  • fix(node): Only require inspector when needed (#​9149)
  • fix(node): Remove ANR debug option and instead add logger.isEnabled() (#​9230)
  • fix(node): Strip .mjs and .cjs extensions from module name (#​9231)
  • fix(replay): bump rrweb to 2.0.1 (#​9240)
  • fix(replay): Fix potential broken CSS in styled-components (#​9234)
  • fix(sveltekit): Flush in server wrappers before exiting (#​9153)
  • fix(types): Update signature of processEvent integration hook (#​9151)
  • fix(utils): Dereference DOM events after they have servered their purpose (#​9224)
  • ref(integrations): Refactor pluggable integrations to use processEvent (#​9021)
  • ref(serverless): Properly deprecate rethrowAfterCapture option (#​9159)
  • ref(utils): Deprecate walk method (#​9157)

Work in this release contributed by @​aldenquimby. 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.73.0` -> `7.74.0`](https://renovatebot.com/diffs/npm/@sentry%2ftracing/7.73.0/7.74.0) | | [@sentry/vue](https://github.com/getsentry/sentry-javascript/tree/master/packages/vue) ([source](https://github.com/getsentry/sentry-javascript)) | dependencies | minor | [`7.73.0` -> `7.74.0`](https://renovatebot.com/diffs/npm/@sentry%2fvue/7.73.0/7.74.0) | --- ### Release Notes <details> <summary>getsentry/sentry-javascript (@&#8203;sentry/tracing)</summary> ### [`v7.74.0`](https://github.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7740) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.73.0...7.74.0) ##### Important Changes - **feat(astro): Add `sentryAstro` integration ([#&#8203;9218](https://github.com/getsentry/sentry-javascript/issues/9218))** This Release introduces the first alpha version of our new SDK for Astro. At this time, the SDK is considered experimental and things might break and change in future versions. The core of the SDK is an Astro integration which you easily add to your Astro config: ```js // astro.config.js import { defineConfig } from "astro/config"; import sentry from "@&#8203;sentry/astro"; export default defineConfig({ integrations: [ sentry({ dsn: "__DSN__", sourceMapsUploadOptions: { project: "astro", authToken: process.env.SENTRY_AUTH_TOKEN, }, }), ], }); ``` Check out the [README](./packages/astro/README.md) for usage instructions and what to expect from this alpha release. ##### Other Changes - feat(core): Add `addIntegration` utility ([#&#8203;9186](https://github.com/getsentry/sentry-javascript/issues/9186)) - feat(core): Add `continueTrace` method ([#&#8203;9164](https://github.com/getsentry/sentry-javascript/issues/9164)) - feat(node-experimental): Add NodeFetch integration ([#&#8203;9226](https://github.com/getsentry/sentry-javascript/issues/9226)) - feat(node-experimental): Use native OTEL Spans ([#&#8203;9161](https://github.com/getsentry/sentry-javascript/issues/9161), [#&#8203;9214](https://github.com/getsentry/sentry-javascript/issues/9214)) - feat(node-experimental): Sample in OTEL Sampler ([#&#8203;9203](https://github.com/getsentry/sentry-javascript/issues/9203)) - feat(serverlesss): Allow disabling transaction traces ([#&#8203;9154](https://github.com/getsentry/sentry-javascript/issues/9154)) - feat(tracing): Allow direct pg module to enable esbuild support ([#&#8203;9227](https://github.com/getsentry/sentry-javascript/issues/9227)) - feat(utils): Move common node ANR code to utils ([#&#8203;9191](https://github.com/getsentry/sentry-javascript/issues/9191)) - feat(vue): Expose `VueIntegration` to initialize vue app later ([#&#8203;9180](https://github.com/getsentry/sentry-javascript/issues/9180)) - fix: Don't set `referrerPolicy` on serverside fetch transports ([#&#8203;9200](https://github.com/getsentry/sentry-javascript/issues/9200)) - fix: Ensure we never mutate options passed to `init` ([#&#8203;9162](https://github.com/getsentry/sentry-javascript/issues/9162)) - fix(ember): Avoid pulling in utils at build time ([#&#8203;9221](https://github.com/getsentry/sentry-javascript/issues/9221)) - fix(ember): Drop undefined config values ([#&#8203;9175](https://github.com/getsentry/sentry-javascript/issues/9175)) - fix(node): Ensure mysql integration works without callback ([#&#8203;9222](https://github.com/getsentry/sentry-javascript/issues/9222)) - fix(node): Only require `inspector` when needed ([#&#8203;9149](https://github.com/getsentry/sentry-javascript/issues/9149)) - fix(node): Remove ANR `debug` option and instead add logger.isEnabled() ([#&#8203;9230](https://github.com/getsentry/sentry-javascript/issues/9230)) - fix(node): Strip `.mjs` and `.cjs` extensions from module name ([#&#8203;9231](https://github.com/getsentry/sentry-javascript/issues/9231)) - fix(replay): bump rrweb to 2.0.1 ([#&#8203;9240](https://github.com/getsentry/sentry-javascript/issues/9240)) - fix(replay): Fix potential broken CSS in styled-components ([#&#8203;9234](https://github.com/getsentry/sentry-javascript/issues/9234)) - fix(sveltekit): Flush in server wrappers before exiting ([#&#8203;9153](https://github.com/getsentry/sentry-javascript/issues/9153)) - fix(types): Update signature of `processEvent` integration hook ([#&#8203;9151](https://github.com/getsentry/sentry-javascript/issues/9151)) - fix(utils): Dereference DOM events after they have servered their purpose ([#&#8203;9224](https://github.com/getsentry/sentry-javascript/issues/9224)) - ref(integrations): Refactor pluggable integrations to use `processEvent` ([#&#8203;9021](https://github.com/getsentry/sentry-javascript/issues/9021)) - ref(serverless): Properly deprecate `rethrowAfterCapture` option ([#&#8203;9159](https://github.com/getsentry/sentry-javascript/issues/9159)) - ref(utils): Deprecate `walk` method ([#&#8203;9157](https://github.com/getsentry/sentry-javascript/issues/9157)) Work in this release contributed by [@&#8203;aldenquimby](https://github.com/aldenquimby). 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMS4xIiwidXBkYXRlZEluVmVyIjoiMzcuMTEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
renovate added the
dependencies
label 2023-10-13 12:10:31 +00:00
renovate added 1 commit 2023-10-13 12:10:32 +00:00
continuous-integration/drone/pr Build is failing Details
23e19b08fb
fix(deps): update sentry-javascript monorepo to v7.74.0
konrad added 1 commit 2023-10-13 12:14:49 +00:00
continuous-integration/drone/pr Build is passing Details
62409f76c3
chore(deps): update lockfile
konrad scheduled this pull request to auto merge when all checks succeed 2023-10-13 12:15:04 +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://3772-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://3772-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 b345f0ad61 into main 2023-10-13 12:27:23 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.