You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(browser): Add fetchStreamPerformanceIntegration for streamed response tracking (#20778)
A new integration that tracks the performance of streamed fetch responses. Use this to measure time-to-first-byte and streaming duration for APIs that return chunked/streamed data. This replaces the now deprecated trackFetchStreamPerformance option.
Adds a new dataCollection client option for controlling what data the SDK collects and sends to Sentry. This provides a centralized way to configure data collection behavior across different SDK features. In the future, this option will be used for fine-granular data filtering, while the simple sendDefaultPii boolean option will be deprecated and removed in a future release.
feat(core): Support array attributes for spans, logs, and metrics (#20427)
Arrays of primitive values (string, number, boolean) are now accepted as attribute values. Arrays containing non-primitive elements will be dropped and won't show up in Sentry. Note that array attributes on logs and metrics were previously stringified in certain cases and will now be sent as arrays instead.
feat(hono): Add hono.request spans for internal .request() calls (#20843)
The Hono SDK now creates spans for internal .request() calls, providing better visibility into request handling within Hono applications.
Other Changes
feat(core): Add data collection filtering utilities (#20989)
feat(core): Convert scope contexts to segment span attributes in span streaming (#20828)
feat(core): Emit sentry.sdk.integrations on streamed segment spans (#20428)
feat(core): HTTP server diagnostics channel utility (#20779)
feat(core): Migrate span streaming envelope to dataCollection (#21080)
feat(core): Migrate Supabase integration to dataCollection (#21085)
feat(core): Migrate trpc to dataCollection (#21072)
feat(deno): Instrument node:http on versions that support it (#21009)
feat(ember): Extract ember-specific logic into custom browserTracingIntegration (#20702)
feat(logs): Migrate log envelope user inference to dataCollection (#21073)
feat(nuxt): Allow custom configuration files paths in Nuxt module (#20650)
feat(replay): Update example worker script (#20899)
feat(serverless): Add server-only context span attributes via processSegmentSpan hooks (#20842)
fix(astro): Avoid injecting meta tags into <head> inside attribute values (#21089)
fix(astro): Use explicit ResponseInit when injecting meta tags in response (#21021)
fix(browser): Add a synthetic stack trace to DOMException with empty stack traces if attachStacktrace is true (#19988)
fix(browser): Fix internal frame detection in minified bundles (#20802)
feat(core): Add streamGenAiSpans options to stream gen_ai spans (#20785)
Adds a new streamGenAiSpans option that controls how gen_ai spans are
sent to Sentry. When set, the SDK extracts all gen_ai spans out of a
transaction and sends them as v2 envelope items.
Enable this option if gen_ai spans are being dropped because the transaction payload exceeds size limits.
This release marks the beta release of the @sentry/hono Sentry SDK. For details on how to use it, check out the Sentry Hono SDK docs. Please reach out on GitHub if you have any feedback or concerns.
feat(browser): Add ingest_settings to v2 log envelope payload (#20453)
Inference of user data (e.g. IP address, browser name/version) on log events is now gated behind the sendDefaultPii option. Previously, this data was always inferred by default.
Other Changes
docs(hono): Add new docs link and move to BETA release (#20666)
feat(browser): Add ingest_settings to v2 metrics envelope payload (#20454)
feat(browser): Migrate spotlight event processor to ignoreSpans (#20595)
feat(cloudflare): Capture request body via httpServerIntegration (#20614)
feat(cloudflare): Support rpc trace propagation for WorkerEntrypoint (#20523)
feat(cloudflare): Support tracing for queue producer (#20529)
feat(core): Apply request data to segment spans in span streaming (#20654)
feat(core): Migrate Vercel AI event processor to span streaming (#20608)
feat(deno): Add processSegmentSpan to Deno context integration (#20613)
feat(cloudflare): Add trace propagation for RPC method calls (#20343)
Trace context is now propagated across Cloudflare Workers RPC calls, connecting traces between Workers and Durable Objects.
This feature is opt-in and requires setting enableRpcTracePropagation: true in your SDK configuration:
feat(hono)!: Change setup for @sentry/hono/node (init in external file) (#20497)
To improve Node.js instrumentation, the sentry() middleware exported from @sentry/hono/node no longer accepts configuration options.
Instead, you must configure the SDK by calling Sentry.init() in a dedicated instrumentation file that runs before your application code (read more in the Hono SDK readme:
A new @sentry/nitro package provides first-class Sentry support for Nitro applications, with HTTP handler and error instrumentation, middleware tracing, request isolation, and build-time source map uploading via withSentryConfig.
Read more in the Nitro SDK docs and the Nitro SDK readme.
Other Changes
deps(minimatch): Upgrade patch version to use new brace-expansion peer-dep (#20198)
docs: Add deprecation notices to bin scripts (#20570)
feat(astro): Drop prerendered http.server filter via ignoreSpans (#20513)
feat(aws-serverless): Validate extension tunnel DSN against SENTRY_DSN ([#205
✂ Note
PR body was truncated to here.
Configuration
📅 Schedule: (UTC)
Branch creation
On day 1 of the month (* * 1 * *)
Automerge
At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday (* 0-4,22-23 * * 1-5)
Only on Sunday and Saturday (* * * * 0,6)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
If you want to rebase/retry this PR, check this box
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dependenciesPull requests that update a dependency file
2 participants
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
7.119.2→10.54.0Release Notes
getsentry/sentry-javascript (@sentry/react)
v10.54.0Compare Source
Important Changes
feat(browser): Add
fetchStreamPerformanceIntegrationfor streamed response tracking (#20778)A new integration that tracks the performance of streamed fetch responses. Use this to measure time-to-first-byte and streaming duration for APIs that return chunked/streamed data. This replaces the now deprecated
trackFetchStreamPerformanceoption.feat(core): Add
dataCollectionclient option (#20965)Adds a new
dataCollectionclient option for controlling what data the SDK collects and sends to Sentry. This provides a centralized way to configure data collection behavior across different SDK features. In the future, this option will be used for fine-granular data filtering, while the simplesendDefaultPiiboolean option will be deprecated and removed in a future release.feat(core): Support array attributes for spans, logs, and metrics (#20427)
Arrays of primitive values (
string,number,boolean) are now accepted as attribute values. Arrays containing non-primitive elements will be dropped and won't show up in Sentry. Note that array attributes on logs and metrics were previously stringified in certain cases and will now be sent as arrays instead.feat(hono): Add
hono.requestspans for internal.request()calls (#20843)The Hono SDK now creates spans for internal
.request()calls, providing better visibility into request handling within Hono applications.Other Changes
sentry.sdk.integrationson streamed segment spans (#20428)dataCollection(#21080)dataCollection(#21085)dataCollection(#21072)node:httpon versions that support it (#21009)browserTracingIntegration(#20702)dataCollection(#21073)<head>inside attribute values (#21089)attachStacktraceis true (#19988)Deno.serveinstrumentation on Deno 2.8 (#21155)projectoption type tostring | string[](#21067)http.clientdouble-wrap message (#20705)sentry.replay_idattribute on streamed spans (#20897)replay_idon DSC after buffer-to-session conversion (#20686)types-hoisttotypes(#20979)Internal Changes
sendDefaultPii(#20967)@opentelemetry/instrumentation-httpdependency (#21113)@fastify/otel(#21099)@opentelemetry/instrumentation-pg(#21102)@opentelemetry/sql-common(#21140)@prisma/instrumentation(#21098)Work in this release was contributed by @abcang, @ahmadio, @delorge, @mdnanocom, and @victorgarciaesgi. Thank you for your contributions!
Bundle size 📦
v10.53.1Compare Source
Internal Changes
Bundle size 📦
v10.53.0Compare Source
Important Changes
feat(core): Add
streamGenAiSpansoptions to stream gen_ai spans (#20785)Adds a new
streamGenAiSpansoption that controls howgen_aispans aresent to Sentry. When set, the SDK extracts all
gen_aispans out of atransaction and sends them as v2 envelope items.
Enable this option if gen_ai spans are being dropped because the transaction payload exceeds size limits.
Other Changes
addConsoleInstrumentationFilterutility (#20790)applicationKeytoBuildTimeOptionsBase(#20789)applicationKeyoption (#20794)@sentry-internal/node-cpu-profilerto 2.4.0 (#20720)Internal Changes
Work in this release was contributed by @dmmulroy and @SAY-5. Thank you for your contributions!
Bundle size 📦
v10.52.0Compare Source
Important Changes
Beta release of the official Hono Sentry SDK
This release marks the beta release of the
@sentry/honoSentry SDK. For details on how to use it, check out theSentry Hono SDK docs. Please reach out on
GitHub if you have any feedback or concerns.
feat(browser): Add
ingest_settingsto v2 log envelope payload (#20453)Inference of user data (e.g. IP address, browser name/version) on log events is now gated behind the
sendDefaultPiioption. Previously, this data was always inferred by default.Other Changes
ingest_settingsto v2 metrics envelope payload (#20454)ignoreSpans(#20595)processSegmentSpanto Deno context integration (#20613)processSegmentSpanto node context integration (#20678)Internal Changes
bundle-analyzer-scenariosdev packages (#20680)npmrcpointing to Verdaccio (#20611)Work in this release was contributed by @sbs44. Thank you for your contribution!
Bundle size 📦
v10.51.0Compare Source
Important Changes
feat(cloudflare): Add trace propagation for RPC method calls (#20343)
Trace context is now propagated across Cloudflare Workers RPC calls, connecting traces between Workers and Durable Objects.
This feature is opt-in and requires setting
enableRpcTracePropagation: truein your SDK configuration:feat(hono)!: Change setup for
@sentry/hono/node(initin external file) (#20497)To improve Node.js instrumentation, the
sentry()middleware exported from@sentry/hono/nodeno longer accepts configuration options.Instead, you must configure the SDK by calling
Sentry.init()in a dedicated instrumentation file that runs before your application code (read more in the Hono SDK readme:feat(nitro): Add
@sentry/nitroSDK (#19224)A new
@sentry/nitropackage provides first-class Sentry support for Nitro applications, with HTTP handler and error instrumentation, middleware tracing, request isolation, and build-time source map uploading viawithSentryConfig.Read more in the Nitro SDK docs and the Nitro SDK readme.
Other Changes
brace-expansionpeer-dep (#20198)binscripts (#20570)ignoreSpans(#20513)SENTRY_DSN([#205Configuration
📅 Schedule: (UTC)
* * 1 * *)* 0-4,22-23 * * 1-5)* * * * 0,6)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.