Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update sentry-javascript monorepo to ^7.72.0 #229

Merged
merged 1 commit into from
Sep 28, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 27, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sentry/node (source) ^7.70.0 -> ^7.72.0 age adoption passing confidence
@sentry/svelte (source) ^7.70.0 -> ^7.72.0 age adoption passing confidence
@sentry/tracing (source) ^7.70.0 -> ^7.72.0 age adoption passing confidence

Release Notes

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

v7.72.0

Compare Source

Important Changes
  • feat(node): App Not Responding with stack traces (#​9079)

This release introduces support for Application Not Responding (ANR) errors for Node.js applications.
These errors are triggered when the Node.js main thread event loop of an application is blocked for more than five seconds.
The Node SDK reports ANR errors as Sentry events and can optionally attach a stacktrace of the blocking code to the ANR event.

To enable ANR detection, import and use the enableANRDetection function from the @sentry/node package before you run the rest of your application code.
Any event loop blocking before calling enableANRDetection will not be detected by the SDK.

Example (ESM):

import * as Sentry from "@​sentry/node";

Sentry.init({
  dsn: "___PUBLIC_DSN___",
  tracesSampleRate: 1.0,
});

await Sentry.enableANRDetection({ captureStackTrace: true });
// Function that runs your app
runApp();

Example (CJS):

const Sentry = require("@​sentry/node");

Sentry.init({
  dsn: "___PUBLIC_DSN___",
  tracesSampleRate: 1.0,
});

Sentry.enableANRDetection({ captureStackTrace: true }).then(() => {
  // Function that runs your app
  runApp();
});
Other Changes
  • fix(nextjs): Filter RequestAsyncStorage locations by locations that webpack will resolve (#​9114)
  • fix(replay): Ensure replay_id is not captured when session is expired (#​9109)

v7.71.0

Compare Source

  • feat(bun): Instrument Bun.serve (#​9080)
  • fix(core): Ensure global event processors are always applied to event (#​9064)
  • fix(core): Run client eventProcessors before global ones (#​9032)
  • fix(nextjs): Use webpack module paths to attempt to resolve internal request async storage module (#​9100)
  • fix(react): Add actual error name to boundary error name (#​9065)
  • fix(react): Compare location against basename-prefixed route. (#​9076)
  • ref(browser): Refactor browser integrations to use processEvent (#​9022)

Work in this release contributed by @​jorrit. Thank you for your contribution!

Bundle size 📦
Path Size
@​sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 75.58 KB
@​sentry/browser (incl. Tracing) - Webpack (gzipped) 31.46 KB
@​sentry/browser - Webpack (gzipped) 22.06 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 70.27 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 28.57 KB
@​sentry/browser - ES6 CDN Bundle (gzipped) 20.64 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 222.17 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 86.57 KB
@​sentry/browser - ES6 CDN Bundle (minified & uncompressed) 61.42 KB
@​sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.43 KB
@​sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 75.6 KB
@​sentry/react - Webpack (gzipped) 22.09 KB
@​sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 93.48 KB
@​sentry/nextjs Client - Webpack (gzipped) 51.04 KB

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 Mend Renovate. View repository job log here.

@codecov
Copy link

codecov bot commented Sep 27, 2023

Codecov Report

Merging #229 (2694b21) into main (5041fcf) will not change coverage.
The diff coverage is n/a.

@@           Coverage Diff           @@
##             main     #229   +/-   ##
=======================================
  Coverage   14.39%   14.39%           
=======================================
  Files          35       35           
  Lines        1806     1806           
  Branches       50       50           
=======================================
  Hits          260      260           
  Misses       1546     1546           

📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more

@socket-security
Copy link

Updated dependencies detected. Learn more about Socket for GitHub ↗︎

Packages Version New capabilities Transitives Size Publisher
@sentry/node 7.70.0...7.72.0 environment +4/-4 5.02 MB sentry-bot
@sentry/svelte 7.70.0...7.72.0 None +6/-6 6.56 MB sentry-bot
@sentry/tracing 7.70.0...7.72.0 None +4/-4 3.6 MB sentry-bot

@renovate renovate bot merged commit 3572b03 into main Sep 28, 2023
@renovate renovate bot deleted the renovate/sentry-javascript-monorepo branch September 28, 2023 01:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants