Commit a03ea0e
authored
chore(deps): bump @sentry/browser from 9.14.0 to 10.43.0 (monkeytypegame#7641)
Bumps [@sentry/browser](https://github.com/getsentry/sentry-javascript)
from 9.14.0 to 10.43.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.43.0</h2>
<h3>Important Changes</h3>
<ul>
<li>
<p><strong>feat(nextjs): Add Turbopack support for React component name
annotation (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19604">#19604</a>)</strong></p>
<p>We added experimental support for React component name annotation in
Turbopack builds. When enabled, JSX elements
are annotated with <code>data-sentry-component</code>,
<code>data-sentry-element</code>, and
<code>data-sentry-source-file</code> attributes at build
time. This enables searching Replays by component name, seeing component
names in breadcrumbs, and performance
monitoring — previously only available with webpack builds.</p>
<p>This feature requires Next.js 16+ and is currently behind an
experimental flag:</p>
<pre lang="js"><code>// next.config.ts
import { withSentryConfig } from '@sentry/nextjs';
<p>export default withSentryConfig(nextConfig, {
_experimental: {
turbopackReactComponentAnnotation: {
enabled: true,
ignoredComponents: ['Header', 'Footer'], // optional
},
},
});
</code></pre></p>
</li>
<li>
<p><strong>feat(hono): Instrument middlewares <code>app.use()</code> (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19611">#19611</a>)</strong></p>
<p>Hono middleware registered via <code>app.use()</code> is now
automatically instrumented, creating spans for each middleware
invocation.</p>
</li>
</ul>
<h3>Other Changes</h3>
<ul>
<li>feat(node-core,node): Add <code>tracePropagation</code> option to
http and fetch integrations (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19712">#19712</a>)</li>
<li>feat(hono): Use parametrized names for errors (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19577">#19577</a>)</li>
<li>fix(browser): Fix missing traces for user feedback (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19660">#19660</a>)</li>
<li>fix(cloudflare): Use correct Proxy receiver in
<code>instrumentDurableObjectStorage</code> (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19662">#19662</a>)</li>
<li>fix(core): Standardize Vercel AI span descriptions to align with
GenAI semantic conventions (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19624">#19624</a>)</li>
<li>fix(deps): Bump hono to 4.12.5 to fix multiple vulnerabilities (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19653">#19653</a>)</li>
<li>fix(deps): Bump svgo to 4.0.1 to fix DoS via entity expansion (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19651">#19651</a>)</li>
<li>fix(deps): Bump tar to 7.5.10 to fix hardlink path traversal (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19650">#19650</a>)</li>
<li>fix(nextjs): Align Turbopack module metadata injection with webpack
behavior (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19645">#19645</a>)</li>
<li>fix(node): Prevent duplicate LangChain spans from double module
patching (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19684">#19684</a>)</li>
<li>fix(node-core,vercel-edge): Use HEROKU_BUILD_COMMIT env var for
default release (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19617">#19617</a>)</li>
<li>fix(sveltekit): Fix file system race condition in source map
cleaning (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19714">#19714</a>)</li>
<li>fix(tanstackstart-react): Add workerd and worker export conditions
(<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19461">#19461</a>)</li>
<li>fix(vercel-ai): Prevent tool call span map memory leak (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19328">#19328</a>)</li>
<li>feat(deps): Bump <code>@sentry/rollup-plugin</code> from 5.1.0 to
5.1.1 (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19658">#19658</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.43.0</h2>
<h3>Important Changes</h3>
<ul>
<li>
<p><strong>feat(nextjs): Add Turbopack support for React component name
annotation (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19604">#19604</a>)</strong></p>
<p>We added experimental support for React component name annotation in
Turbopack builds. When enabled, JSX elements
are annotated with <code>data-sentry-component</code>,
<code>data-sentry-element</code>, and
<code>data-sentry-source-file</code> attributes at build
time. This enables searching Replays by component name, seeing component
names in breadcrumbs, and performance
monitoring — previously only available with webpack builds.</p>
<p>This feature requires Next.js 16+ and is currently behind an
experimental flag:</p>
<pre lang="js"><code>// next.config.ts
import { withSentryConfig } from '@sentry/nextjs';
<p>export default withSentryConfig(nextConfig, {
_experimental: {
turbopackReactComponentAnnotation: {
enabled: true,
ignoredComponents: ['Header', 'Footer'], // optional
},
},
});
</code></pre></p>
</li>
<li>
<p><strong>feat(hono): Instrument middlewares <code>app.use()</code> (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19611">#19611</a>)</strong></p>
<p>Hono middleware registered via <code>app.use()</code> is now
automatically instrumented, creating spans for each middleware
invocation.</p>
</li>
</ul>
<h3>Other Changes</h3>
<ul>
<li>feat(node-core,node): Add <code>tracePropagation</code> option to
http and fetch integrations (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19712">#19712</a>)</li>
<li>feat(hono): Use parametrized names for errors (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19577">#19577</a>)</li>
<li>fix(browser): Fix missing traces for user feedback (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19660">#19660</a>)</li>
<li>fix(cloudflare): Use correct Proxy receiver in
<code>instrumentDurableObjectStorage</code> (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19662">#19662</a>)</li>
<li>fix(core): Standardize Vercel AI span descriptions to align with
GenAI semantic conventions (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19624">#19624</a>)</li>
<li>fix(deps): Bump hono to 4.12.5 to fix multiple vulnerabilities (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19653">#19653</a>)</li>
<li>fix(deps): Bump svgo to 4.0.1 to fix DoS via entity expansion (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19651">#19651</a>)</li>
<li>fix(deps): Bump tar to 7.5.10 to fix hardlink path traversal (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19650">#19650</a>)</li>
<li>fix(nextjs): Align Turbopack module metadata injection with webpack
behavior (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19645">#19645</a>)</li>
<li>fix(node): Prevent duplicate LangChain spans from double module
patching (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19684">#19684</a>)</li>
<li>fix(node-core,vercel-edge): Use HEROKU_BUILD_COMMIT env var for
default release (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19617">#19617</a>)</li>
<li>fix(sveltekit): Fix file system race condition in source map
cleaning (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19714">#19714</a>)</li>
<li>fix(tanstackstart-react): Add workerd and worker export conditions
(<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19461">#19461</a>)</li>
<li>fix(vercel-ai): Prevent tool call span map memory leak (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19328">#19328</a>)</li>
<li>feat(deps): Bump <code>@sentry/rollup-plugin</code> from 5.1.0 to
5.1.1 (<a
href="https://redirect.github.com/getsentry/sentry-javascript/pull/19658">#19658</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/3fb81024b49e620b1870025ae71dbeb65fcfcb3b"><code>3fb8102</code></a>
release: 10.43.0</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/8706e4ea1004bc11c61952e740ffe40230e13d8a"><code>8706e4e</code></a>
Merge pull request <a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/19716">#19716</a>
from getsentry/prepare-release/10.43.0</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/61d7a847f5dca3a2380bfcd3b78dc208095fd464"><code>61d7a84</code></a>
meta(changelog): Update changelog for 10.43.0</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/f83f288ada95784d6e159dc0687c5553a9f6bf0e"><code>f83f288</code></a>
test(angular): Fix failing canary test (<a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/19639">#19639</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/2b3ce347678d286d75c5d8c1c17056c879222490"><code>2b3ce34</code></a>
fix(sveltekit): Fix file system race condition in source map cleaning
(<a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/19714">#19714</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/98be6b0ab6e6afe9d37848131da08adf908cde30"><code>98be6b0</code></a>
chore(skills): Add <code>bump-size-limit</code> skill (<a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/19715">#19715</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/cdee7a95fc10b352c6679585d8e9d0bb4ab15ea9"><code>cdee7a9</code></a>
chore(sourcemaps): Make sourcemaps e2e test more generic (<a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/19678">#19678</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/b26df86ee35073b30becba404e822c049c36781f"><code>b26df86</code></a>
feat(node-core,node): Add tracePropagation option to http and fetch
integrati...</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/7b69774bbe363e7361dbcdca4adab5ed9ac36416"><code>7b69774</code></a>
chore(ci): Allow triage action to run on issues from external users (<a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/19701">#19701</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript/commit/5651be2d02f2bd3a23afb00a1becd093a920fe0f"><code>5651be2</code></a>
fix(browser): Fix missing traces for user feedback (<a
href="https://redirect.github.com/getsentry/sentry-javascript/issues/19660">#19660</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/getsentry/sentry-javascript/compare/9.14.0...10.43.0">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent c460647 commit a03ea0e
2 files changed
Lines changed: 32 additions & 32 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
33 | | - | |
| 33 | + | |
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments