Skip to content

chore(deps): bump @sentry/browser from 8.42.0 to 9.10.1 in /web #796

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

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2025

Bumps @sentry/browser from 8.42.0 to 9.10.1.

Release notes

Sourced from @​sentry/browser's releases.

9.10.1

  • fix: Correct @​sentry-internal/feedback docs to match the code (#15874)
  • deps: Bump bundler plugins to version 3.2.4 (#15909)

Bundle size 📦

Path Size
@​sentry/browser 23.08 KB
@​sentry/browser - with treeshaking flags 22.88 KB
@​sentry/browser (incl. Tracing) 36.49 KB
@​sentry/browser (incl. Tracing, Replay) 73.65 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 67 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 78.3 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 90.87 KB
@​sentry/browser (incl. Feedback) 40.21 KB
@​sentry/browser (incl. sendFeedback) 27.71 KB
@​sentry/browser (incl. FeedbackAsync) 32.5 KB
@​sentry/react 24.86 KB
@​sentry/react (incl. Tracing) 38.39 KB
@​sentry/vue 27.3 KB
@​sentry/vue (incl. Tracing) 38.18 KB
@​sentry/svelte 23.12 KB
CDN Bundle 24.33 KB
CDN Bundle (incl. Tracing) 36.51 KB
CDN Bundle (incl. Tracing, Replay) 71.53 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 76.71 KB
CDN Bundle - uncompressed 70.93 KB
CDN Bundle (incl. Tracing) - uncompressed 108.11 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 219.4 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 231.97 KB
@​sentry/nextjs (client) 39.68 KB
@​sentry/sveltekit (client) 36.92 KB
@​sentry/node 142.91 KB
@​sentry/node - without tracing 96.12 KB
@​sentry/aws-serverless 120.46 KB

9.10.0

Important Changes

  • feat: Add support for logs

    • feat(node): Add logging public APIs to Node SDKs (#15764)
    • feat(core): Add support for beforeSendLog (#15814)
    • feat(core): Add support for parameterizing logs (#15812)
    • fix: Remove critical log severity level (#15824)

    All JavaScript SDKs other than @sentry/cloudflare and @sentry/deno now support sending logs via dedicated methods as part of Sentry's upcoming logging product.

    Logging is gated by an experimental option, _experiments.enableLogs.

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

9.10.1

  • fix: Correct @​sentry-internal/feedback docs to match the code (#15874)
  • deps: Bump bundler plugins to version 3.2.4 (#15909)

9.10.0

Important Changes

  • feat: Add support for logs

    • feat(node): Add logging public APIs to Node SDKs (#15764)
    • feat(core): Add support for beforeSendLog (#15814)
    • feat(core): Add support for parameterizing logs (#15812)
    • fix: Remove critical log severity level (#15824)

    All JavaScript SDKs other than @sentry/cloudflare and @sentry/deno now support sending logs via dedicated methods as part of Sentry's upcoming logging product.

    Logging is gated by an experimental option, _experiments.enableLogs.

    Sentry.init({
      dsn: 'PUBLIC_DSN',
      // `enableLogs` must be set to true to use the logging features
      _experiments: { enableLogs: true },
    });
    const { trace, debug, info, warn, error, fatal, fmt } = Sentry.logger;
    trace('Starting database connection', { database: 'users' });
    debug('Cache miss for user', { userId: 123 });
    error('Failed to process payment', { orderId: 'order_123', amount: 99.99 });
    fatal('Database connection pool exhausted', { database: 'users', activeConnections: 100 });
    // Structured logging via the fmt helper function. When you use fmt, the string template and parameters are sent separately so they can be queried independently in Sentry.
    info(fmt(Updated profile for user ${userId}));
    warn(fmt(Rate limit approaching for endpoint ${endpoint}. Requests: ${requests}, Limit: ${limit}));

    With server-side SDKs like @sentry/node, @sentry/bun or server-side of @sentry/nextjs or @sentry/sveltekit, you can do structured logging without needing the fmt helper function.

    const { info, warn } = Sentry.logger;
    info('User %s logged in successfully', [123]);
    warn('Failed to load user %s data', [123], { errorCode: 404 });

    To filter logs, or update them before they are sent to Sentry, you can use the _experiments.beforeSendLog option.

... (truncated)

Commits
  • 979fe8f release: 9.10.1
  • c72d02b Merge pull request #15910 from getsentry/prepare-release/9.10.1
  • 2139b59 meta(changelog): Update changelog for VERSION
  • bcb15ba deps: Bump bundler plugins to version 3.2.4 (#15909)
  • 4dc7006 Merge pull request #15876 from getsentry/master
  • dbde86c Merge branch 'release/9.10.0'
  • 791d9e3 fix: Correct @​sentry-internal/feedback docs to match the code (#15874)
  • e383fff release: 9.10.0
  • 03d4ab1 Merge pull request #15867 from getsentry/prepare-release/9.10.0
  • d430d96 meta(changelog): Update changelog for 9.10.0
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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/browser](https://github.com/getsentry/sentry-javascript) from 8.42.0 to 9.10.1.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.42.0...9.10.1)

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

Signed-off-by: dependabot[bot] <[email protected]>
Copy link

netlify bot commented Apr 1, 2025

Deploy Preview for kurlsh-testgrid ready!

Name Link
🔨 Latest commit fd36700
🔍 Latest deploy log https://app.netlify.com/sites/kurlsh-testgrid/deploys/67eb5066a5fd8100080dae2a
😎 Deploy Preview https://deploy-preview-796--kurlsh-testgrid.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Apr 1, 2025

Deploy Preview for kurlsh-testgrid-staging ready!

Name Link
🔨 Latest commit fd36700
🔍 Latest deploy log https://app.netlify.com/sites/kurlsh-testgrid-staging/deploys/67eb5066c35cee000870063a
😎 Deploy Preview https://deploy-preview-796--kurlsh-testgrid-staging.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link
Contributor Author

dependabot bot commented on behalf of github May 1, 2025

Superseded by #807.

@dependabot dependabot bot closed this May 1, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/web/sentry/browser-9.10.1 branch May 1, 2025 02:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants