Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 27, 2026

Bumps @sentry/browser to 10.36.0 and updates ancestor dependency @sentry/react-native. These dependencies need to be updated together.

Updates @sentry/browser from 5.30.0 to 10.36.0

Release notes

Sourced from @​sentry/browser's releases.

10.36.0

  • feat(node): Add Prisma v7 support (#18908)
  • feat(opentelemetry): Support db.system.name attribute for database spans (#18902)
  • feat(deps): Bump OpenTelemetry dependencies (#18878)
  • fix(core): Sanitize data URLs in http.client spans (#18896)
  • fix(nextjs): Add ALS runner fallbacks for serverless environments (#18889)
  • fix(node): Profiling debug ID matching (#18817)
  • chore(deps-dev): bump @​remix-run/server-runtime from 2.15.2 to 2.17.3 in /packages/remix (#18750)

Bundle size 📦

Path Size
@​sentry/browser 24.61 KB
@​sentry/browser - with treeshaking flags 23.15 KB
@​sentry/browser (incl. Tracing) 41.04 KB
@​sentry/browser (incl. Tracing, Profiling) 45.56 KB
@​sentry/browser (incl. Tracing, Replay) 78.74 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 68.63 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 83.32 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 95.24 KB
@​sentry/browser (incl. Feedback) 40.94 KB
@​sentry/browser (incl. sendFeedback) 29.19 KB
@​sentry/browser (incl. FeedbackAsync) 34.07 KB
@​sentry/browser (incl. Metrics) 25.69 KB
@​sentry/browser (incl. Logs) 25.84 KB
@​sentry/browser (incl. Metrics & Logs) 26.48 KB
@​sentry/react 26.3 KB
@​sentry/react (incl. Tracing) 43.22 KB
@​sentry/vue 28.95 KB
@​sentry/vue (incl. Tracing) 42.79 KB
@​sentry/svelte 24.63 KB
CDN Bundle 27.13 KB
CDN Bundle (incl. Tracing) 41.83 KB
CDN Bundle (incl. Tracing, Logs, Metrics) 42.63 KB
CDN Bundle (incl. Tracing, Replay) 77.67 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 82.98 KB
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) 83.87 KB
CDN Bundle - uncompressed 79.36 KB
CDN Bundle (incl. Tracing) - uncompressed 123.84 KB
CDN Bundle (incl. Tracing, Logs, Metrics) - uncompressed 126.61 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 237.64 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 250.14 KB
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) - uncompressed 252.89 KB

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

10.36.0

  • feat(node): Add Prisma v7 support (#18908)
  • feat(opentelemetry): Support db.system.name attribute for database spans (#18902)
  • feat(deps): Bump OpenTelemetry dependencies (#18878)
  • fix(core): Sanitize data URLs in http.client spans (#18896)
  • fix(nextjs): Add ALS runner fallbacks for serverless environments (#18889)
  • fix(node): Profiling debug ID matching
  • chore(deps-dev): bump @​remix-run/server-runtime from 2.15.2 to 2.17.3 in /packages/remix (#18750)

10.35.0

Important Changes

  • feat(tanstackstart-react): Add sentryTanstackStart vite plugin to manage automatic source map uploads (#18712)

    You can now configure source maps upload for TanStack Start using the sentryTanstackStart Vite plugin:

    // vite.config.ts
    import { defineConfig } from 'vite';
    import { sentryTanstackStart } from '@sentry/tanstackstart-react';
    import { tanstackStart } from '@tanstack/react-start/plugin/vite';
    export default defineConfig({
    plugins: [
    sentryTanstackStart({
    authToken: process.env.SENTRY_AUTH_TOKEN,
    org: 'your-org',
    project: 'your-project',
    }),
    tanstackStart(),
    ],
    });

Other Changes

  • feat(browser): Add CDN bundle for tracing.replay.feedback.logs.metrics (#18785)
  • feat(browser): Add shim package for logs (#18831)
  • feat(cloudflare): Automatically set the release id when CF_VERSION_METADATA is enabled (#18855)
  • feat(core): Add ignored client report event drop reason (#18815)
  • feat(logs): Add Log exports to browser and node packages (#18857)
  • feat(node-core,bun): Export processSessionIntegration from node-core and add it to bun (#18852)

... (truncated)

Commits
  • 21ec8f1 release: 10.36.0
  • d4660db meta(changelog): Update changelog for 10.36.0 (#18915)
  • d185952 meta(changelog): Update changelog for 10.36.0
  • ba390df fix(node): Profiling debug ID matching
  • f66969d Merge branch 'develop' into timfish/fix/profiling-debug-images
  • 6d9a7f7 PR reivew
  • 65afa6a feat(node): Add Prisma v7 support (#18908)
  • 4695148 fix(core): Sanitize data URLs in http.client spans (#18896)
  • 2f0d9dc feat(opentelemetry): Support db.system.name attribute for database spans (#...
  • 9115e19 feat(deps): Bump OpenTelemetry dependencies (#18878)
  • Additional commits viewable in compare view

Updates @sentry/react-native from 1.1.0 to 7.10.0

Release notes

Sourced from @​sentry/react-native's releases.

7.10.0

Fixes

  • Fixes Android incompatibility with Firebase dependencies (#5563)

Dependencies

7.9.0

Features

  • Experimental support of UI profiling on Android (#5518)
  • Expose iOS options to ignore views from subtree traversal (#5545)
    • Use includedViewClasses to only traverse specific view classes, or excludedViewClasses to skip problematic view classes during session replay and screenshot capture
    import * as Sentry from '@sentry/react-native';
    Sentry.init({
    replaysSessionSampleRate: 1.0,
    integrations: [
    Sentry.mobileReplayIntegration({
    includedViewClasses: ['UILabel', 'UIView', 'MyCustomView'],
    excludedViewClasses: ['WKWebView', 'UIWebView'],
    }),
    ],
    });

Fixes

  • Fix duplicate error reporting on iOS with New Architecture (#5532)
  • Fix for missing replay_id from metrics (#5483)
  • Skip span ID check when standalone mode is enabled (#5493)
  • Fix traces not always being attached to replays with errors (#5538)

Dependencies

  • Bump Cocoa SDK from v8.57.3 to v8.58.0 (#5524)

... (truncated)

Changelog

Sourced from @​sentry/react-native's changelog.

7.10.0

Fixes

  • Fixes Android incompatibility with Firebase dependencies (#5563)

Dependencies

7.9.0

Features

  • Experimental support of UI profiling on Android (#5518)
  • Expose iOS options to ignore views from subtree traversal (#5545)
    • Use includedViewClasses to only traverse specific view classes, or excludedViewClasses to skip problematic view classes during session replay and screenshot capture
    import * as Sentry from '@sentry/react-native';
    Sentry.init({
    replaysSessionSampleRate: 1.0,
    integrations: [
    Sentry.mobileReplayIntegration({
    includedViewClasses: ['UILabel', 'UIView', 'MyCustomView'],
    excludedViewClasses: ['WKWebView', 'UIWebView'],
    }),
    ],
    });

Fixes

  • Fix duplicate error reporting on iOS with New Architecture (#5532)
  • Fix for missing replay_id from metrics (#5483)
  • Skip span ID check when standalone mode is enabled (#5493)
  • Fix traces not always being attached to replays with errors (#5538)

Dependencies

... (truncated)

Commits
  • 124955b release: 7.10.0
  • e35d0c0 chore(changelog): Add Android fix (#5567)
  • 4d3b686 chore(deps): update Android SDK to v8.31.0 (#5563)
  • d73150f chore: update scripts/update-javascript.sh to 10.36.0 (#5564)
  • a06e222 chore: update scripts/update-javascript.sh to 10.35.0 (#5555)
  • 3920c9e chore: update scripts/update-bundler-plugins.sh to 4.7.0 (#5554)
  • 6c6100d chore: ignore local Claude settings (#5557)
  • 664c66f chore(deps): bump actions/setup-node from 6.1.0 to 6.2.0 (#5552)
  • 116b0dd chore(deps): bump github/codeql-action from 4.31.9 to 4.31.10 (#5549)
  • d21546a chore(deps): bump getsentry/craft/.github/workflows/changelog-preview.yml (#5...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by sentry-bot, a new releaser for @​sentry/react-native since your current version.


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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [@sentry/browser](https://github.com/getsentry/sentry-javascript) to 10.36.0 and updates ancestor dependency [@sentry/react-native](https://github.com/getsentry/sentry-react-native). These dependencies need to be updated together.


Updates `@sentry/browser` from 5.30.0 to 10.36.0
- [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...10.36.0)

Updates `@sentry/react-native` from 1.1.0 to 7.10.0
- [Release notes](https://github.com/getsentry/sentry-react-native/releases)
- [Changelog](https://github.com/getsentry/sentry-react-native/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-react-native@1.1.0...7.10.0)

---
updated-dependencies:
- dependency-name: "@sentry/browser"
  dependency-version: 10.36.0
  dependency-type: indirect
- dependency-name: "@sentry/react-native"
  dependency-version: 7.10.0
  dependency-type: direct:production
...

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 Jan 27, 2026
@coderabbitai
Copy link

coderabbitai bot commented Jan 27, 2026

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

  • 🔍 Trigger a full review

Comment @coderabbitai help to get the list of available commands and usage tips.

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.

0 participants