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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump @sentry/node from 5.30.0 to 7.59.2 in /api #582

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 19, 2023

Bumps @sentry/node from 5.30.0 to 7.59.2.

Release notes

Sourced from @鈥媠entry/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
@鈥媠entry/browser - ES5 CDN Bundle (gzipped + minified) 21.95 KB
@鈥媠entry/browser - ES5 CDN Bundle (minified) 69.13 KB
@鈥媠entry/browser - ES6 CDN Bundle (gzipped + minified) 20.28 KB
@鈥媠entry/browser - ES6 CDN Bundle (minified) 60.38 KB
@鈥媠entry/browser - Webpack (gzipped + minified) 21.9 KB
@鈥媠entry/browser - Webpack (minified) 71.51 KB
@鈥媠entry/react - Webpack (gzipped + minified) 21.92 KB
@鈥媠entry/nextjs Client - Webpack (gzipped + minified) 50.76 KB
@鈥媠entry/browser + @鈥媠entry/tracing - ES5 CDN Bundle (gzipped + minified) 30.33 KB
@鈥媠entry/browser + @鈥媠entry/tracing - ES6 CDN Bundle (gzipped + minified) 28.19 KB
@鈥媠entry/replay ES6 CDN Bundle (gzipped + minified) 49.44 KB
@鈥媠entry/replay - Webpack (gzipped + minified) 43.16 KB
@鈥媠entry/browser + @鈥媠entry/tracing + @鈥媠entry/replay - ES6 CDN Bundle (gzipped + minified) 69.56 KB
@鈥媠entry/browser + @鈥媠entry/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
@鈥媠entry/browser - ES5 CDN Bundle (gzipped + minified) 21.95 KB
@鈥媠entry/browser - ES5 CDN Bundle (minified) 69.13 KB
@鈥媠entry/browser - ES6 CDN Bundle (gzipped + minified) 20.29 KB
@鈥媠entry/browser - ES6 CDN Bundle (minified) 60.38 KB
@鈥媠entry/browser - Webpack (gzipped + minified) 21.9 KB
@鈥媠entry/browser - Webpack (minified) 71.51 KB
@鈥媠entry/react - Webpack (gzipped + minified) 21.92 KB
@鈥媠entry/nextjs Client - Webpack (gzipped + minified) 50.76 KB
@鈥媠entry/browser + @鈥媠entry/tracing - ES5 CDN Bundle (gzipped + minified) 30.33 KB
@鈥媠entry/browser + @鈥媠entry/tracing - ES6 CDN Bundle (gzipped + minified) 28.2 KB
@鈥媠entry/replay ES6 CDN Bundle (gzipped + minified) 49.44 KB
@鈥媠entry/replay - Webpack (gzipped + minified) 43.16 KB
@鈥媠entry/browser + @鈥媠entry/tracing + @鈥媠entry/replay - ES6 CDN Bundle (gzipped + minified) 69.56 KB
@鈥媠entry/browser + @鈥媠entry/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 @鈥媠entry/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 in root.tsx and use Sentry.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 the Sentry.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

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 5.30.0 to 7.59.2.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@5.30.0...7.59.2)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 19, 2023
@dependabot dependabot bot requested a review from spruce-bruce July 19, 2023 01:58
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 20, 2023

Superseded by #584.

@dependabot dependabot bot closed this Jul 20, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/api/sentry/node-7.59.2 branch July 20, 2023 01:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants