Skip to content

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Sep 10, 2025

Bumps packages/flutter/scripts/update-js.sh from 10.6.0 to 10.11.0.

Auto-generated by a dependency updater.

Changelog

10.11.0

Important Changes

  • feat(aws): Add experimental AWS Lambda extension for tunnelling events (#17525)

    This release adds an experimental Sentry Lambda extension to the existing Sentry Lambda layer. Sentry events are now tunneled through the extension and then forwarded to Sentry. This has the benefit of reducing the request processing time.

    To enable it, set _experiments.enableLambdaExtension in your Sentry config like this:

    Sentry.init({
      dsn: '<YOUR_DSN>',
      _experiments: {
        enableLambdaExtension: true,
      },
    });

Other Changes

  • feat(core): Add replay id to logs (#17563)
  • feat(core): Improve error handling for Anthropic AI instrumentation (#17535)
  • feat(deps): bump opentelemetry/instrumentation-ioredis from 0.51.0 to 0.52.0 (#17557)
  • feat(node): Add incoming request headers as OTel span attributes (#17475)
  • fix(astro): Ensure traces are correctly propagated for static routes (#17536)
  • fix(react): Remove handleExistingNavigation (#17534)
  • ref(browser): Add more specific mechanism.type to errors captured by httpClientIntegration (#17254)
  • ref(browser): Set more descriptive mechanism.type in browserApiErrorsIntergation (#17251)
  • ref(core): Add mechanism.type to trpcMiddleware errors (#17287)
  • ref(core): Add more specific event mechanisms and span origins to openAiIntegration (#17288)
  • ref(nestjs): Add mechanism to captured errors (#17312)
Internal Changes
  • chore: Use proper test-utils dependency in workspace (#17538)
  • chore(test): Remove geist font (#17541)
  • ci: Check for stable lockfile (#17552)
  • ci: Fix running of only changed E2E tests (#17551)
  • ci: Remove project automation workflow (#17508)
  • test(node-integration-tests): pin ai5.0.30 to fix test fails (#17542)

10.10.0

Important Changes

  • feat(browser): Add support for propagateTraceparent SDK option (#17509)

Adds support for a new browser SDK init option, propagateTraceparent for attaching a W3C compliant traceparent header to outgoing fetch and XHR requests, in addition to sentry-trace and baggage headers. More details can be found here.

  • feat(core): Add tool calls attributes for Anthropic AI (#17478)

Adds missing tool call attributes, we add gen_ai.response.tool_calls attribute for Anthropic AI, supporting both streaming and non-streaming requests.

  • feat(nextjs): Use compiler hook for uploading turbopack sourcemaps (#17352)

Adds a new experimental flag _experimental.useRunAfterProductionCompileHook to withSentryConfig for automatic source maps uploads when building a Next.js app with next build --turbopack.
When set we:

  • Automatically enable source map generation for turbopack client files (if not explicitly disabled)
  • Upload generated source maps to Sentry at the end of the build by leveraging a Next.js compiler hook.

Other Changes

  • feat(feedback): Add more labels so people can configure Highlight and Hide labels (#17513)
  • fix(node): Add origin for OpenAI spans & test auto instrumentation (#17519)

10.9.0

Important Changes

  • feat(node): Update httpIntegration handling of incoming requests (#17371)

This version updates the handling of the Node SDK of incoming requests. Instead of relying on opentelemetry/instrumentation-http, we now handle incoming request instrumentation internally, ensuring that we can optimize performance as much as possible and avoid interop problems.

This change should not affect you, unless you're relying on very in-depth implementation details. Importantly, this also drops the _experimentalConfig option of the integration - this will no longer do anything.
Finally, you can still pass instrumentation.{requestHook,responseHook,applyCustomAttributesOnSpan} options, but they are deprecated and will be removed in v11. Instead, you can use the new incomingRequestSpanHook configuration option if you want to adjust the incoming request span.

Other Changes

  • feat(browser): Add replay.feedback CDN bundle (#17496)
  • feat(browser): Export sendFeedback from CDN bundles (#17495)
  • fix(astro): Ensure span name from beforeStartSpan isn't overwritten (#17500)
  • fix(browser): Ensure source is set correctly when updating span name in-place in beforeStartSpan (#17501)
  • fix(core): Only set template attributes on logs if parameters exist (#17480)
  • fix(nextjs): Fix parameterization for root catchall routes (#17489)
  • fix(node-core): Shut down OTel TraceProvider when calling Sentry.close() (#17499)
Internal Changes
  • chore: Add changelog script back to package.json (#17517)
  • chore: Ensure prettier is run on all files (#17497)
  • chore: Ignore prettier commit for git blame (#17498)
  • chore: Remove experimental from Nuxt SDK package description (#17483)
  • ci: Capture overhead in node app (#17420)
  • ci: Ensure we fail on cancelled jobs (#17506)
  • ci(deps): bump actions/checkout from 4 to 5 (#17505)
  • ci(deps): bump actions/create-github-app-token from 2.0.6 to 2.1.1 (#17504)
  • test(aws): Improve reliability on CI (#17502)

10.8.0

Important Changes

  • feat(sveltekit): Add Compatibility for builtin SvelteKit Tracing (#17423)

    This release makes the sentry/sveltekit SDK compatible with SvelteKit's native observability support introduced in SvelteKit version 2.31.0.
    If you enable both, instrumentation and tracing, the SDK will now initialize early enough to set up additional instrumentation like database queries and it will pick up spans emitted from SvelteKit.

    We will follow up with docs how to set up the SDK soon.
    For now, If you're on SvelteKit version 2.31.0 or newer, you can easily opt into the new feature:

    1. Enable experimental tracing and instrumentation support in svelte.config.js:

    2. Move your Sentry.init() call from src/hooks.server.(js|ts) to the new instrumentation.server.(js|ts) file:

      // instrumentation.server.ts
      import * as Sentry from 'sentry/sveltekit';
      
      Sentry.init({
        dsn: '...',
        // rest of your config
      });

      The rest of your Sentry config in hooks.server.ts (sentryHandle and handleErrorWithSentry) should stay the same.

    If you prefer to stay on the hooks-file based config for now, the SDK will continue to work as previously.

    Thanks to the Svelte team and elliott-with-the-longest-name-on-github for implementing observability support and for reviewing our PR!

Other Changes

  • fix(react): Avoid multiple name updates on navigation spans (#17438)
Internal Changes
  • test(profiling): Add tests for current state of profiling (#17470)

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://ac49b7af3017c458bd12dab9b3328bfco4508482761982032.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)
Internal Changes
  • test(aws): Run E2E tests in all supported Node versions (#17446)

@bruno-garcia bruno-garcia force-pushed the deps/packages/flutter/scripts/update-js.sh/10.11.0 branch from 1fc1143 to 0ae99ec Compare September 10, 2025 03:09
Copy link

codecov bot commented Sep 10, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 89.71%. Comparing base (f5912d7) to head (2dc07f5).

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #3242      +/-   ##
==========================================
+ Coverage   86.51%   89.71%   +3.20%     
==========================================
  Files         130       95      -35     
  Lines        4878     3393    -1485     
==========================================
- Hits         4220     3044    -1176     
+ Misses        658      349     -309     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@bruno-garcia bruno-garcia force-pushed the deps/packages/flutter/scripts/update-js.sh/10.11.0 branch 4 times, most recently from 02b1610 to 4b29bbb Compare September 11, 2025 14:01
@bruno-garcia bruno-garcia force-pushed the deps/packages/flutter/scripts/update-js.sh/10.11.0 branch from 4b29bbb to 2dc07f5 Compare September 12, 2025 11:48
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.

1 participant