Skip to content

⬆️(dependencies) update js dependencies #1225

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 25, 2025

This PR contains the following updates:

Package Change Age Confidence
@​gouvfr-lasuite/ui-kit 0.10.0 -> 0.11.0 age confidence
@next/eslint-plugin-next (source) 15.4.4 -> 15.4.6 age confidence
@​openfun/cunningham-react 3.2.0 -> 3.2.2 age confidence
@playwright/test (source) 1.54.1 -> 1.54.2 age confidence
@sentry/nextjs (source) 9.42.0 -> 10.2.0 age confidence
@sentry/node (source) 9.42.0 -> 10.2.0 age confidence
@sentry/profiling-node (source) 9.42.0 -> 10.2.0 age confidence
@tanstack/eslint-plugin-query (source) 5.81.2 -> 5.83.1 age confidence
@tanstack/react-query (source) 5.83.0 -> 5.84.1 age confidence
@tanstack/react-query-devtools (source) 5.83.0 -> 5.84.1 age confidence
@testing-library/dom 10.4.0 -> 10.4.1 age confidence
@testing-library/jest-dom 6.6.3 -> 6.6.4 age confidence
@types/luxon (source) 3.6.2 -> 3.7.1 age confidence
@types/node (source) 22.16.5 -> 22.17.0 age confidence
@types/react (source) 19.1.8 -> 19.1.9 age confidence
@types/react-dom (source) 19.1.6 -> 19.1.7 age confidence
@typescript-eslint/eslint-plugin (source) 8.38.0 -> 8.39.0 age confidence
@typescript-eslint/parser (source) 8.38.0 -> 8.39.0 age confidence
cross-env 7.0.3 -> 10.0.0 age confidence
eslint-config-next (source) 15.4.4 -> 15.4.6 age confidence
eslint-plugin-playwright 2.2.0 -> 2.2.2 age confidence
eslint-plugin-prettier 5.5.3 -> 5.5.4 age confidence
eslint-plugin-testing-library 7.6.1 -> 7.6.3 age confidence
next (source) 15.4.4 -> 15.4.6 age confidence
posthog-js (source) 1.258.2 -> 1.258.6 age confidence
react (source) 19.1.0 -> 19.1.1 age confidence
react-dom (source) 19.1.0 -> 19.1.1 age confidence
stylelint (source) 16.22.0 -> 16.23.0 age confidence
stylelint-config-standard 38.0.0 -> 39.0.0 age confidence
ts-jest (source) 29.4.0 -> 29.4.1 age confidence
typescript (source) 5.8.3 -> 5.9.2 age confidence
webpack 5.100.2 -> 5.101.0 age confidence
zustand 5.0.6 -> 5.0.7 age confidence

Release Notes

vercel/next.js (@​next/eslint-plugin-next)

v15.4.6

Compare Source

v15.4.5

Compare Source

microsoft/playwright (@​playwright/test)

v1.54.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error)https://github.com/microsoft/playwright/issues/368288 - [Regression]: Playwright Codegen keeps spamming with selected optiohttps://github.com/microsoft/playwright/issues/3681010 - [Regression]: Starting Codegen with target language doesn't work anymore

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140
getsentry/sentry-javascript (@​sentry/nextjs)

v10.2.0

Compare Source

