Skip to content

Commit 271cf30

Browse files
Bump the npm-dependencies group with 5 updates (#8439)
Bumps the npm-dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [@sentry/browser](https://github.com/getsentry/sentry-javascript) | `10.32.1` | `10.33.0` | | [@rails/actiontext](https://github.com/rails/rails) | `8.1.100` | `8.1.200` | | [@rails/activestorage](https://github.com/rails/rails) | `8.1.100` | `8.1.200` | | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.28.5` | `7.28.6` | | [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.28.5` | `7.28.6` | Updates `@sentry/browser` from 10.32.1 to 10.33.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/getsentry/sentry-javascript/releases"><code>@​sentry/browser</code>'s releases</a>.</em></p> <blockquote> <h2>10.33.0</h2> <h3>Important Changes</h3> <ul> <li> <p><strong>feat(core): Apply scope attributes to metrics (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/18738">#18738</a>)</strong></p> <p>You can now set attributes on the SDK's scopes which will be applied to all metrics as long as the respective scopes are active. For the time being, only <code>string</code>, <code>number</code> and <code>boolean</code> attribute values are supported.</p> <pre lang="ts"><code>Sentry.getGlobalScope().setAttributes({ is_admin: true, auth_provider: 'google' }); <p>Sentry.withScope(scope =&gt; { scope.setAttribute('step', 'authentication');</p> <p>// scope attributes <code>is_admin</code>, <code>auth_provider</code> and <code>step</code> are added Sentry.metrics.count('clicks', 1, { attributes: { activeSince: 100 } }); Sentry.metrics.gauge('timeSinceRefresh', 4, { unit: 'hour' }); });</p> <p>// scope attributes <code>is_admin</code> and <code>auth_provider</code> are added Sentry.metrics.count('response_time', 283.33, { unit: 'millisecond' }); </code></pre></p> </li> <li> <p><strong>feat(tracing): Add Vercel AI SDK v6 support (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/18741">#18741</a>)</strong></p> <p>The Sentry SDK now supports the Vercel AI SDK v6. Tracing and error monitoring will work automatically with the new version.</p> </li> <li> <p><strong>feat(wasm): Add applicationKey option for third-party error filtering (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/18762">#18762</a>)</strong></p> <p>Adds support for applying an application key to WASM stack frames that can be then used in the <code>thirdPartyErrorFilterIntegration</code> for detection of first-party code.</p> <p>Usage:</p> <pre lang="js"><code>Sentry.init({ integrations: [ // Integration order matters: wasmIntegration needs to be before thirdPartyErrorFilterIntegration wasmIntegration({ applicationKey: 'your-custom-application-key' }), ←───┐ thirdPartyErrorFilterIntegration({ │ behaviour: 'drop-error-if-exclusively-contains-third-party-frames', ├─ matching keys filterKeys: ['your-custom-application-key'] ←─────────────────────────┘ }), ], }); </code></pre> </li> </ul> <h3>Other Changes</h3> <ul> <li>feat(cloudflare): Support <code>propagateTraceparent</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/18569">#18569</a>)</li> <li>feat(core): Add <code>ignoreSentryInternalFrames</code> option to <code>thirdPartyErrorFilterIntegration</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/18632">#18632</a>)</li> <li>feat(core): Add gen_ai.conversation.id attribute to OpenAI and LangGr… (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/18703">#18703</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md"><code>@​sentry/browser</code>'s changelog</a>.</em></p> <blockquote> <h2>10.33.0</h2> <h3>Important Changes</h3> <ul> <li> <p><strong>feat(core): Apply scope attributes to metrics (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/18738">#18738</a>)</strong></p> <p>You can now set attributes on the SDK's scopes which will be applied to all metrics as long as the respective scopes are active. For the time being, only <code>string</code>, <code>number</code> and <code>boolean</code> attribute values are supported.</p> <pre lang="ts"><code>Sentry.getGlobalScope().setAttributes({ is_admin: true, auth_provider: 'google' }); <p>Sentry.withScope(scope =&gt; { scope.setAttribute('step', 'authentication');</p> <p>// scope attributes <code>is_admin</code>, <code>auth_provider</code> and <code>step</code> are added Sentry.metrics.count('clicks', 1, { attributes: { activeSince: 100 } }); Sentry.metrics.gauge('timeSinceRefresh', 4, { unit: 'hour' }); });</p> <p>// scope attributes <code>is_admin</code> and <code>auth_provider</code> are added Sentry.metrics.count('response_time', 283.33, { unit: 'millisecond' }); </code></pre></p> </li> <li> <p><strong>feat(tracing): Add Vercel AI SDK v6 support (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/18741">#18741</a>)</strong></p> <p>The Sentry SDK now supports the Vercel AI SDK v6. Tracing and error monitoring will work automatically with the new version.</p> </li> <li> <p><strong>feat(wasm): Add applicationKey option for third-party error filtering (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/18762">#18762</a>)</strong></p> <p>Adds support for applying an application key to WASM stack frames that can be then used in the <code>thirdPartyErrorFilterIntegration</code> for detection of first-party code.</p> <p>Usage:</p> <pre lang="js"><code>Sentry.init({ integrations: [ // Integration order matters: wasmIntegration needs to be before thirdPartyErrorFilterIntegration wasmIntegration({ applicationKey: 'your-custom-application-key' }), ←───┐ thirdPartyErrorFilterIntegration({ │ behaviour: 'drop-error-if-exclusively-contains-third-party-frames', ├─ matching keys filterKeys: ['your-custom-application-key'] ←─────────────────────────┘ }), ], }); </code></pre> </li> </ul> <h3>Other Changes</h3> <ul> <li>feat(cloudflare): Support <code>propagateTraceparent</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/18569">#18569</a>)</li> <li>feat(core): Add <code>ignoreSentryInternalFrames</code> option to <code>thirdPartyErrorFilterIntegration</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/pull/18632">#18632</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/getsentry/sentry-javascript/commit/fb9dd1e97aff1db3962867a1bbc64037ebb09ecb"><code>fb9dd1e</code></a> release: 10.33.0</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/b7fe9bf0ac90cb8682a9c0836faf59e6f31f6c57"><code>b7fe9bf</code></a> Merge pull request <a href="https://redirect.github.com/getsentry/sentry-javascript/issues/18770">#18770</a> from getsentry/prepare-release/10.33.0</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/1630389fa60ef91fe165dd04e6eb9c7820a375ea"><code>1630389</code></a> meta(changelog): Update changelog for 10.33.0</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/3ff89c6270b8cc3ae3748d67c8c09d03f7502773"><code>3ff89c6</code></a> test(node-integration): Remove hardcoded SDK version assertions (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/18775">#18775</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/03546d27181ea42d8a812b54863ff81aa54ae1a2"><code>03546d2</code></a> test(node-core): Fix wrong import in node core IPv6 integration test (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/18773">#18773</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/6f723e07eafe603e6365733fd91061e53a3ba0f2"><code>6f723e0</code></a> fix(test): Remove hard-coded SDK version assertion (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/18771">#18771</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/ac45e57bdf1085af3fb88171e7cd83d655622db6"><code>ac45e57</code></a> feat(nextjs): Print Turbopack note for deprecated webpack options (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/18769">#18769</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/cc93c682f133eb401c1576d5d56c2539960440e1"><code>cc93c68</code></a> feat(cloudflare): Support <code>propagateTraceparent</code> (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/18569">#18569</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/46225eb02894e97c92f1480d75cef1f89385fde8"><code>46225eb</code></a> feat(wasm): Add applicationKey option for third-party error filtering (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/18762">#18762</a>)</li> <li><a href="https://github.com/getsentry/sentry-javascript/commit/fd42f3b65eca92b691896380f85804d9aa11fc88"><code>fd42f3b</code></a> fix(next): Wrap all Random APIs with a safe runner (<a href="https://redirect.github.com/getsentry/sentry-javascript/issues/18700">#18700</a>)</li> <li>Additional commits viewable in <a href="https://github.com/getsentry/sentry-javascript/compare/10.32.1...10.33.0">compare view</a></li> </ul> </details> <br /> Updates `@rails/actiontext` from 8.1.100 to 8.1.200 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/rails/rails/commits">compare view</a></li> </ul> </details> <br /> Updates `@rails/activestorage` from 8.1.100 to 8.1.200 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/rails/rails/commits">compare view</a></li> </ul> </details> <br /> Updates `@babel/core` from 7.28.5 to 7.28.6 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@​babel/core</code>'s releases</a>.</em></p> <blockquote> <h2>v7.28.6 (2026-01-12)</h2> <p>Thanks <a href="https://github.com/kadhirash"><code>@​kadhirash</code></a> and <a href="https://github.com/kolvian"><code>@​kolvian</code></a> for your first PRs!</p> <h4>:bug: Bug Fix</h4> <ul> <li><code>babel-cli</code>, <code>babel-code-frame</code>, <code>babel-core</code>, <code>babel-helper-check-duplicate-nodes</code>, <code>babel-helper-fixtures</code>, <code>babel-helper-plugin-utils</code>, <code>babel-node</code>, <code>babel-plugin-transform-flow-comments</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-property-mutators</code>, <code>babel-preset-env</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17589">#17589</a> Improve Unicode handling in code-frame tokenizer (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> </ul> </li> <li><code>babel-plugin-transform-regenerator</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17556">#17556</a> fix: <code>transform-regenerator</code> correctly handles scope (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-plugin-transform-react-jsx</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17538">#17538</a> fix: Keep jsx comments (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>:nail_care: Polish</h4> <ul> <li><code>babel-core</code>, <code>babel-standalone</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17606">#17606</a> Polish(standalone): improve message on invalid preset/plugin (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> </ul> </li> </ul> <h4>:house: Internal</h4> <ul> <li><code>babel-plugin-bugfix-v8-static-class-fields-redefine-readonly</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-plugin-proposal-import-attributes-to-assertions</code>, <code>babel-plugin-proposal-import-wasm-source</code>, <code>babel-plugin-syntax-async-do-expressions</code>, <code>babel-plugin-syntax-decorators</code>, <code>babel-plugin-syntax-destructuring-private</code>, <code>babel-plugin-syntax-do-expressions</code>, <code>babel-plugin-syntax-explicit-resource-management</code>, <code>babel-plugin-syntax-export-default-from</code>, <code>babel-plugin-syntax-flow</code>, <code>babel-plugin-syntax-function-bind</code>, <code>babel-plugin-syntax-function-sent</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-import-attributes</code>, <code>babel-plugin-syntax-import-defer</code>, <code>babel-plugin-syntax-import-source</code>, <code>babel-plugin-syntax-jsx</code>, <code>babel-plugin-syntax-module-blocks</code>, <code>babel-plugin-syntax-optional-chaining-assign</code>, <code>babel-plugin-syntax-partial-application</code>, <code>babel-plugin-syntax-pipeline-operator</code>, <code>babel-plugin-syntax-throw-expressions</code>, <code>babel-plugin-syntax-typescript</code>, <code>babel-plugin-transform-async-generator-functions</code>, <code>babel-plugin-transform-async-to-generator</code>, <code>babel-plugin-transform-class-properties</code>, <code>babel-plugin-transform-class-static-block</code>, <code>babel-plugin-transform-dotall-regex</code>, <code>babel-plugin-transform-duplicate-named-capturing-groups-regex</code>, <code>babel-plugin-transform-explicit-resource-management</code>, <code>babel-plugin-transform-exponentiation-operator</code>, <code>babel-plugin-transform-json-strings</code>, <code>babel-plugin-transform-logical-assignment-operators</code>, <code>babel-plugin-transform-nullish-coalescing-operator</code>, <code>babel-plugin-transform-numeric-separator</code>, <code>babel-plugin-transform-object-rest-spread</code>, <code>babel-plugin-transform-optional-catch-binding</code>, <code>babel-plugin-transform-optional-chaining</code>, <code>babel-plugin-transform-private-methods</code>, <code>babel-plugin-transform-private-property-in-object</code>, <code>babel-plugin-transform-regexp-modifiers</code>, <code>babel-plugin-transform-unicode-property-regex</code>, <code>babel-plugin-transform-unicode-sets-regex</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17580">#17580</a> Allow Babel 8 in compatible Babel 7 plugins (<a href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>:running_woman: Performance</h4> <ul> <li><code>babel-plugin-transform-react-jsx</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17555">#17555</a> perf: Use lighter traversal for jsx <code>__source,__self</code> (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>Committers: 7</h4> <ul> <li>Babel Bot (<a href="https://github.com/babel-bot"><code>@​babel-bot</code></a>)</li> <li>Eliot Pontarelli (<a href="https://github.com/kolvian"><code>@​kolvian</code></a>)</li> <li>Huáng Jùnliàng (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> <li>Kadhirash Sivakumar (<a href="https://github.com/kadhirash"><code>@​kadhirash</code></a>)</li> <li>Nicolò Ribaudo (<a href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li> <li><a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a></li> <li>coderaiser (<a href="https://github.com/coderaiser"><code>@​coderaiser</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/blob/main/CHANGELOG.md"><code>@​babel/core</code>'s changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <blockquote> <p><strong>Tags:</strong></p> <ul> <li>:boom: [Breaking Change]</li> <li>:eyeglasses: [Spec Compliance]</li> <li>:rocket: [New Feature]</li> <li>:bug: [Bug Fix]</li> <li>:memo: [Documentation]</li> <li>:house: [Internal]</li> <li>:nail_care: [Polish]</li> </ul> </blockquote> <p><em>Note: Gaps between patch versions are faulty, broken or test releases.</em></p> <p>This file contains the changelog starting from v7.15.0.</p> <ul> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v7.0.0-v7.14.9.md">CHANGELOG - v7.0.0 to v7.14.9</a> for v7.0.0 to v7.14.9 changes.</li> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v7-prereleases.md">CHANGELOG - v7 prereleases</a> for v7.0.0-alpha.1 to v7.0.0-rc.4 changes.</li> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v4.md">CHANGELOG - v4</a>, <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v5.md">CHANGELOG - v5</a>, and <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v6.md">CHANGELOG - v6</a> for v4.x-v6.x changes.</li> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-6to5.md">CHANGELOG - 6to5</a> for the pre-4.0.0 version changelog.</li> <li>See <a href="https://github.com/babel/babel/blob/main/packages/babel-parser/CHANGELOG.md">Babylon's CHANGELOG</a> for the Babylon pre-7.0.0-beta.29 version changelog.</li> <li>See <a href="https://github.com/babel/babel-eslint/releases"><code>babel-eslint</code>'s releases</a> for the changelog before <code>@babel/eslint-parser</code> 7.8.0.</li> <li>See <a href="https://github.com/babel/eslint-plugin-babel/releases"><code>eslint-plugin-babel</code>'s releases</a> for the changelog before <code>@babel/eslint-plugin</code> 7.8.0.</li> </ul> <!-- raw HTML omitted --> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/babel/babel/commit/d7f400889567ae18ef9ac41b024b5120f6060e17"><code>d7f4008</code></a> v7.28.6</li> <li><a href="https://github.com/babel/babel/commit/e130225028e93e106135586f344cfa44c4aac847"><code>e130225</code></a> Polish(standalone): improve message on invalid preset/plugin (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-core/issues/17606">#17606</a>)</li> <li><a href="https://github.com/babel/babel/commit/99dcba5e71de3bd81ce14077cfa5b6df58e9b177"><code>99dcba5</code></a> chore: enable some ts-eslint rules (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-core/issues/17592">#17592</a>)</li> <li><a href="https://github.com/babel/babel/commit/c92c4919771105140015167f25f7bacac77c90d9"><code>c92c491</code></a> Improve Unicode handling in code-frame tokenizer (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-core/issues/17589">#17589</a>)</li> <li><a href="https://github.com/babel/babel/commit/d725e399fd6a4da463cff4918cf71aa03b8beb14"><code>d725e39</code></a> Add <code>BABEL_7_TO_8_DANGEROUSLY_DISABLE_VERSION_CHECK</code> (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-core/issues/17569">#17569</a>)</li> <li><a href="https://github.com/babel/babel/commit/c1b55f6ad56523ccc96fa68721de0bed2f2cdb23"><code>c1b55f6</code></a> Use <code>eslint.config.mts</code> (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-core/issues/17573">#17573</a>)</li> <li>See full diff in <a href="https://github.com/babel/babel/commits/v7.28.6/packages/babel-core">compare view</a></li> </ul> </details> <br /> Updates `@babel/preset-env` from 7.28.5 to 7.28.6 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@​babel/preset-env</code>'s releases</a>.</em></p> <blockquote> <h2>v7.28.6 (2026-01-12)</h2> <p>Thanks <a href="https://github.com/kadhirash"><code>@​kadhirash</code></a> and <a href="https://github.com/kolvian"><code>@​kolvian</code></a> for your first PRs!</p> <h4>:bug: Bug Fix</h4> <ul> <li><code>babel-cli</code>, <code>babel-code-frame</code>, <code>babel-core</code>, <code>babel-helper-check-duplicate-nodes</code>, <code>babel-helper-fixtures</code>, <code>babel-helper-plugin-utils</code>, <code>babel-node</code>, <code>babel-plugin-transform-flow-comments</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-property-mutators</code>, <code>babel-preset-env</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17589">#17589</a> Improve Unicode handling in code-frame tokenizer (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> </ul> </li> <li><code>babel-plugin-transform-regenerator</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17556">#17556</a> fix: <code>transform-regenerator</code> correctly handles scope (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-plugin-transform-react-jsx</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17538">#17538</a> fix: Keep jsx comments (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>:nail_care: Polish</h4> <ul> <li><code>babel-core</code>, <code>babel-standalone</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17606">#17606</a> Polish(standalone): improve message on invalid preset/plugin (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> </ul> </li> </ul> <h4>:house: Internal</h4> <ul> <li><code>babel-plugin-bugfix-v8-static-class-fields-redefine-readonly</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-plugin-proposal-import-attributes-to-assertions</code>, <code>babel-plugin-proposal-import-wasm-source</code>, <code>babel-plugin-syntax-async-do-expressions</code>, <code>babel-plugin-syntax-decorators</code>, <code>babel-plugin-syntax-destructuring-private</code>, <code>babel-plugin-syntax-do-expressions</code>, <code>babel-plugin-syntax-explicit-resource-management</code>, <code>babel-plugin-syntax-export-default-from</code>, <code>babel-plugin-syntax-flow</code>, <code>babel-plugin-syntax-function-bind</code>, <code>babel-plugin-syntax-function-sent</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-import-attributes</code>, <code>babel-plugin-syntax-import-defer</code>, <code>babel-plugin-syntax-import-source</code>, <code>babel-plugin-syntax-jsx</code>, <code>babel-plugin-syntax-module-blocks</code>, <code>babel-plugin-syntax-optional-chaining-assign</code>, <code>babel-plugin-syntax-partial-application</code>, <code>babel-plugin-syntax-pipeline-operator</code>, <code>babel-plugin-syntax-throw-expressions</code>, <code>babel-plugin-syntax-typescript</code>, <code>babel-plugin-transform-async-generator-functions</code>, <code>babel-plugin-transform-async-to-generator</code>, <code>babel-plugin-transform-class-properties</code>, <code>babel-plugin-transform-class-static-block</code>, <code>babel-plugin-transform-dotall-regex</code>, <code>babel-plugin-transform-duplicate-named-capturing-groups-regex</code>, <code>babel-plugin-transform-explicit-resource-management</code>, <code>babel-plugin-transform-exponentiation-operator</code>, <code>babel-plugin-transform-json-strings</code>, <code>babel-plugin-transform-logical-assignment-operators</code>, <code>babel-plugin-transform-nullish-coalescing-operator</code>, <code>babel-plugin-transform-numeric-separator</code>, <code>babel-plugin-transform-object-rest-spread</code>, <code>babel-plugin-transform-optional-catch-binding</code>, <code>babel-plugin-transform-optional-chaining</code>, <code>babel-plugin-transform-private-methods</code>, <code>babel-plugin-transform-private-property-in-object</code>, <code>babel-plugin-transform-regexp-modifiers</code>, <code>babel-plugin-transform-unicode-property-regex</code>, <code>babel-plugin-transform-unicode-sets-regex</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17580">#17580</a> Allow Babel 8 in compatible Babel 7 plugins (<a href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>:running_woman: Performance</h4> <ul> <li><code>babel-plugin-transform-react-jsx</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17555">#17555</a> perf: Use lighter traversal for jsx <code>__source,__self</code> (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>Committers: 7</h4> <ul> <li>Babel Bot (<a href="https://github.com/babel-bot"><code>@​babel-bot</code></a>)</li> <li>Eliot Pontarelli (<a href="https://github.com/kolvian"><code>@​kolvian</code></a>)</li> <li>Huáng Jùnliàng (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> <li>Kadhirash Sivakumar (<a href="https://github.com/kadhirash"><code>@​kadhirash</code></a>)</li> <li>Nicolò Ribaudo (<a href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li> <li><a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a></li> <li>coderaiser (<a href="https://github.com/coderaiser"><code>@​coderaiser</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/blob/main/CHANGELOG.md"><code>@​babel/preset-env</code>'s changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <blockquote> <p><strong>Tags:</strong></p> <ul> <li>:boom: [Breaking Change]</li> <li>:eyeglasses: [Spec Compliance]</li> <li>:rocket: [New Feature]</li> <li>:bug: [Bug Fix]</li> <li>:memo: [Documentation]</li> <li>:house: [Internal]</li> <li>:nail_care: [Polish]</li> </ul> </blockquote> <p><em>Note: Gaps between patch versions are faulty, broken or test releases.</em></p> <p>This file contains the changelog starting from v7.15.0.</p> <ul> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v7.0.0-v7.14.9.md">CHANGELOG - v7.0.0 to v7.14.9</a> for v7.0.0 to v7.14.9 changes.</li> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v7-prereleases.md">CHANGELOG - v7 prereleases</a> for v7.0.0-alpha.1 to v7.0.0-rc.4 changes.</li> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v4.md">CHANGELOG - v4</a>, <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v5.md">CHANGELOG - v5</a>, and <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v6.md">CHANGELOG - v6</a> for v4.x-v6.x changes.</li> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-6to5.md">CHANGELOG - 6to5</a> for the pre-4.0.0 version changelog.</li> <li>See <a href="https://github.com/babel/babel/blob/main/packages/babel-parser/CHANGELOG.md">Babylon's CHANGELOG</a> for the Babylon pre-7.0.0-beta.29 version changelog.</li> <li>See <a href="https://github.com/babel/babel-eslint/releases"><code>babel-eslint</code>'s releases</a> for the changelog before <code>@babel/eslint-parser</code> 7.8.0.</li> <li>See <a href="https://github.com/babel/eslint-plugin-babel/releases"><code>eslint-plugin-babel</code>'s releases</a> for the changelog before <code>@babel/eslint-plugin</code> 7.8.0.</li> </ul> <!-- raw HTML omitted --> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/babel/babel/commit/d7f400889567ae18ef9ac41b024b5120f6060e17"><code>d7f4008</code></a> v7.28.6</li> <li><a href="https://github.com/babel/babel/commit/99dcba5e71de3bd81ce14077cfa5b6df58e9b177"><code>99dcba5</code></a> chore: enable some ts-eslint rules (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env/issues/17592">#17592</a>)</li> <li><a href="https://github.com/babel/babel/commit/c92c4919771105140015167f25f7bacac77c90d9"><code>c92c491</code></a> Improve Unicode handling in code-frame tokenizer (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env/issues/17589">#17589</a>)</li> <li>See full diff in <a href="https://github.com/babel/babel/commits/v7.28.6/packages/babel-preset-env">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ab0aea0 commit 271cf30

File tree

2 files changed

+404
-360
lines changed

2 files changed

+404
-360
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"dependencies": {
1414
"@hotwired/stimulus": "^3.2.2",
1515
"@ministryofjustice/frontend": "^3.7.2",
16-
"@sentry/browser": "10.32.1",
17-
"@rails/actiontext": "^8.1.100",
18-
"@rails/activestorage": "^8.1.100",
16+
"@sentry/browser": "10.33.0",
17+
"@rails/actiontext": "^8.1.200",
18+
"@rails/activestorage": "^8.1.200",
1919
"@stimulus/polyfills": "^2.0.0",
2020
"accessible-autocomplete": "^3.0.1",
2121
"axios": "^1.13.2",
@@ -36,8 +36,8 @@
3636
"trix": "^2.1.16"
3737
},
3838
"devDependencies": {
39-
"@babel/core": "^7.28.5",
40-
"@babel/preset-env": "^7.28.5",
39+
"@babel/core": "^7.28.6",
40+
"@babel/preset-env": "^7.28.6",
4141
"concurrently": "^9.2.1",
4242
"dotenv": "^17.2.3",
4343
"esbuild": "^0.27.2",

0 commit comments

Comments
 (0)