Skip to content

Conversation

@github-actions
Copy link
Contributor

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

Bumps scripts/update-javascript.sh from 10.12.0 to 10.17.0.

Auto-generated by a dependency updater.

Changelog

10.17.0

Important Changes

  • feat(nuxt): Implement server middleware instrumentation (#17796)

    This release introduces instrumentation for Nuxt middleware, ensuring that all middleware handlers are automatically wrapped with tracing and error reporting functionality.

  • fix(aws-serverless): Take http_proxy into account when choosing
    useLayerExtension default (#17817)

    The default setting for useLayerExtension now considers the http_proxy environment variable.
    When http_proxy is set, useLayerExtension will be off by default.
    If you use a http_proxy but would still like to make use of the Sentry Lambda extension, exempt localhost in a no_proxy environment variable.

Other Changes

  • feat(node): Split up http integration into composable parts (#17524)
  • fix(core): Remove check and always respect ai.telemetry.functionId for Vercel AI gen spans (#17811)
  • doc(core): Fix outdated JSDoc in beforeSendSpan (#17815)
Internal Changes
  • ci: Do not run dependabot on e2e test applications (#17813)
  • docs: Reword changelog for google gen ai integration (#17805)

10.16.0

  • feat(logs): Add internal replay_is_buffering flag (#17752)
  • feat(react-router): Update loadContext type to be compatible with middleware (#17758)
  • feat(replay/logs): Only attach sampled replay Ids to logs (#17750)
  • fix(browser): Use current start timestamp for CLS span when CLS is 0 (#17800)
  • fix(core): Prevent instrumentAnthropicAiClient breaking MessageStream api (#17754)
  • fix(nextjs): Don't use chalk in turbopack config file (#17806)
  • fix(react): Do not send additional navigation span on pageload (#17799)
Internal Changes
  • build(aws): Ensure AWS build cache does not keep old files (#17776)
  • chore: Add publish_release command (#17797)
  • ref(aws-serverless): Add resolution for import-in-the-middle when building the Lambda layer (#17780)
  • ref(aws-serverless): Improve README with better examples (#17787)
  • ref(core): Improve promise buffer (#17788)
  • Revert "test(e2e): Pin import-in-the-middle1.14.2 due to vercel/nft incompatibility (#17777)" (#17784)
  • test(e2e): Pin import-in-the-middle1.14.2 due to vercel/nft incompatibility (#17777)
  • test(nextjs): Add route handler tests for turbopack (#17515)
  • test(react-router): Test v8 middleware (#17783)

10.15.0

Important Changes

  • feat(cloudflare): Add honoIntegration with error-filtering function (#17743)

    This release adds a honoIntegration to sentry/cloudflare, which exposes a shouldHandleError function that lets you define which errors in onError should be captured.
    By default, Sentry captures exceptions with error.status >= 500 || error.status <= 299.

    The integration is added by default, and it's possible to modify this behavior like this:

     integrations: [
       honoIntegration({
        shouldHandleError: (err) => true; // always capture exceptions in onError
       })
     ]
  • feat(node): Add instrumentation for hono handler (#17428)

This PR enhances the Hono integration by adding comprehensive handler instrumentation, error handling capabilities.

  • feat(aws): Enable Lambda extension by default when using the Lamba layer (#17684)

  • feat(browser): Add setActiveSpanInBrowser to set an active span in the browser (#17714)

This PR adds a feature to the browser SDKs only: Making an inactive span active. We do this to enable use cases where having a span only being active in the callback is not practical.

Other Changes

  • fix(browser): Improve handling of 0 and undefined resource timing values (#17751)
  • ref(nextjs): Display build compatibility warning for webpack (#17746)
Internal Changes
  • docs: Reword changelog for google gen ai instrumentation (#17753)
  • build: Add typescript-eslint/no-unnecessary-type-assertion rule (#17728)
  • build: Update TS target to es2020 everywhere (#17709)
  • chore: Add external contributor to CHANGELOG.md (#17745)

Work in this release was contributed by Karibash. Thank you for your contribution!

10.14.0

Important Changes

  • feat(cloudflare,vercel-edge): Add support for Google Gen AI instrumentation (#17723)

    The SDK now supports manually instrumenting Google's Gen AI operations in Cloudflare Workers and Vercel Edge Runtime environments, providing insights into your AI operations. You can use const wrappedClient = Sentry.instrumentGoogleGenAIClient(genAiClient) to get an instrumented client.

Other Changes

  • fix(nextjs): Display updated turbopack warnings (#17737)
  • ref(core): Wrap isolationscope in WeakRef when storing it on spans (#17712)
Internal Changes
  • test(node): Avoid using specific port for node-integration-tests (#17729)
  • test(nuxt): Update Nuxt version and add Nitro $fetch test (#17713)

10.13.0

Important Changes

  • feat(browser): Add option to explicitly end pageload span via reportPageLoaded() (#17697)

    With this release you can take manual control of ending the pageload span. Usually this span is ended automatically by the SDK, based on a period of inactivity after the initial page was loaded in the browser. If you want full control over the pageload duration, you can tell Sentry, when your page was fully loaded:

    Sentry.init({
      //...
      integrations: [
        // 1. Enable manual pageload reporting
        Sentry.browserTracingIntegration({ enableReportPageLoaded: true }),
      ],
    });
    
    // 2. Whenever you decide the page is loaded, call:
    Sentry.reportPageLoaded();

    Note that if Sentry.reportPageLoaded() is not called within 30 seconds of the initial pageload (or whatever value the finalTimeout option is set to), the pageload span will be ended automatically.

  • feat(core,node): Add instrumentation for GoogleGenAI (#17625)

    The SDK now automatically instruments the google/genai package to provide insights into your AI operations.

  • feat(nextjs): Promote useRunAfterProductionCompileHook to non-experimental build option (#17721)

    The useRunAfterProductionCompileHook option is no longer experimental and is now a stable build option for Next.js projects.

  • feat(nextjs): Use afterProductionCompile hook for webpack builds (#17655)

    Next.js projects using webpack can opt-in to use the useRunAfterProductionCompileHook hook for source map uploads.

  • feat(nextjs): Flip default value for useRunAfterProductionCompileHook for Turbopack builds (#17722)

    The useRunAfterProductionCompileHook option is now enabled by default for Turbopack builds, enabling automated source map uploads.

  • feat(node): Do not drop 300 and 304 status codes by default (#17686)

    HTTP transactions with 300 and 304 status codes are now captured by default, providing better visibility into redirect and caching behavior.

Other Changes

  • feat(core): Add logger to core and allow scope to be passed log methods (#17698)
  • feat(core): Allow to pass onSuccess to handleCallbackErrors (#17679)
  • feat(core): Create template attributes in consoleLoggingIntegration (#17703)
  • feat(deps): bump sentry/cli from 2.52.0 to 2.53.0 (#17652)
  • feat(node): Add extra platforms to os context (#17720)
  • fix(browser): Ensure idle span duration is adjusted when child spans are ignored (#17700)
  • fix(core): Ensure builtin stack frames don't affect thirdPartyErrorFilterIntegration (#17693)
  • fix(core): Fix client hook edge cases around multiple callbacks (#17706)
  • fix(nextjs): Enable fetch span when OTel setup is skipped (#17699)
  • fix(node): Fix this context for vercel AI instrumentation (#17681)
Internal Changes
  • chore: Add external contributor to CHANGELOG.md (#17725)
  • chore: Add link to build and test icon in readme (#17719)
  • chore(nuxt): Bump Vite and Rollup plugins (#17671)
  • chore(repo): Add changelog entry for reportPageLoaded (#17724)
  • ci: Fix lookup of changed E2E test apps (#17707)
  • ci(test-matrix): Add logs for getTestMatrix (#17673)
  • ref: Avoid some usage of SyncPromise where not needed (#17641)
  • ref(core): Add debug log when dropping a span via ignoreSpans (#17692)
  • ref(core): Avoid looking up anthropic-ai integration options (#17694)
  • ref(core): Streamline module_metadata assignment and cleanup functions (#17696)
  • ref(remix): Avoid unnecessary error wrapping HandleDocumentRequestFunction (#17680)
  • Revert "[Gitflow] Merge master into develop"

Work in this release was contributed by Olexandr88. Thank you for your contribution!

@github-actions github-actions bot requested a review from alwx as a code owner September 23, 2025 03:16
@github-actions github-actions bot added the dependencies Pull requests that update a dependency file label Sep 23, 2025
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch from 107f582 to 25ef1e9 Compare September 23, 2025 03:18
@github-actions
Copy link
Contributor Author

github-actions bot commented Sep 23, 2025

Android (legacy) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 361.69 ms 352.79 ms -8.90 ms
Size 17.75 MiB 19.69 MiB 1.94 MiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
23080e5 384.85 ms 382.57 ms -2.28 ms
1853710 555.47 ms 556.59 ms 1.12 ms
77061ed+dirty 369.55 ms 408.35 ms 38.80 ms
20d5eaa 377.62 ms 406.50 ms 28.88 ms
f70acbf+dirty 373.39 ms 382.81 ms 9.43 ms
6479fd5+dirty 412.95 ms 434.02 ms 21.07 ms
8ece263 441.96 ms 444.96 ms 3.00 ms
af9331b 449.77 ms 479.20 ms 29.43 ms
a0b15d6 423.06 ms 437.77 ms 14.71 ms
46da307 455.92 ms 443.79 ms -12.13 ms

App size

Revision Plain With Sentry Diff
23080e5 17.75 MiB 19.68 MiB 1.94 MiB
1853710 17.75 MiB 19.68 MiB 1.94 MiB
77061ed+dirty 17.75 MiB 19.68 MiB 1.94 MiB
20d5eaa 17.75 MiB 20.15 MiB 2.41 MiB
f70acbf+dirty 17.75 MiB 19.68 MiB 1.94 MiB
6479fd5+dirty 17.75 MiB 19.68 MiB 1.94 MiB
8ece263 17.75 MiB 19.68 MiB 1.94 MiB
af9331b 17.75 MiB 19.68 MiB 1.94 MiB
a0b15d6 17.75 MiB 20.15 MiB 2.41 MiB
46da307 17.75 MiB 19.68 MiB 1.93 MiB

Previous results on branch: deps/scripts/update-javascript.sh

Startup times

Revision Plain With Sentry Diff
91d4b7d 406.98 ms 419.14 ms 12.16 ms
b48c857+dirty 371.82 ms 376.63 ms 4.82 ms
ff56633 463.52 ms 466.79 ms 3.27 ms
d8ec252 421.51 ms 442.57 ms 21.06 ms
1eed088+dirty 377.06 ms 365.22 ms -11.84 ms

App size

Revision Plain With Sentry Diff
91d4b7d 17.75 MiB 19.68 MiB 1.94 MiB
b48c857+dirty 17.75 MiB 19.68 MiB 1.94 MiB
ff56633 17.75 MiB 19.68 MiB 1.93 MiB
d8ec252 17.75 MiB 19.68 MiB 1.94 MiB
1eed088+dirty 17.75 MiB 19.69 MiB 1.94 MiB

@github-actions
Copy link
Contributor Author

github-actions bot commented Sep 23, 2025

Android (new) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 340.00 ms 375.09 ms 35.09 ms
Size 7.15 MiB 8.42 MiB 1.27 MiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
77061ed+dirty 359.40 ms 424.10 ms 64.70 ms
95aaf8a+dirty 342.82 ms 393.75 ms 50.93 ms
f70acbf+dirty 520.12 ms 558.91 ms 38.79 ms
6479fd5+dirty 393.06 ms 434.04 ms 40.98 ms
c7f264b+dirty 356.98 ms 407.46 ms 50.48 ms
d916aa3+dirty 411.72 ms 451.76 ms 40.03 ms
20daa0a+dirty 352.33 ms 424.30 ms 71.98 ms
e2fa43d+dirty 326.56 ms 372.88 ms 46.32 ms
785ffb1+dirty 380.65 ms 451.83 ms 71.18 ms
46bd012+dirty 333.76 ms 359.24 ms 25.48 ms

App size

Revision Plain With Sentry Diff
77061ed+dirty 7.15 MiB 8.41 MiB 1.26 MiB
95aaf8a+dirty 7.15 MiB 8.41 MiB 1.26 MiB
f70acbf+dirty 7.15 MiB 8.41 MiB 1.26 MiB
6479fd5+dirty 7.15 MiB 8.41 MiB 1.26 MiB
c7f264b+dirty 7.15 MiB 8.41 MiB 1.26 MiB
d916aa3+dirty 7.15 MiB 8.42 MiB 1.27 MiB
20daa0a+dirty 7.15 MiB 8.42 MiB 1.27 MiB
e2fa43d+dirty 7.15 MiB 8.42 MiB 1.27 MiB
785ffb1+dirty 7.15 MiB 8.42 MiB 1.27 MiB
46bd012+dirty 7.15 MiB 8.42 MiB 1.27 MiB

Previous results on branch: deps/scripts/update-javascript.sh

Startup times

Revision Plain With Sentry Diff
ff56633+dirty 324.65 ms 389.38 ms 64.72 ms
91d4b7d+dirty 359.58 ms 405.98 ms 46.40 ms
b48c857+dirty 353.60 ms 411.52 ms 57.92 ms
d8ec252+dirty 371.60 ms 416.64 ms 45.04 ms
1eed088+dirty 355.56 ms 384.47 ms 28.90 ms

App size

Revision Plain With Sentry Diff
ff56633+dirty 7.15 MiB 8.41 MiB 1.26 MiB
91d4b7d+dirty 7.15 MiB 8.41 MiB 1.26 MiB
b48c857+dirty 7.15 MiB 8.41 MiB 1.26 MiB
d8ec252+dirty 7.15 MiB 8.41 MiB 1.26 MiB
1eed088+dirty 7.15 MiB 8.42 MiB 1.27 MiB

@github-actions
Copy link
Contributor Author

github-actions bot commented Sep 23, 2025

iOS (legacy) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 1210.56 ms 1218.13 ms 7.57 ms
Size 2.63 MiB 3.98 MiB 1.35 MiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
bc9680d+dirty 1221.41 ms 1241.47 ms 20.06 ms
c9e95bd+dirty 1240.19 ms 1246.33 ms 6.14 ms
c1573b3+dirty 1203.33 ms 1202.47 ms -0.86 ms
49ef936+dirty 1228.42 ms 1217.09 ms -11.33 ms
8d89cc9+dirty 1222.92 ms 1239.43 ms 16.51 ms
e2fa43d+dirty 1216.04 ms 1232.65 ms 16.61 ms
9f211e3+dirty 1218.80 ms 1233.88 ms 15.08 ms
7be1f99+dirty 1226.69 ms 1217.76 ms -8.93 ms
21c9e75+dirty 1237.78 ms 1247.66 ms 9.88 ms
5c16cdc+dirty 1209.32 ms 1210.67 ms 1.35 ms

App size

Revision Plain With Sentry Diff
bc9680d+dirty 2.63 MiB 3.81 MiB 1.18 MiB
c9e95bd+dirty 2.63 MiB 3.87 MiB 1.24 MiB
c1573b3+dirty 2.63 MiB 3.81 MiB 1.18 MiB
49ef936+dirty 2.63 MiB 3.98 MiB 1.34 MiB
8d89cc9+dirty 2.63 MiB 3.96 MiB 1.33 MiB
e2fa43d+dirty 2.63 MiB 3.81 MiB 1.18 MiB
9f211e3+dirty 2.63 MiB 3.91 MiB 1.28 MiB
7be1f99+dirty 2.63 MiB 3.81 MiB 1.18 MiB
21c9e75+dirty 2.63 MiB 3.81 MiB 1.18 MiB
5c16cdc+dirty 2.63 MiB 3.96 MiB 1.33 MiB

Previous results on branch: deps/scripts/update-javascript.sh

Startup times

Revision Plain With Sentry Diff
ff56633+dirty 1212.29 ms 1214.81 ms 2.52 ms
91d4b7d+dirty 1222.45 ms 1227.18 ms 4.73 ms
b48c857+dirty 1219.14 ms 1240.80 ms 21.66 ms
d8ec252+dirty 1207.53 ms 1214.22 ms 6.69 ms
1eed088+dirty 1233.41 ms 1233.63 ms 0.22 ms

App size

Revision Plain With Sentry Diff
ff56633+dirty 2.63 MiB 3.87 MiB 1.24 MiB
91d4b7d+dirty 2.63 MiB 3.91 MiB 1.28 MiB
b48c857+dirty 2.63 MiB 3.96 MiB 1.33 MiB
d8ec252+dirty 2.63 MiB 3.87 MiB 1.24 MiB
1eed088+dirty 2.63 MiB 3.98 MiB 1.35 MiB

@github-actions
Copy link
Contributor Author

github-actions bot commented Sep 23, 2025

iOS (new) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 1227.29 ms 1229.08 ms 1.80 ms
Size 3.19 MiB 4.55 MiB 1.36 MiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
ec14be7+dirty 1229.62 ms 1230.53 ms 0.91 ms
d751a5d+dirty 1212.22 ms 1217.94 ms 5.71 ms
23080e5+dirty 1221.39 ms 1222.08 ms 0.70 ms
64cd15c+dirty 1213.50 ms 1223.54 ms 10.04 ms
77061ed+dirty 1210.77 ms 1218.45 ms 7.68 ms
ba75c7c+dirty 1236.14 ms 1240.69 ms 4.55 ms
95aaf8a+dirty 1206.83 ms 1213.65 ms 6.81 ms
98f632c+dirty 1221.38 ms 1229.26 ms 7.88 ms
534ba8c+dirty 1225.00 ms 1237.43 ms 12.43 ms
a31630c+dirty 1241.32 ms 1226.98 ms -14.34 ms

App size

Revision Plain With Sentry Diff
ec14be7+dirty 3.19 MiB 4.54 MiB 1.36 MiB
d751a5d+dirty 3.19 MiB 4.54 MiB 1.36 MiB
23080e5+dirty 3.19 MiB 4.48 MiB 1.29 MiB
64cd15c+dirty 3.19 MiB 4.38 MiB 1.19 MiB
77061ed+dirty 3.19 MiB 4.54 MiB 1.36 MiB
ba75c7c+dirty 3.19 MiB 4.38 MiB 1.19 MiB
95aaf8a+dirty 3.19 MiB 4.44 MiB 1.25 MiB
98f632c+dirty 3.19 MiB 4.38 MiB 1.19 MiB
534ba8c+dirty 3.19 MiB 4.38 MiB 1.19 MiB
a31630c+dirty 3.19 MiB 4.54 MiB 1.36 MiB

Previous results on branch: deps/scripts/update-javascript.sh

Startup times

Revision Plain With Sentry Diff
ff56633+dirty 1240.96 ms 1235.77 ms -5.19 ms
91d4b7d+dirty 1221.65 ms 1215.91 ms -5.74 ms
b48c857+dirty 1204.78 ms 1206.73 ms 1.96 ms
d8ec252+dirty 1223.06 ms 1219.64 ms -3.42 ms
1eed088+dirty 1220.49 ms 1225.57 ms 5.08 ms

App size

Revision Plain With Sentry Diff
ff56633+dirty 3.19 MiB 4.44 MiB 1.25 MiB
91d4b7d+dirty 3.19 MiB 4.48 MiB 1.29 MiB
b48c857+dirty 3.19 MiB 4.53 MiB 1.35 MiB
d8ec252+dirty 3.19 MiB 4.44 MiB 1.25 MiB
1eed088+dirty 3.19 MiB 4.55 MiB 1.36 MiB

@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch from 25ef1e9 to 9a0f16f Compare September 23, 2025 05:47
@github-actions github-actions bot changed the title chore(deps): update JavaScript SDK to v10.13.0 chore(deps): update JavaScript SDK to v10.14.0 Sep 23, 2025
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch 3 times, most recently from 097372d to 7710e7c Compare September 25, 2025 03:19
@github-actions github-actions bot changed the title chore(deps): update JavaScript SDK to v10.14.0 chore(deps): update JavaScript SDK to v10.15.0 Sep 25, 2025
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch 8 times, most recently from 893e68e to 3065d3f Compare September 30, 2025 07:31
@github-actions github-actions bot changed the title chore(deps): update JavaScript SDK to v10.15.0 chore(deps): update JavaScript SDK to v10.16.0 Sep 30, 2025
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch 2 times, most recently from cd7e43d to 8957c95 Compare September 30, 2025 12:34
@github-actions github-actions bot changed the title chore(deps): update JavaScript SDK to v10.16.0 chore(deps): update JavaScript SDK to v10.17.0 Sep 30, 2025
@antonis
Copy link
Contributor

antonis commented Sep 30, 2025

Blocked on #5228

@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch from 8957c95 to 2c342bc Compare October 1, 2025 07:30
@antonis antonis removed the Blocked label Oct 1, 2025
@antonis antonis enabled auto-merge (squash) October 3, 2025 13:25
@antonis antonis merged commit 73b8063 into main Oct 3, 2025
131 of 134 checks passed
@antonis antonis deleted the deps/scripts/update-javascript.sh branch October 3, 2025 13:25
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants