Skip to content

chore(deps): Bump @sentry/browser from 10.6.0 to 10.7.0#3098

Merged
dependabot[bot] merged 1 commit into
mainfrom
dependabot/npm_and_yarn/sentry/browser-10.7.0
Aug 28, 2025
Merged

chore(deps): Bump @sentry/browser from 10.6.0 to 10.7.0#3098
dependabot[bot] merged 1 commit into
mainfrom
dependabot/npm_and_yarn/sentry/browser-10.7.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 28, 2025

Copy link
Copy Markdown
Contributor

Bumps @sentry/browser from 10.6.0 to 10.7.0.

Release notes

Sourced from @​sentry/browser's releases.

10.7.0

Important Changes

  • feat(cloudflare): Add instrumentPrototypeMethods option to instrument RPC methods for DurableObjects (#17424)

By default, Sentry.instrumentDurableObjectWithSentry will not wrap any RPC methods on the prototype. To enable wrapping for RPC methods, set instrumentPrototypeMethods to true or, if performance is a concern, a list of only the methods you want to instrument:

class MyDurableObjectBase extends DurableObject<Env> {
  method1() {
    // ...
  }
method2() {
// ...
}
method3() {
// ...
}
}
// Export your named class as defined in your wrangler config
export const MyDurableObject = Sentry.instrumentDurableObjectWithSentry(
(env: Env) => ({
dsn: "https://ac49b7af3017c458bd12dab9b3328bfc@o4508482761982032.ingest.de.sentry.io/4508482780987481",
tracesSampleRate: 1.0,
instrumentPrototypeMethods: ['method1', 'method3'],
}),
MyDurableObjectBase,
);

Other Changes

  • feat(aws): Add support for streaming handlers (#17463)
  • feat(core): Stream responses Anthropic AI (#17460)
  • feat(deps): bump @​opentelemetry/instrumentation-aws-sdk from 0.56.0 to 0.57.0 (#17455)
  • feat(deps): bump @​opentelemetry/instrumentation-dataloader from 0.21.0 to 0.21.1 (#17457)
  • feat(deps): bump @​opentelemetry/instrumentation-kafkajs from 0.12.0 to 0.13.0 (#17469)
  • feat(deps): bump @​opentelemetry/instrumentation-mysql2 from 0.49.0 to 0.50.0 (#17459)
  • feat(deps): bump @​prisma/instrumentation from 6.13.0 to 6.14.0 (#17466)
  • feat(deps): bump @​sentry/cli from 2.51.1 to 2.52.0 (#17458)
  • feat(deps): bump @​sentry/rollup-plugin from 4.1.0 to 4.1.1 (#17456)
  • feat(deps): bump @​sentry/webpack-plugin from 4.1.0 to 4.1.1 (#17467)
  • feat(replay): Add option to skip requestAnimationFrame for canvas snapshots (#17380)

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

10.7.0

Important Changes

  • feat(cloudflare): Add instrumentPrototypeMethods option to instrument RPC methods for DurableObjects (#17424)

By default, Sentry.instrumentDurableObjectWithSentry will not wrap any RPC methods on the prototype. To enable wrapping for RPC methods, set instrumentPrototypeMethods to true or, if performance is a concern, a list of only the methods you want to instrument:

class MyDurableObjectBase extends DurableObject<Env> {
  method1() {
    // ...
  }
method2() {
// ...
}
method3() {
// ...
}
}
// Export your named class as defined in your wrangler config
export const MyDurableObject = Sentry.instrumentDurableObjectWithSentry(
(env: Env) => ({
dsn: "https://ac49b7af3017c458bd12dab9b3328bfc@o4508482761982032.ingest.de.sentry.io/4508482780987481",
tracesSampleRate: 1.0,
instrumentPrototypeMethods: ['method1', 'method3'],
}),
MyDurableObjectBase,
);

Other Changes

  • feat(aws): Add support for streaming handlers (#17463)
  • feat(core): Stream responses Anthropic AI (#17460)
  • feat(deps): bump @​opentelemetry/instrumentation-aws-sdk from 0.56.0 to 0.57.0 (#17455)
  • feat(deps): bump @​opentelemetry/instrumentation-dataloader from 0.21.0 to 0.21.1 (#17457)
  • feat(deps): bump @​opentelemetry/instrumentation-kafkajs from 0.12.0 to 0.13.0 (#17469)
  • feat(deps): bump @​opentelemetry/instrumentation-mysql2 from 0.49.0 to 0.50.0 (#17459)
  • feat(deps): bump @​prisma/instrumentation from 6.13.0 to 6.14.0 (#17466)
  • feat(deps): bump @​sentry/cli from 2.51.1 to 2.52.0 (#17458)
  • feat(deps): bump @​sentry/rollup-plugin from 4.1.0 to 4.1.1 (#17456)
  • feat(deps): bump @​sentry/webpack-plugin from 4.1.0 to 4.1.1 (#17467)
  • feat(replay): Add option to skip requestAnimationFrame for canvas snapshots (#17380)

... (truncated)

Commits
  • b7e4816 release: 10.7.0
  • 0bc8417 Merge pull request #17471 from getsentry/prepare-release/10.7.0
  • 0496bbe meta(changelog): Update changelog for 10.7.0
  • dfc411b feat(deps): bump @​opentelemetry/instrumentation-dataloader from 0.21.0 to 0.2...
  • 6874fbe feat(core): Stream responses Anthropic AI (#17460)
  • 7303ab1 feat(aws): Add support for streaming handlers (#17463)
  • 647dbfe feat(deps): bump @​opentelemetry/instrumentation-kafkajs from 0.12.0 to 0.13.0...
  • 359610e feat(deps): bump @​sentry/rollup-plugin from 4.1.0 to 4.1.1 (#17456)
  • 2282ed3 feat(deps): bump @​sentry/webpack-plugin from 4.1.0 to 4.1.1 (#17467)
  • a7acc8f feat(cloudflare): Add instrumentPrototypeMethods option to instrument RPC m...
  • 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 will merge this PR once CI passes on it, as requested by @openhpi-bot.


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 10.6.0 to 10.7.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@10.6.0...10.7.0)

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

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 Aug 28, 2025

@openhpi-bot openhpi-bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dependabot merge

@dependabot dependabot Bot merged commit d704027 into main Aug 28, 2025
11 checks passed
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/sentry/browser-10.7.0 branch August 28, 2025 05:49
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.

1 participant