Skip to content

dependabot npm(deps): bump @sentry/node from 7.73.0 to 7.74.0

Depen d'Abot requested to merge dependabot-npm_and_yarn-sentry-node-7.74.0 into master

Bumps @sentry/node from 7.73.0 to 7.74.0.

Release notes

Sourced from @​sentry/node's releases.

7.74.0

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)

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

7.74.0

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)

... (truncated)

Commits
  • 10e5d49 release: 7.74.0
  • 6a0f478 Merge pull request #9239 from getsentry/prepare-release/7.74.0
  • 85ac5e3 meta: Update CHANGELOG for 7.74.0
  • 6062d0c fix(replay): bump rrweb to 2.0.1 (#9240)
  • 73a808a fix(replay): Fix potential broken CSS in styled-components (#9234)
  • a8c8564 chore(astro): Add Astro integration keywords (#9193)
  • 1ba8d9f feat(astro): Add sentryAstro integration (#9218)
  • 8bc4d73 chore(astro): Add Astro package to Craft NPM targets (#9233)
  • 28b6d75 feat(serverlesss): allow disabling transaction traces (#9154)
  • e507110 feat(tracing): allow direct pg module to enable esbuild support (#9227)
  • Additional commits viewable in compare view

Merge request reports