dependabot npm(deps): bump @sentry/node from 7.58.1 to 7.59.2
Bumps @sentry/node from 7.58.1 to 7.59.2.
Release notes
Sourced from @sentry/node
's releases.
7.59.2
No changes. This release was published to fix publishing issues with 7.59.0 and 7.59.1. Please see 7.59.0 for the changes in that release.
Bundle size
📦
Path Size @sentry/browser
- ES5 CDN Bundle (gzipped + minified)21.95 KB @sentry/browser
- ES5 CDN Bundle (minified)69.13 KB @sentry/browser
- ES6 CDN Bundle (gzipped + minified)20.28 KB @sentry/browser
- ES6 CDN Bundle (minified)60.38 KB @sentry/browser
- Webpack (gzipped + minified)21.9 KB @sentry/browser
- Webpack (minified)71.51 KB @sentry/react
- Webpack (gzipped + minified)21.92 KB @sentry/nextjs
Client - Webpack (gzipped + minified)50.76 KB @sentry/browser
+@sentry/tracing
- ES5 CDN Bundle (gzipped + minified)30.33 KB @sentry/browser
+@sentry/tracing
- ES6 CDN Bundle (gzipped + minified)28.19 KB @sentry/replay
ES6 CDN Bundle (gzipped + minified)49.44 KB @sentry/replay
- Webpack (gzipped + minified)43.16 KB @sentry/browser
+@sentry/tracing
+@sentry/replay
- ES6 CDN Bundle (gzipped + minified)69.56 KB @sentry/browser
+@sentry/replay
- ES6 CDN Bundle (gzipped + minified)61.83 KB 7.59.1
No changes. This release was published to fix a publishing issue with 7.59.0. Please see 7.59.0 for the changes in that release.
Bundle size
📦
Path Size @sentry/browser
- ES5 CDN Bundle (gzipped + minified)21.95 KB @sentry/browser
- ES5 CDN Bundle (minified)69.13 KB @sentry/browser
- ES6 CDN Bundle (gzipped + minified)20.29 KB @sentry/browser
- ES6 CDN Bundle (minified)60.38 KB @sentry/browser
- Webpack (gzipped + minified)21.9 KB @sentry/browser
- Webpack (minified)71.51 KB @sentry/react
- Webpack (gzipped + minified)21.92 KB @sentry/nextjs
Client - Webpack (gzipped + minified)50.76 KB @sentry/browser
+@sentry/tracing
- ES5 CDN Bundle (gzipped + minified)30.33 KB @sentry/browser
+@sentry/tracing
- ES6 CDN Bundle (gzipped + minified)28.2 KB @sentry/replay
ES6 CDN Bundle (gzipped + minified)49.44 KB @sentry/replay
- Webpack (gzipped + minified)43.16 KB @sentry/browser
+@sentry/tracing
+@sentry/replay
- ES6 CDN Bundle (gzipped + minified)69.56 KB @sentry/browser
+@sentry/replay
- ES6 CDN Bundle (gzipped + minified)61.84 KB 7.59.0
Important Changes
- feat(remix): Add Remix v2 support (#8415)
... (truncated)
Changelog
Sourced from @sentry/node
's changelog.
7.59.2
No changes. This release was published to fix publishing issues with 7.59.0 and 7.59.1. Please see 7.59.0 for the changes in that release.
7.59.1
No changes. This release was published to fix a publishing issue with 7.59.0. Please see 7.59.0 for the changes in that release.
7.59.0
Important Changes
- - feat(remix): Add Remix v2 support (#8415)
This release adds support for Remix v2 future flags, in particular for new error handling utilities of Remix v2. We heavily recommend you switch to using
v2_errorBoundary
future flag to get the best error handling experience with Sentry.To capture errors from v2 client-side ErrorBoundary, you should define your own
ErrorBoundary
inroot.tsx
and useSentry.captureRemixErrorBoundaryError
helper to capture the error.// root.tsx import { captureRemixErrorBoundaryError } from "@sentry/remix"; export const ErrorBoundary: V2_ErrorBoundaryComponent = () => { const error = useRouteError(); captureRemixErrorBoundaryError(error); return <div> ... </div>; };
For server-side errors, define a
handleError
function in your server entry point and use theSentry.captureRemixServerException
helper to capture the error.// entry.server.tsx export function handleError( error: unknown, { request }: DataFunctionArgs ): void { if (error instanceof Error) { Sentry.captureRemixServerException(error, "remix.server", request); } else { // Optionally capture non-Error objects Sentry.captureException(error); } }
... (truncated)
Commits
-
e3e38dd
release: 7.59.2 -
0ec99a2
Merge pull request #8573 from getsentry/prepare-release/7.59.2 -
8299b9a
meta: Update CHANGELOG for 7.59.2 -
1b0193c
Merge pull request #8572 from getsentry/master -
2344e56
meta: Update CHANGELOG for 7.59.1 (#8566) -
3db1547
Merge pull request #8560 from getsentry/prepare-release/7.59.0 -
5eb0bdd
meta: Update CHANGELOG for 7.59.0 -
564af01
feat(tracing): Bring http timings out of experiment (#8563) -
c2bd091
feat(core): Allow multiplexed transport to send to multiple releases (#8559) -
6b009c0
fix(tracing): Improve network.protocol.version (#8502) - Additional commits viewable in compare view