Important Changes
  • feat(core): Add ignoreSpans option (#​17078)

This release adds a new top-level Sentry.init option, ignoreSpans, that can be used as follows:

Sentry.init({
  ignoreSpans: [
    'partial match', // string matching on the span name
    /regex/, // regex matching on the span name
    {
      name: 'span name',
      op: /http.client/,
    },
  ],
});

Spans matching the filter criteria will not be recorded. Potential child spans of filtered spans will be re-parented, if possible.

  • feat(cloudflare,vercel-edge): Add support for OpenAI instrumentation (#​17338)

Adds support for OpenAI manual instrumentation in @sentry/cloudflare and @sentry/vercel-edge.

To instrument the OpenAI client, wrap it with Sentry.instrumentOpenAiClient and set recording settings.

import * as Sentry from '@​sentry/cloudflare';
import OpenAI from 'openai';

const openai = new OpenAI();
const client = Sentry.instrumentOpenAiClient(openai, { recordInputs: true, recordOutputs: true });

// use the wrapped client
  • ref(aws): Remove manual span creation (#​17310)

The startTrace option is deprecated and will be removed in a future major version. If you want to disable tracing, set SENTRY_TRACES_SAMPLE_RATE to 0.0. instead. As of today, the flag does not affect traces anymore.

Other Changes

Bundle size 📦

Path Size
@​sentry/browser 23.48 KB
@​sentry/browser - with treeshaking flags 22.09 KB
@​sentry/browser (incl. Tracing) 38.82 KB
@​sentry/browser (incl. Tracing, Replay) 76.03 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.11 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.62 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.44 KB
@​sentry/browser (incl. Feedback) 39.74 KB
@​sentry/browser (incl. sendFeedback) 28.03 KB
@​sentry/browser (incl. FeedbackAsync) 32.81 KB
@​sentry/react 25.16 KB
@​sentry/react (incl. Tracing) 40.72 KB
@​sentry/vue 27.84 KB
@​sentry/vue (incl. Tracing) 40.59 KB
@​sentry/svelte 23.51 KB
CDN Bundle 24.95 KB
CDN Bundle (incl. Tracing) 38.71 KB
CDN Bundle (incl. Tracing, Replay) 73.92 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 79.21 KB
CDN Bundle - uncompressed 72.95 KB
CDN Bundle (incl. Tracing) - uncompressed 114.57 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 226.16 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.47 KB
@​sentry/nextjs (client) 42.72 KB
@​sentry/sveltekit (client) 39.25 KB
@​sentry/node-core 46.61 KB
@​sentry/node 143.18 KB
@​sentry/node - without tracing 89.68 KB
@​sentry/aws-serverless 100.85 KB

v10.1.0

Compare Source

  • feat(nuxt): Align build-time options to follow bundler plugins structure (#​17255)
  • fix(browser-utils): Ensure web vital client hooks unsubscribe correctly (#​17272)
  • fix(browser): Ensure request from diagnoseSdkConnectivity doesn't create span (#​17280)

Bundle size 📦

Path Size
@​sentry/browser 23.21 KB
@​sentry/browser - with treeshaking flags 21.82 KB
@​sentry/browser (incl. Tracing) 38.51 KB
@​sentry/browser (incl. Tracing, Replay) 75.7 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 65.81 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.29 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.14 KB
@​sentry/browser (incl. Feedback) 39.5 KB
@​sentry/browser (incl. sendFeedback) 27.78 KB
@​sentry/browser (incl. FeedbackAsync) 32.56 KB
@​sentry/react 24.9 KB
@​sentry/react (incl. Tracing) 40.43 KB
@​sentry/vue 27.54 KB
@​sentry/vue (incl. Tracing) 40.27 KB
@​sentry/svelte 23.23 KB
CDN Bundle 24.69 KB
CDN Bundle (incl. Tracing) 38.38 KB
CDN Bundle (incl. Tracing, Replay) 73.62 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.92 KB
CDN Bundle - uncompressed 72.13 KB
CDN Bundle (incl. Tracing) - uncompressed 113.62 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.16 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 237.67 KB
@​sentry/nextjs (client) 42.44 KB
@​sentry/sveltekit (client) 38.93 KB
@​sentry/node-core 46.41 KB
@​sentry/node 142.76 KB
@​sentry/node - without tracing 89.48 KB
@​sentry/aws-serverless 100.67 KB

v10.0.0

Compare Source

Version 10.0.0 marks a release of the Sentry JavaScript SDKs that contains breaking changes. The goal of this release is to primarily upgrade the underlying OpenTelemetry dependencies to v2 with minimal breaking changes.

How To Upgrade

Please carefully read through the migration guide in the Sentry docs on how to upgrade from version 9 to version 10. Make sure to select your specific platform/framework in the top left corner: https://docs.sentry.io/platforms/javascript/migration/v9-to-v10/

A comprehensive migration guide outlining all changes can be found within the Sentry JavaScript SDK Repository: https://github.com/getsentry/sentry-javascript/blob/develop/MIGRATION.md

Breaking Changes
  • feat!: Bump to OpenTelemetry v2 (#​16872)
  • feat(browser)!: Remove FID web vital collection (#​17076)
  • feat(core)!: Remove BaseClient (#​17071)
  • feat(core)!: Remove enableLogs and beforeSendLog experimental options (#​17063)
  • feat(core)!: Remove hasTracingEnabled (#​17072)
  • feat(core)!: Remove deprecated logger (#​17061)
  • feat(replay)!: Promote _experiments.autoFlushOnFeedback option as default (#​17220)
  • chore(deps)!: Bump bundler plugins to v4 (#​17089)
Other Changes
  • feat(astro): Implement Request Route Parametrization for Astro 5 (#​17105)
  • feat(astro): Parametrize routes on client-side (#​17133)
  • feat(aws): Add SentryNodeServerlessSDKv10 v10 AWS Lambda Layer (#​17069)
  • feat(aws): Create unified lambda layer for ESM and CJS (#​17012)
  • feat(aws): Detect SDK source for AWS Lambda layer (#​17128)
  • feat(core): Add missing openai tool calls attributes (#​17226)
  • feat(core): Add shared flushIfServerless function (#​17177)
  • feat(core): Implement strictTraceContinuation (#​16313)
  • feat(core): MCP server instrumentation without breaking Miniflare (#​16817)
  • feat(deps): bump @​prisma/instrumentation from 6.11.1 to 6.12.0 (#​17117)
  • feat(meta): Unify detection of serverless environments and add Cloud Run (#​17168)
  • feat(nestjs): Switch to OTel core instrumentation (#​17068)
  • feat(node-native): Upgrade @sentry-internal/node-native-stacktrace to 0.2.2 (#​17207)
  • feat(node): Add shouldHandleError option to fastifyIntegration (#​16845)
  • feat(node): Add firebase integration (#​16719)
  • feat(node): Instrument stream responses for openai (#​17110)
  • feat(react-router): Add createSentryHandleError (#​17235)
  • feat(react-router): Automatically flush on serverless for loaders/actions (#​17234)
  • feat(react-router): Automatically flush on Vercel for request handlers (#​17232)
  • fix(astro): Construct parametrized route during runtime (#​17190)
  • fix(aws): Add layer build output to nx cache (#​17148)
  • fix(aws): Fix path to packages directory (#​17112)
  • fix(aws): Resolve all Sentry packages to local versions in layer build (#​17106)
  • fix(aws): Use file link in dependency version (#​17111)
  • fix(cloudflare): Allow non uuid workflow instance IDs (#​17121)
  • fix(cloudflare): Avoid turning DurableObject sync methods into async (#​17184)
  • fix(core): Fix OpenAI SDK private field access by binding non-instrumented fns (#​17163)
  • fix(core): Fix operation name for openai responses API (#​17206)
  • fix(core): Update ai.response.object to gen_ai.response.object (#​17153)
  • fix(nextjs): Flush in route handlers (#​17223)
  • fix(nextjs): Handle async params in url extraction (#​17162)
  • fix(nextjs): Update stackframe calls for next v15.5 (#​17156)
  • fix(node): Add mechanism to fastifyIntegration error handler (#​17208)
  • fix(node): Ensure tool errors for vercelAiIntegration have correct trace connected (#​17132)
  • fix(node): Fix exports for openai instrumentation (#​17238)
  • fix(node): Handle stack traces with data URI filenames (#​17218)
  • fix(react): Memoize wrapped component to prevent rerenders (#​17230)
  • fix(remix): Ensure source maps upload fails silently if Sentry CLI fails (#​17082)
  • fix(replay): Fix re-sampled sessions after a click (#​17008)
  • fix(svelte): Do not insert preprocess code in script module in Svelte 5 (#​17114)
  • fix(sveltekit): Align error status filtering and mechanism in handleErrorWithSentry (#​17157)

Work in this release was contributed by @​richardjelinek-fastest. Thank you for your contribution!

Bundle size 📦
Path Size
@​sentry/browser 23.21 KB
@​sentry/browser - with treeshaking flags 21.82 KB
@​sentry/browser (incl. Tracing) 38.49 KB
@​sentry/browser (incl. Tracing, Replay) 75.68 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 65.78 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.27 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.11 KB
@​sentry/browser (incl. Feedback) 39.5 KB
@​sentry/browser (incl. sendFeedback) 27.78 KB
@​sentry/browser (incl. FeedbackAsync) 32.56 KB
@​sentry/react 24.9 KB
@​sentry/react (incl. Tracing) 40.41 KB
@​sentry/vue 27.54 KB
@​sentry/vue (incl. Tracing) 40.25 KB
@​sentry/svelte 23.23 KB
CDN Bundle 24.69 KB
CDN Bundle (incl. Tracing) 38.37 KB
CDN Bundle (incl. Tracing, Replay) 73.61 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.91 KB
CDN Bundle - uncompressed 72.13 KB
CDN Bundle (incl. Tracing) - uncompressed 113.57 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.11 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 237.62 KB
@​sentry/nextjs (client) 42.42 KB
@​sentry/sveltekit (client) 38.91 KB
@​sentry/node-core 46.41 KB
@​sentry/node 142.76 KB
@​sentry/node - without tracing 89.48 KB
@​sentry/aws-serverless 100.67 KB

v9.44.2

Compare Source

This release is publishing the AWS Lambda Layer under SentryNodeServerlessSDKv9. The previous release 9.44.1 accidentally published the layer under SentryNodeServerlessSDKv10.

Bundle size 📦

Path Size
@​sentry/browser 23.24 KB
@​sentry/browser - with treeshaking flags 21.83 KB
@​sentry/browser (incl. Tracing) 38.73 KB
@​sentry/browser (incl. Tracing, Replay) 75.95 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 65.98 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.53 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.34 KB
@​sentry/browser (incl. Feedback) 39.53 KB
@​sentry/browser (incl. sendFeedback) 27.81 KB
@​sentry/browser (incl. FeedbackAsync) 32.59 KB
@​sentry/react 24.95 KB
@​sentry/react (incl. Tracing) 40.64 KB
@​sentry/vue 27.58 KB
@​sentry/vue (incl. Tracing) 40.48 KB
@​sentry/svelte 23.25 KB
CDN Bundle 24.59 KB
CDN Bundle (incl. Tracing) 38.49 KB
CDN Bundle (incl. Tracing, Replay) 73.63 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.97 KB
CDN Bundle - uncompressed 71.73 KB
CDN Bundle (incl. Tracing) - uncompressed 114.12 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.6 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.11 KB
@​sentry/nextjs (client) 42.64 KB
@​sentry/sveltekit (client) 39.14 KB
@​sentry/node 165.21 KB
@​sentry/node - without tracing 97.96 KB
@​sentry/aws-serverless 125.46 KB

v9.44.1

Compare Source

  • fix(replay/v9): Call sendBufferedReplayOrFlush when opening/sending feedback (#​17270)

Bundle size 📦

Path Size
@​sentry/browser 23.24 KB
@​sentry/browser - with treeshaking flags 21.83 KB
@​sentry/browser (incl. Tracing) 38.73 KB
@​sentry/browser (incl. Tracing, Replay) 75.94 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 65.98 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.53 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.34 KB
@​sentry/browser (incl. Feedback) 39.53 KB
@​sentry/browser (incl. sendFeedback) 27.81 KB
@​sentry/browser (incl. FeedbackAsync) 32.59 KB
@​sentry/react 24.95 KB
@​sentry/react (incl. Tracing) 40.64 KB
@​sentry/vue 27.58 KB
@​sentry/vue (incl. Tracing) 40.48 KB
@​sentry/svelte 23.25 KB
CDN Bundle 24.59 KB
CDN Bundle (incl. Tracing) 38.49 KB
CDN Bundle (incl. Tracing, Replay) 73.63 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.97 KB
CDN Bundle - uncompressed 71.73 KB
CDN Bundle (incl. Tracing) - uncompressed 114.12 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.6 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.11 KB
@​sentry/nextjs (client) 42.64 KB
@​sentry/sveltekit (client) 39.14 KB
@​sentry/node 165.21 KB
@​sentry/node - without tracing 97.96 KB
@​sentry/aws-serverless 125.46 KB

v9.44.0

Compare Source

  • feat(replay/v9): Deprecate _experiments.autoFlushOnFeedback (#​17219)
  • feat(v9/core): Add shared flushIfServerless function (#​17239)
  • feat(v9/node-native): Upgrade @sentry-internal/node-native-stacktrace to 0.2.2 (#​17256)
  • feat(v9/react-router): Add createSentryHandleError (#​17244)
  • feat(v9/react-router): Automatically flush on serverless for loaders/actions (#​17243)
  • feat(v9/react-router): Automatically flush on serverless for request handler (#​17242)
  • fix(v9/astro): Construct parametrized route during runtime (#​17227)
  • fix(v9/nextjs): Flush in route handlers (#​17245)
  • fix(v9/node): Fix exports for openai instrumentation (#​17238) (#​17241)

Bundle size 📦

Path Size
@​sentry/browser 23.24 KB
@​sentry/browser - with treeshaking flags 21.83 KB
@​sentry/browser (incl. Tracing) 38.73 KB
@​sentry/browser (incl. Tracing, Replay) 75.94 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 65.98 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.53 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.34 KB
@​sentry/browser (incl. Feedback) 39.53 KB
@​sentry/browser (incl. sendFeedback) 27.81 KB
@​sentry/browser (incl. FeedbackAsync) 32.59 KB
@​sentry/react 24.95 KB
@​sentry/react (incl. Tracing) 40.64 KB
@​sentry/vue 27.58 KB
@​sentry/vue (incl. Tracing) 40.48 KB
@​sentry/svelte 23.25 KB
CDN Bundle 24.59 KB
CDN Bundle (incl. Tracing) 38.49 KB
CDN Bundle (incl. Tracing, Replay) 73.62 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.97 KB
CDN Bundle - uncompressed 71.73 KB
CDN Bundle (incl. Tracing) - uncompressed 114.12 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.56 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.07 KB
@​sentry/nextjs (client) 42.64 KB
@​sentry/sveltekit (client) 39.14 KB
@​sentry/node 165.21 KB
@​sentry/node - without tracing 97.96 KB
@​sentry/aws-serverless 125.46 KB

v9.43.0

Compare Source

  • feat(v9/core): add MCP server instrumentation (#​17196)
  • feat(v9/meta): Unify detection of serverless environments and add Cloud Run (#​17204)
  • fix(v9/node): Add mechanism to fastifyIntegration error handler (#​17211)
  • fix(v9/replay): Fix re-sampled sessions after a click (#​17195)

Bund


Configuration

📅 Schedule: Branch creation - "before 7am on monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added automated Pull request created automatically dependencies Pull requests that update a dependency file noChangeLog labels Jul 25, 2025
@renovate renovate bot force-pushed the renovate/js-dependencies branch from 9f89008 to 02828d6 Compare July 26, 2025 22:38
@renovate renovate bot changed the title ⬆️(dependencies) update cross-env to v10 ⬆️(dependencies) update js dependencies Jul 26, 2025
@renovate renovate bot force-pushed the renovate/js-dependencies branch 22 times, most recently from cd43943 to 31d5849 Compare August 1, 2025 12:43
@renovate renovate bot force-pushed the renovate/js-dependencies branch 2 times, most recently from 7818652 to 0502c33 Compare August 4, 2025 08:02
@AntoLC AntoLC self-assigned this Aug 4, 2025
@renovate renovate bot force-pushed the renovate/js-dependencies branch 11 times, most recently from ad3a534 to b14dd34 Compare August 7, 2025 07:57
@AntoLC AntoLC force-pushed the renovate/js-dependencies branch from b14dd34 to f434d78 Compare August 7, 2025 09:07
@renovate renovate bot force-pushed the renovate/js-dependencies branch from f434d78 to 9fffde6 Compare August 7, 2025 09:08
@AntoLC
Copy link
Collaborator

AntoLC commented Aug 7, 2025

Closed in favor of #1272

@AntoLC AntoLC closed this Aug 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automated Pull request created automatically dependencies Pull requests that update a dependency file noChangeLog
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant