meta(changelog): Update changelog for 10.35.0 - #18886

Merged
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0
Jan 19, 2026
Merged

meta(changelog): Update changelog for 10.35.0#18886
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0

Conversation

@JPeer264

Copy link
Copy Markdown
Member

No description provided.

github-actionsBotand others added 22 commits January 14, 2026 17:08
[Gitflow] Merge master into develop
This PR adds `ignored` as a new allowed client report discard reason.
The new reason can already be used (see
[ticket](https://linear.app/getsentry/issue/FE-678/add-new-ignore-discard-reason-for-client-reports)
for details). Technically, we only need it right now for span-first to
record `ignoreSpans` hits. But this reason also meant for more telemetry
types, so we can merge it into develop already.
This is only a temporary solution for LangChain v1 tests. LangChain
changed the way they handle internal API errors occurring during gen_ai
spans. For now, we’ll comment this out to unblock CI, then circle back
with a proper solution.
Ticket (TBD):
https://linear.app/getsentry/issue/JS-1477/fix-internal-error-tests-for-langchain-v1
…8823)
Resolves an issue where spans weren’t being processed because v6 emits
spans with a "default" name. We now validate using both the span name
(v5) and the operation ID (v6).
Closes#18824 (added automatically)
…18829)
Before submitting a pull request, please take a look at our
[Contributing](https://github.com/getsentry/sentry-javascript/blob/master/CONTRIBUTING.md)
guidelines and verify:
- [ ] If you've added code that should be tested, please add tests.
- [ ] Ensure your code lints and the test suite passes (`yarn lint`) &
(`yarn test`).
- [ ] Link an issue if there is one related to your pull request. If no
issue is linked, one will be auto-generated and linked.
Closes #issue_link_here
Closes#18830 (added automatically)
Bumps our dev dependency sveltekit version to the latest version in
light of
GHSA-j2f3-wq62-6q46.
To be clear, this package is only used a dev dependency, so it wasn't
shipped in our SvelteKit SDK NPM package.
Closes#18849 (added automatically)
Bumps affected sveltekit and node adapter versions in our e2e test apps.
Also took the opportunity to pin two `^` version ranges to the specific
latest version
| File | Package | Old Version | New Version |
| ----------------------------------------- | ------------------------ |
----------- | ----------- |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/kit` | `2.31.0` |
`2.49.5` |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/adapter-node` |
`^5.3.1` | `5.5.1` |
| `sveltekit-2-svelte-5/package.json` | `@sveltejs/kit` | `2.41.0` |
`2.49.5` |
| `sveltekit-2/package.json` | `@sveltejs/kit` | `2.21.3` | `2.49.5` |
| `sveltekit-cloudflare-pages/package.json` | `@sveltejs/kit` |
`^2.21.3` | `2.49.5` |
Closes#18851 (added automatically)
This PR adds the external contributor to the CHANGELOG.md file, so that
they are credited for their contribution. See #18858
Co-authored-by: andreiborza <168741329+andreiborza@users.noreply.github.com>
…cs` (#18785)
closes#18783
ref #16314
Note that metrics were bundled into the base config and will be moved
into this bundle starting with v11 (ref
#18583)
…age automatic source map uploads (#18712)
Adds sentryTanstackStart Vite plugin to enable automatic source map
uploads in TanStack Start applications.
**What it does**
I tried to align with what we do in other SDKs (e.g. SvelteKit). On a
high-level it:
- Uploads source maps to Sentry using @sentry/vite-plugin if configured,
passing through all options set by the user (including release,
sourcemaps, headers, etc.)
- If the source maps option is not defined and also the files to delete
option is not defined, we enable cleaning up all .map files after the
source map upload
- If the source map configuration is undefined, we additionally enable
hidden source map generation
**Usage**
```
// vite.config.ts
import { defineConfig } from 'vite';
import { sentryTanstackStart } from '@sentry/tanstackstart-react';
import { tanstackStart } from '@tanstack/react-start/plugin/vite';
export default defineConfig({
plugins: [
sentryTanstackStart({
authToken: process.env.SENTRY_AUTH_TOKEN,
org: 'my-org',
project: 'my-project',
}),
tanstackStart(),
],
});
```
**Tests**
- Added unit tests for sourceMaps.ts and sentryTanstackStart.ts covering
plugin composition, options passing, and source map settings logic
- Updated the E2E test to use the new plugin pattern
Closes#18664
Adds a shim for the `logger` namespace since we'll soon ship the logs
bundle in the loader and want to avoid breaking user apps when they
switch back to a bundle that does not include logs
closes#18826
When injecting tracing headers into fetch requests, the SDK was mutating
the user's original options object. This caused issues when users reused
config objects across requests or when the object was frozen (e.g., from
Immer's `produce()`), leading to silent failures. This change shallow
clones the options object before modifying it, ensuring the original
remains unchanged while still properly injecting the `sentry-trace` and
`baggage` headers.
Closes#18828
…ts/test-applications/cloudflare-hono (#18806)
Bumps [hono](https://github.com/honojs/hono) from 4.10.3 to 4.11.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/honojs/hono/releases">hono's
releases</a>.</em></p>
<blockquote>
<h2>v4.11.4</h2>
<h2>Security</h2>
<p>Fixed a JWT algorithm confusion issue in the JWT and JWK/JWKS
middleware.</p>
<p>Both middlewares now require an explicit algorithm configuration to
prevent the verification algorithm from being influenced by untrusted
JWT header values.</p>
<p>If you are using the JWT or JWK/JWKS middleware, please update to the
latest version as soon as possible.</p>
<h3>JWT middleware</h3>
<pre lang="ts"><code>import { jwt } from 'hono/jwt'
<p>app.use(
'/auth/*',
jwt({
secret: 'it-is-very-secret',
alg: 'HS256', // required
})
)
</code></pre></p>
<h3>JWK/JWKS middleware</h3>
<pre lang="ts"><code>import { jwk } from 'hono/jwk'
<p>app.use(
'/auth/*',
jwk({
jwks_uri: '<a
href="https://example.com/.well-known/jwks.json">https://example.com/.well-known/jwks.json</a>',
alg: ['RS256'], // required (asymmetric algorithms only)
})
)
</code></pre></p>
<p>For more details, see the Security Advisory.</p>
<ul>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4">https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4</a></li>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4">https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4</a></li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>test(utils/jwt): add missing algorithm types in jwa.test.ts by <a
href="https://github.com/flathill404"><code>@​flathill404</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
<li>chore: bump <code>@hono/eslint-config</code> and enable curly rule
by <a href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4620">honojs/hono#4620</a></li>
<li>docs(bun/websocket): Fixed a typo in hono/bun deprecation message
and updated test. by <a
href="https://github.com/Itsnotaka"><code>@​Itsnotaka</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4618">honojs/hono#4618</a></li>
<li>test: support <code>alg</code> option for JWT middleware by <a
href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4624">honojs/hono#4624</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/flathill404"><code>@​flathill404</code></a>
made their first contribution in <a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/honojs/hono/commit/28452f06319ef12df94b826450f36486e286565d"><code>28452f0</code></a>
4.11.4</li>
<li><a
href="https://github.com/honojs/hono/commit/190f6e28e2ca85ce3d1f2f54db1310f5f3eab134"><code>190f6e2</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/a48ef183d46c95053003dba4f107f95b5c637ffd"><code>a48ef18</code></a>
test: support <code>alg</code> option for JWT middleware (<a
href="https://redirect.github.com/honojs/hono/issues/4624">#4624</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/cc0aa7ae327ed84cc391d29086dec2a3e44e7a1f"><code>cc0aa7a</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/ef2a4b8d77711c9308a6ddca9e35d4ff321f97fe"><code>ef2a4b8</code></a>
docs(bun/websocket): Fixed a typo in hono/bun deprecation message and
updated...</li>
<li><a
href="https://github.com/honojs/hono/commit/8139399f68e3f3f60adffee0c49630d34310a361"><code>8139399</code></a>
chore: bump <code>@hono/eslint-config</code> and enable curly rule (<a
href="https://redirect.github.com/honojs/hono/issues/4620">#4620</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/4e872759b092e34458aeecb8b72e3e0c4d4f1784"><code>4e87275</code></a>
test(utils/jwt): add missing algorithm types in jwa.test.ts (<a
href="https://redirect.github.com/honojs/hono/issues/4606">#4606</a>)
(<a
href="https://redirect.github.com/honojs/hono/issues/4607">#4607</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/79977401a0c97122999464f47bd383a2959532fd"><code>7997740</code></a>
4.11.3</li>
<li><a
href="https://github.com/honojs/hono/commit/489af0b0825fa85e8b15f4659204bf622e0573b9"><code>489af0b</code></a>
fix(types): fix middleware union type merging in MergeMiddlewareResponse
(<a
href="https://redirect.github.com/honojs/hono/issues/4602">#4602</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/6ca01ec69b17c56f84fccd866702f7f999332030"><code>6ca01ec</code></a>
4.11.2</li>
<li>Additional commits viewable in <a
href="https://github.com/honojs/hono/compare/v4.10.3...v4.11.4">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hono&package-manager=npm_and_yarn&previous-version=4.10.3&new-version=4.11.4)](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 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 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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/getsentry/sentry-javascript/network/alerts).
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…TADATA is enabled (#18855)
The `CF_VERSION_METADATA` only has one reason - to add the release id.
Since we already set the release when `SENTRY_RELEASE` is enabled
automatically, we can do the same for `CF_VERSION_METADATA`. The docs
will then also be updated to state how the release id can be set in
different ways: getsentry/sentry-docs#16006Closes#18856 (added automatically)
Closes
[JS-1489](https://linear.app/getsentry/issue/JS-1489/featcloudflare-automatically-set-the-release-id-when-cf-version)
closes
[FE-681](https://linear.app/getsentry/issue/FE-681/senddefaultpii-sets-cloudflare-worker-ip-instead-of-the-one-from-the)
It seems that in some cases the headers do have a different casing. E.g.
in Cloudflare Workers the
`[CF-Connecting-IP](https://developers.cloudflare.com/fundamentals/reference/http-headers/#cf-connecting-ip)`
is actually send as `Cf-Connecting-Ip`.
<img width="635" height="223" alt="Screenshot 2026-01-19 at 13 15 27"
src="https://github.com/user-attachments/assets/e427e10d-35b7-4743-980c-3ff0d5cc1d51"
/>
According to [RFC7540
8.1.2](https://www.rfc-editor.org/rfc/rfc7540#section-8.1.2) the headers
are case-insensitive, but for HTTP2 they must be lowercase. So
theoretically this would fix also HTTP2 lower case headers
@JPeer264JPeer264 self-assigned this Jan 19, 2026
@JPeer264
JPeer264 changed the base branch from develop to masterJanuary 19, 2026 13:19
Comment threadCHANGELOG.md Outdated

@nicohrubecnicohrubec left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

Comment threadCHANGELOG.md
@JPeer264
JPeer264force-pushed the prepare-release/10.35.0 branch from 5c9ab95 to 8160adaCompareJanuary 19, 2026 13:30

@andreiborzaandreiborza left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@github-actions

Copy link
Copy Markdown
Contributor

size-limit report 📦

PathSize% ChangeChange
@sentry/browser25.11 kBaddedadded
@sentry/browser - with treeshaking flags23.61 kBaddedadded
@sentry/browser (incl. Tracing)41.87 kBaddedadded
@sentry/browser (incl. Tracing, Profiling)46.45 kBaddedadded
@sentry/browser (incl. Tracing, Replay)80.47 kBaddedadded
@sentry/browser (incl. Tracing, Replay) - with treeshaking flags70.16 kBaddedadded
@sentry/browser (incl. Tracing, Replay with Canvas)85.17 kBaddedadded
@sentry/browser (incl. Tracing, Replay, Feedback)97.37 kBaddedadded
@sentry/browser (incl. Feedback)41.83 kBaddedadded
@sentry/browser (incl. sendFeedback)29.79 kBaddedadded
@sentry/browser (incl. FeedbackAsync)34.79 kBaddedadded
@sentry/browser (incl. Metrics)26.21 kBaddedadded
@sentry/browser (incl. Logs)26.37 kBaddedadded
@sentry/browser (incl. Metrics & Logs)27.02 kBaddedadded
@sentry/react26.84 kBaddedadded
@sentry/react (incl. Tracing)44.09 kBaddedadded
@sentry/vue29.56 kBaddedadded
@sentry/vue (incl. Tracing)43.67 kBaddedadded
@sentry/svelte25.12 kBaddedadded
CDN Bundle27.67 kBaddedadded
CDN Bundle (incl. Tracing)42.67 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics)43.5 kBaddedadded
CDN Bundle (incl. Tracing, Replay)79.37 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback)84.81 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics)85.72 kBaddedadded
CDN Bundle - uncompressed81.08 kBaddedadded
CDN Bundle (incl. Tracing) - uncompressed126.5 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics) - uncompressed129.33 kBaddedadded
CDN Bundle (incl. Tracing, Replay) - uncompressed243.03 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed255.83 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) - uncompressed258.64 kBaddedadded
@sentry/nextjs (client)46.44 kBaddedadded
@sentry/sveltekit (client)42.25 kBaddedadded
@sentry/node-core51.94 kBaddedadded
@sentry/node162.19 kBaddedadded
@sentry/node - without tracing93.35 kBaddedadded
@sentry/aws-serverless108.85 kBaddedadded

@github-actions

Copy link
Copy Markdown
Contributor

node-overhead report 🧳

Note: This is a synthetic benchmark with a minimal express app and does not necessarily reflect the real-world performance impact in an application.

ScenarioRequests/s% of BaselinePrev. Requests/sChange %
GET Baseline8,919--added
GET With Sentry1,68319%-added
GET With Sentry (error only)6,14769%-added
POST Baseline1,214--added
POST With Sentry59549%-added
POST With Sentry (error only)1,05187%-added
MYSQL Baseline3,367--added
MYSQL With Sentry51015%-added
MYSQL With Sentry (error only)2,75182%-added

@JPeer264
JPeer264 enabled auto-merge January 19, 2026 13:42
@JPeer264
JPeer264 merged commit 024f819 into masterJan 19, 2026
407 of 410 checks passed
@JPeer264
JPeer264 deleted the prepare-release/10.35.0 branch January 19, 2026 13:47
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants

@JPeer264@nicohrubec@RulaKhaled@andreiborza@Lms24@chargome@oioki@rreckonerr@s1gr1d
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Add copy buttons to all \u003cpre\u003e\u003ccode\u003e blocks\n(function() {\n function addCopyButtons() {\n document.querySelectorAll('pre code').forEach(function(codeBlock) {\n if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;\n codeBlock.parentElement.setAttribute('data-copy-added', 'true');\n \n var btn = document.createElement('button');\n btn.textContent = 'Copy';\n btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';\n btn.onmouseover = function() { this.style.opacity = '1'; };\n btn.onmouseout = function() { this.style.opacity = '0.7'; };\n btn.onclick = function() {\n navigator.clipboard.writeText(codeBlock.textContent).then(function() {\n btn.textContent = 'Copied!';\n setTimeout(function() { btn.textContent = 'Copy'; }, 1500);\n });\n };\n codeBlock.parentElement.style.position = 'relative';\n codeBlock.parentElement.appendChild(btn);\n });\n }\n \n addCopyButtons();\n \n // Re-run on dynamic content\n var observer = new MutationObserver(addCopyButtons);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Add Copy Buttons to Code Blocks"); } } catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); } })(); (function(){ try { var __m = "github.com"; var __re = new RegExp('^' + "github\\.com" + '
Skip to content

meta(changelog): Update changelog for 10.35.0 - #18886

Merged
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0
Jan 19, 2026
Merged

meta(changelog): Update changelog for 10.35.0#18886
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0

Conversation

@JPeer264

Copy link
Copy Markdown
Member

No description provided.

github-actionsBotand others added 22 commits January 14, 2026 17:08
[Gitflow] Merge master into develop
This PR adds `ignored` as a new allowed client report discard reason.
The new reason can already be used (see
[ticket](https://linear.app/getsentry/issue/FE-678/add-new-ignore-discard-reason-for-client-reports)
for details). Technically, we only need it right now for span-first to
record `ignoreSpans` hits. But this reason also meant for more telemetry
types, so we can merge it into develop already.
This is only a temporary solution for LangChain v1 tests. LangChain
changed the way they handle internal API errors occurring during gen_ai
spans. For now, we’ll comment this out to unblock CI, then circle back
with a proper solution.
Ticket (TBD):
https://linear.app/getsentry/issue/JS-1477/fix-internal-error-tests-for-langchain-v1
…8823)
Resolves an issue where spans weren’t being processed because v6 emits
spans with a "default" name. We now validate using both the span name
(v5) and the operation ID (v6).
Closes#18824 (added automatically)
…18829)
Before submitting a pull request, please take a look at our
[Contributing](https://github.com/getsentry/sentry-javascript/blob/master/CONTRIBUTING.md)
guidelines and verify:
- [ ] If you've added code that should be tested, please add tests.
- [ ] Ensure your code lints and the test suite passes (`yarn lint`) &
(`yarn test`).
- [ ] Link an issue if there is one related to your pull request. If no
issue is linked, one will be auto-generated and linked.
Closes #issue_link_here
Closes#18830 (added automatically)
Bumps our dev dependency sveltekit version to the latest version in
light of
GHSA-j2f3-wq62-6q46.
To be clear, this package is only used a dev dependency, so it wasn't
shipped in our SvelteKit SDK NPM package.
Closes#18849 (added automatically)
Bumps affected sveltekit and node adapter versions in our e2e test apps.
Also took the opportunity to pin two `^` version ranges to the specific
latest version
| File | Package | Old Version | New Version |
| ----------------------------------------- | ------------------------ |
----------- | ----------- |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/kit` | `2.31.0` |
`2.49.5` |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/adapter-node` |
`^5.3.1` | `5.5.1` |
| `sveltekit-2-svelte-5/package.json` | `@sveltejs/kit` | `2.41.0` |
`2.49.5` |
| `sveltekit-2/package.json` | `@sveltejs/kit` | `2.21.3` | `2.49.5` |
| `sveltekit-cloudflare-pages/package.json` | `@sveltejs/kit` |
`^2.21.3` | `2.49.5` |
Closes#18851 (added automatically)
This PR adds the external contributor to the CHANGELOG.md file, so that
they are credited for their contribution. See #18858
Co-authored-by: andreiborza <168741329+andreiborza@users.noreply.github.com>
…cs` (#18785)
closes#18783
ref #16314
Note that metrics were bundled into the base config and will be moved
into this bundle starting with v11 (ref
#18583)
…age automatic source map uploads (#18712)
Adds sentryTanstackStart Vite plugin to enable automatic source map
uploads in TanStack Start applications.
**What it does**
I tried to align with what we do in other SDKs (e.g. SvelteKit). On a
high-level it:
- Uploads source maps to Sentry using @sentry/vite-plugin if configured,
passing through all options set by the user (including release,
sourcemaps, headers, etc.)
- If the source maps option is not defined and also the files to delete
option is not defined, we enable cleaning up all .map files after the
source map upload
- If the source map configuration is undefined, we additionally enable
hidden source map generation
**Usage**
```
// vite.config.ts
import { defineConfig } from 'vite';
import { sentryTanstackStart } from '@sentry/tanstackstart-react';
import { tanstackStart } from '@tanstack/react-start/plugin/vite';
export default defineConfig({
plugins: [
sentryTanstackStart({
authToken: process.env.SENTRY_AUTH_TOKEN,
org: 'my-org',
project: 'my-project',
}),
tanstackStart(),
],
});
```
**Tests**
- Added unit tests for sourceMaps.ts and sentryTanstackStart.ts covering
plugin composition, options passing, and source map settings logic
- Updated the E2E test to use the new plugin pattern
Closes#18664
Adds a shim for the `logger` namespace since we'll soon ship the logs
bundle in the loader and want to avoid breaking user apps when they
switch back to a bundle that does not include logs
closes#18826
When injecting tracing headers into fetch requests, the SDK was mutating
the user's original options object. This caused issues when users reused
config objects across requests or when the object was frozen (e.g., from
Immer's `produce()`), leading to silent failures. This change shallow
clones the options object before modifying it, ensuring the original
remains unchanged while still properly injecting the `sentry-trace` and
`baggage` headers.
Closes#18828
…ts/test-applications/cloudflare-hono (#18806)
Bumps [hono](https://github.com/honojs/hono) from 4.10.3 to 4.11.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/honojs/hono/releases">hono's
releases</a>.</em></p>
<blockquote>
<h2>v4.11.4</h2>
<h2>Security</h2>
<p>Fixed a JWT algorithm confusion issue in the JWT and JWK/JWKS
middleware.</p>
<p>Both middlewares now require an explicit algorithm configuration to
prevent the verification algorithm from being influenced by untrusted
JWT header values.</p>
<p>If you are using the JWT or JWK/JWKS middleware, please update to the
latest version as soon as possible.</p>
<h3>JWT middleware</h3>
<pre lang="ts"><code>import { jwt } from 'hono/jwt'
<p>app.use(
'/auth/*',
jwt({
secret: 'it-is-very-secret',
alg: 'HS256', // required
})
)
</code></pre></p>
<h3>JWK/JWKS middleware</h3>
<pre lang="ts"><code>import { jwk } from 'hono/jwk'
<p>app.use(
'/auth/*',
jwk({
jwks_uri: '<a
href="https://example.com/.well-known/jwks.json">https://example.com/.well-known/jwks.json</a>',
alg: ['RS256'], // required (asymmetric algorithms only)
})
)
</code></pre></p>
<p>For more details, see the Security Advisory.</p>
<ul>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4">https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4</a></li>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4">https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4</a></li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>test(utils/jwt): add missing algorithm types in jwa.test.ts by <a
href="https://github.com/flathill404"><code>@​flathill404</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
<li>chore: bump <code>@hono/eslint-config</code> and enable curly rule
by <a href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4620">honojs/hono#4620</a></li>
<li>docs(bun/websocket): Fixed a typo in hono/bun deprecation message
and updated test. by <a
href="https://github.com/Itsnotaka"><code>@​Itsnotaka</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4618">honojs/hono#4618</a></li>
<li>test: support <code>alg</code> option for JWT middleware by <a
href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4624">honojs/hono#4624</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/flathill404"><code>@​flathill404</code></a>
made their first contribution in <a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/honojs/hono/commit/28452f06319ef12df94b826450f36486e286565d"><code>28452f0</code></a>
4.11.4</li>
<li><a
href="https://github.com/honojs/hono/commit/190f6e28e2ca85ce3d1f2f54db1310f5f3eab134"><code>190f6e2</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/a48ef183d46c95053003dba4f107f95b5c637ffd"><code>a48ef18</code></a>
test: support <code>alg</code> option for JWT middleware (<a
href="https://redirect.github.com/honojs/hono/issues/4624">#4624</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/cc0aa7ae327ed84cc391d29086dec2a3e44e7a1f"><code>cc0aa7a</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/ef2a4b8d77711c9308a6ddca9e35d4ff321f97fe"><code>ef2a4b8</code></a>
docs(bun/websocket): Fixed a typo in hono/bun deprecation message and
updated...</li>
<li><a
href="https://github.com/honojs/hono/commit/8139399f68e3f3f60adffee0c49630d34310a361"><code>8139399</code></a>
chore: bump <code>@hono/eslint-config</code> and enable curly rule (<a
href="https://redirect.github.com/honojs/hono/issues/4620">#4620</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/4e872759b092e34458aeecb8b72e3e0c4d4f1784"><code>4e87275</code></a>
test(utils/jwt): add missing algorithm types in jwa.test.ts (<a
href="https://redirect.github.com/honojs/hono/issues/4606">#4606</a>)
(<a
href="https://redirect.github.com/honojs/hono/issues/4607">#4607</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/79977401a0c97122999464f47bd383a2959532fd"><code>7997740</code></a>
4.11.3</li>
<li><a
href="https://github.com/honojs/hono/commit/489af0b0825fa85e8b15f4659204bf622e0573b9"><code>489af0b</code></a>
fix(types): fix middleware union type merging in MergeMiddlewareResponse
(<a
href="https://redirect.github.com/honojs/hono/issues/4602">#4602</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/6ca01ec69b17c56f84fccd866702f7f999332030"><code>6ca01ec</code></a>
4.11.2</li>
<li>Additional commits viewable in <a
href="https://github.com/honojs/hono/compare/v4.10.3...v4.11.4">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hono&package-manager=npm_and_yarn&previous-version=4.10.3&new-version=4.11.4)](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 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 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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/getsentry/sentry-javascript/network/alerts).
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…TADATA is enabled (#18855)
The `CF_VERSION_METADATA` only has one reason - to add the release id.
Since we already set the release when `SENTRY_RELEASE` is enabled
automatically, we can do the same for `CF_VERSION_METADATA`. The docs
will then also be updated to state how the release id can be set in
different ways: getsentry/sentry-docs#16006Closes#18856 (added automatically)
Closes
[JS-1489](https://linear.app/getsentry/issue/JS-1489/featcloudflare-automatically-set-the-release-id-when-cf-version)
closes
[FE-681](https://linear.app/getsentry/issue/FE-681/senddefaultpii-sets-cloudflare-worker-ip-instead-of-the-one-from-the)
It seems that in some cases the headers do have a different casing. E.g.
in Cloudflare Workers the
`[CF-Connecting-IP](https://developers.cloudflare.com/fundamentals/reference/http-headers/#cf-connecting-ip)`
is actually send as `Cf-Connecting-Ip`.
<img width="635" height="223" alt="Screenshot 2026-01-19 at 13 15 27"
src="https://github.com/user-attachments/assets/e427e10d-35b7-4743-980c-3ff0d5cc1d51"
/>
According to [RFC7540
8.1.2](https://www.rfc-editor.org/rfc/rfc7540#section-8.1.2) the headers
are case-insensitive, but for HTTP2 they must be lowercase. So
theoretically this would fix also HTTP2 lower case headers
@JPeer264JPeer264 self-assigned this Jan 19, 2026
@JPeer264
JPeer264 changed the base branch from develop to masterJanuary 19, 2026 13:19
Comment threadCHANGELOG.md Outdated

@nicohrubecnicohrubec left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

Comment threadCHANGELOG.md
@JPeer264
JPeer264force-pushed the prepare-release/10.35.0 branch from 5c9ab95 to 8160adaCompareJanuary 19, 2026 13:30

@andreiborzaandreiborza left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@github-actions

Copy link
Copy Markdown
Contributor

size-limit report 📦

PathSize% ChangeChange
@sentry/browser25.11 kBaddedadded
@sentry/browser - with treeshaking flags23.61 kBaddedadded
@sentry/browser (incl. Tracing)41.87 kBaddedadded
@sentry/browser (incl. Tracing, Profiling)46.45 kBaddedadded
@sentry/browser (incl. Tracing, Replay)80.47 kBaddedadded
@sentry/browser (incl. Tracing, Replay) - with treeshaking flags70.16 kBaddedadded
@sentry/browser (incl. Tracing, Replay with Canvas)85.17 kBaddedadded
@sentry/browser (incl. Tracing, Replay, Feedback)97.37 kBaddedadded
@sentry/browser (incl. Feedback)41.83 kBaddedadded
@sentry/browser (incl. sendFeedback)29.79 kBaddedadded
@sentry/browser (incl. FeedbackAsync)34.79 kBaddedadded
@sentry/browser (incl. Metrics)26.21 kBaddedadded
@sentry/browser (incl. Logs)26.37 kBaddedadded
@sentry/browser (incl. Metrics & Logs)27.02 kBaddedadded
@sentry/react26.84 kBaddedadded
@sentry/react (incl. Tracing)44.09 kBaddedadded
@sentry/vue29.56 kBaddedadded
@sentry/vue (incl. Tracing)43.67 kBaddedadded
@sentry/svelte25.12 kBaddedadded
CDN Bundle27.67 kBaddedadded
CDN Bundle (incl. Tracing)42.67 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics)43.5 kBaddedadded
CDN Bundle (incl. Tracing, Replay)79.37 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback)84.81 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics)85.72 kBaddedadded
CDN Bundle - uncompressed81.08 kBaddedadded
CDN Bundle (incl. Tracing) - uncompressed126.5 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics) - uncompressed129.33 kBaddedadded
CDN Bundle (incl. Tracing, Replay) - uncompressed243.03 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed255.83 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) - uncompressed258.64 kBaddedadded
@sentry/nextjs (client)46.44 kBaddedadded
@sentry/sveltekit (client)42.25 kBaddedadded
@sentry/node-core51.94 kBaddedadded
@sentry/node162.19 kBaddedadded
@sentry/node - without tracing93.35 kBaddedadded
@sentry/aws-serverless108.85 kBaddedadded

@github-actions

Copy link
Copy Markdown
Contributor

node-overhead report 🧳

Note: This is a synthetic benchmark with a minimal express app and does not necessarily reflect the real-world performance impact in an application.

ScenarioRequests/s% of BaselinePrev. Requests/sChange %
GET Baseline8,919--added
GET With Sentry1,68319%-added
GET With Sentry (error only)6,14769%-added
POST Baseline1,214--added
POST With Sentry59549%-added
POST With Sentry (error only)1,05187%-added
MYSQL Baseline3,367--added
MYSQL With Sentry51015%-added
MYSQL With Sentry (error only)2,75182%-added

@JPeer264
JPeer264 enabled auto-merge January 19, 2026 13:42
@JPeer264
JPeer264 merged commit 024f819 into masterJan 19, 2026
407 of 410 checks passed
@JPeer264
JPeer264 deleted the prepare-release/10.35.0 branch January 19, 2026 13:47
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants

@JPeer264@nicohrubec@RulaKhaled@andreiborza@Lms24@chargome@oioki@rreckonerr@s1gr1d
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Force GitHub README to respect dark mode\n(function() {\n var style = document.createElement('style');\n style.textContent = '\n .markdown-body {\n color-scheme: dark light;\n }\n .markdown-body pre { background: #161b22 !important; }\n .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; }\n .markdown-body table th, .markdown-body table td { border-color: #30363d !important; }\n .markdown-body img { background: #0d1117; }\n .markdown-body blockquote { border-left-color: #8b949e; }\n .markdown-body hr { border-color: #30363d; }\n ';\n document.head.appendChild(style);\n})();", "GitHub Dark Mode README Fix"); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

meta(changelog): Update changelog for 10.35.0 - #18886

Merged
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0
Jan 19, 2026
Merged

meta(changelog): Update changelog for 10.35.0#18886
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0

Conversation

@JPeer264

Copy link
Copy Markdown
Member

No description provided.

github-actionsBotand others added 22 commits January 14, 2026 17:08
[Gitflow] Merge master into develop
This PR adds `ignored` as a new allowed client report discard reason.
The new reason can already be used (see
[ticket](https://linear.app/getsentry/issue/FE-678/add-new-ignore-discard-reason-for-client-reports)
for details). Technically, we only need it right now for span-first to
record `ignoreSpans` hits. But this reason also meant for more telemetry
types, so we can merge it into develop already.
This is only a temporary solution for LangChain v1 tests. LangChain
changed the way they handle internal API errors occurring during gen_ai
spans. For now, we’ll comment this out to unblock CI, then circle back
with a proper solution.
Ticket (TBD):
https://linear.app/getsentry/issue/JS-1477/fix-internal-error-tests-for-langchain-v1
…8823)
Resolves an issue where spans weren’t being processed because v6 emits
spans with a "default" name. We now validate using both the span name
(v5) and the operation ID (v6).
Closes#18824 (added automatically)
…18829)
Before submitting a pull request, please take a look at our
[Contributing](https://github.com/getsentry/sentry-javascript/blob/master/CONTRIBUTING.md)
guidelines and verify:
- [ ] If you've added code that should be tested, please add tests.
- [ ] Ensure your code lints and the test suite passes (`yarn lint`) &
(`yarn test`).
- [ ] Link an issue if there is one related to your pull request. If no
issue is linked, one will be auto-generated and linked.
Closes #issue_link_here
Closes#18830 (added automatically)
Bumps our dev dependency sveltekit version to the latest version in
light of
GHSA-j2f3-wq62-6q46.
To be clear, this package is only used a dev dependency, so it wasn't
shipped in our SvelteKit SDK NPM package.
Closes#18849 (added automatically)
Bumps affected sveltekit and node adapter versions in our e2e test apps.
Also took the opportunity to pin two `^` version ranges to the specific
latest version
| File | Package | Old Version | New Version |
| ----------------------------------------- | ------------------------ |
----------- | ----------- |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/kit` | `2.31.0` |
`2.49.5` |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/adapter-node` |
`^5.3.1` | `5.5.1` |
| `sveltekit-2-svelte-5/package.json` | `@sveltejs/kit` | `2.41.0` |
`2.49.5` |
| `sveltekit-2/package.json` | `@sveltejs/kit` | `2.21.3` | `2.49.5` |
| `sveltekit-cloudflare-pages/package.json` | `@sveltejs/kit` |
`^2.21.3` | `2.49.5` |
Closes#18851 (added automatically)
This PR adds the external contributor to the CHANGELOG.md file, so that
they are credited for their contribution. See #18858
Co-authored-by: andreiborza <168741329+andreiborza@users.noreply.github.com>
…cs` (#18785)
closes#18783
ref #16314
Note that metrics were bundled into the base config and will be moved
into this bundle starting with v11 (ref
#18583)
…age automatic source map uploads (#18712)
Adds sentryTanstackStart Vite plugin to enable automatic source map
uploads in TanStack Start applications.
**What it does**
I tried to align with what we do in other SDKs (e.g. SvelteKit). On a
high-level it:
- Uploads source maps to Sentry using @sentry/vite-plugin if configured,
passing through all options set by the user (including release,
sourcemaps, headers, etc.)
- If the source maps option is not defined and also the files to delete
option is not defined, we enable cleaning up all .map files after the
source map upload
- If the source map configuration is undefined, we additionally enable
hidden source map generation
**Usage**
```
// vite.config.ts
import { defineConfig } from 'vite';
import { sentryTanstackStart } from '@sentry/tanstackstart-react';
import { tanstackStart } from '@tanstack/react-start/plugin/vite';
export default defineConfig({
plugins: [
sentryTanstackStart({
authToken: process.env.SENTRY_AUTH_TOKEN,
org: 'my-org',
project: 'my-project',
}),
tanstackStart(),
],
});
```
**Tests**
- Added unit tests for sourceMaps.ts and sentryTanstackStart.ts covering
plugin composition, options passing, and source map settings logic
- Updated the E2E test to use the new plugin pattern
Closes#18664
Adds a shim for the `logger` namespace since we'll soon ship the logs
bundle in the loader and want to avoid breaking user apps when they
switch back to a bundle that does not include logs
closes#18826
When injecting tracing headers into fetch requests, the SDK was mutating
the user's original options object. This caused issues when users reused
config objects across requests or when the object was frozen (e.g., from
Immer's `produce()`), leading to silent failures. This change shallow
clones the options object before modifying it, ensuring the original
remains unchanged while still properly injecting the `sentry-trace` and
`baggage` headers.
Closes#18828
…ts/test-applications/cloudflare-hono (#18806)
Bumps [hono](https://github.com/honojs/hono) from 4.10.3 to 4.11.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/honojs/hono/releases">hono's
releases</a>.</em></p>
<blockquote>
<h2>v4.11.4</h2>
<h2>Security</h2>
<p>Fixed a JWT algorithm confusion issue in the JWT and JWK/JWKS
middleware.</p>
<p>Both middlewares now require an explicit algorithm configuration to
prevent the verification algorithm from being influenced by untrusted
JWT header values.</p>
<p>If you are using the JWT or JWK/JWKS middleware, please update to the
latest version as soon as possible.</p>
<h3>JWT middleware</h3>
<pre lang="ts"><code>import { jwt } from 'hono/jwt'
<p>app.use(
'/auth/*',
jwt({
secret: 'it-is-very-secret',
alg: 'HS256', // required
})
)
</code></pre></p>
<h3>JWK/JWKS middleware</h3>
<pre lang="ts"><code>import { jwk } from 'hono/jwk'
<p>app.use(
'/auth/*',
jwk({
jwks_uri: '<a
href="https://example.com/.well-known/jwks.json">https://example.com/.well-known/jwks.json</a>',
alg: ['RS256'], // required (asymmetric algorithms only)
})
)
</code></pre></p>
<p>For more details, see the Security Advisory.</p>
<ul>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4">https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4</a></li>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4">https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4</a></li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>test(utils/jwt): add missing algorithm types in jwa.test.ts by <a
href="https://github.com/flathill404"><code>@​flathill404</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
<li>chore: bump <code>@hono/eslint-config</code> and enable curly rule
by <a href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4620">honojs/hono#4620</a></li>
<li>docs(bun/websocket): Fixed a typo in hono/bun deprecation message
and updated test. by <a
href="https://github.com/Itsnotaka"><code>@​Itsnotaka</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4618">honojs/hono#4618</a></li>
<li>test: support <code>alg</code> option for JWT middleware by <a
href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4624">honojs/hono#4624</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/flathill404"><code>@​flathill404</code></a>
made their first contribution in <a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/honojs/hono/commit/28452f06319ef12df94b826450f36486e286565d"><code>28452f0</code></a>
4.11.4</li>
<li><a
href="https://github.com/honojs/hono/commit/190f6e28e2ca85ce3d1f2f54db1310f5f3eab134"><code>190f6e2</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/a48ef183d46c95053003dba4f107f95b5c637ffd"><code>a48ef18</code></a>
test: support <code>alg</code> option for JWT middleware (<a
href="https://redirect.github.com/honojs/hono/issues/4624">#4624</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/cc0aa7ae327ed84cc391d29086dec2a3e44e7a1f"><code>cc0aa7a</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/ef2a4b8d77711c9308a6ddca9e35d4ff321f97fe"><code>ef2a4b8</code></a>
docs(bun/websocket): Fixed a typo in hono/bun deprecation message and
updated...</li>
<li><a
href="https://github.com/honojs/hono/commit/8139399f68e3f3f60adffee0c49630d34310a361"><code>8139399</code></a>
chore: bump <code>@hono/eslint-config</code> and enable curly rule (<a
href="https://redirect.github.com/honojs/hono/issues/4620">#4620</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/4e872759b092e34458aeecb8b72e3e0c4d4f1784"><code>4e87275</code></a>
test(utils/jwt): add missing algorithm types in jwa.test.ts (<a
href="https://redirect.github.com/honojs/hono/issues/4606">#4606</a>)
(<a
href="https://redirect.github.com/honojs/hono/issues/4607">#4607</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/79977401a0c97122999464f47bd383a2959532fd"><code>7997740</code></a>
4.11.3</li>
<li><a
href="https://github.com/honojs/hono/commit/489af0b0825fa85e8b15f4659204bf622e0573b9"><code>489af0b</code></a>
fix(types): fix middleware union type merging in MergeMiddlewareResponse
(<a
href="https://redirect.github.com/honojs/hono/issues/4602">#4602</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/6ca01ec69b17c56f84fccd866702f7f999332030"><code>6ca01ec</code></a>
4.11.2</li>
<li>Additional commits viewable in <a
href="https://github.com/honojs/hono/compare/v4.10.3...v4.11.4">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hono&package-manager=npm_and_yarn&previous-version=4.10.3&new-version=4.11.4)](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 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 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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/getsentry/sentry-javascript/network/alerts).
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…TADATA is enabled (#18855)
The `CF_VERSION_METADATA` only has one reason - to add the release id.
Since we already set the release when `SENTRY_RELEASE` is enabled
automatically, we can do the same for `CF_VERSION_METADATA`. The docs
will then also be updated to state how the release id can be set in
different ways: getsentry/sentry-docs#16006Closes#18856 (added automatically)
Closes
[JS-1489](https://linear.app/getsentry/issue/JS-1489/featcloudflare-automatically-set-the-release-id-when-cf-version)
closes
[FE-681](https://linear.app/getsentry/issue/FE-681/senddefaultpii-sets-cloudflare-worker-ip-instead-of-the-one-from-the)
It seems that in some cases the headers do have a different casing. E.g.
in Cloudflare Workers the
`[CF-Connecting-IP](https://developers.cloudflare.com/fundamentals/reference/http-headers/#cf-connecting-ip)`
is actually send as `Cf-Connecting-Ip`.
<img width="635" height="223" alt="Screenshot 2026-01-19 at 13 15 27"
src="https://github.com/user-attachments/assets/e427e10d-35b7-4743-980c-3ff0d5cc1d51"
/>
According to [RFC7540
8.1.2](https://www.rfc-editor.org/rfc/rfc7540#section-8.1.2) the headers
are case-insensitive, but for HTTP2 they must be lowercase. So
theoretically this would fix also HTTP2 lower case headers
@JPeer264JPeer264 self-assigned this Jan 19, 2026
@JPeer264
JPeer264 changed the base branch from develop to masterJanuary 19, 2026 13:19
Comment threadCHANGELOG.md Outdated

@nicohrubecnicohrubec left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

Comment threadCHANGELOG.md
@JPeer264
JPeer264force-pushed the prepare-release/10.35.0 branch from 5c9ab95 to 8160adaCompareJanuary 19, 2026 13:30

@andreiborzaandreiborza left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@github-actions

Copy link
Copy Markdown
Contributor

size-limit report 📦

PathSize% ChangeChange
@sentry/browser25.11 kBaddedadded
@sentry/browser - with treeshaking flags23.61 kBaddedadded
@sentry/browser (incl. Tracing)41.87 kBaddedadded
@sentry/browser (incl. Tracing, Profiling)46.45 kBaddedadded
@sentry/browser (incl. Tracing, Replay)80.47 kBaddedadded
@sentry/browser (incl. Tracing, Replay) - with treeshaking flags70.16 kBaddedadded
@sentry/browser (incl. Tracing, Replay with Canvas)85.17 kBaddedadded
@sentry/browser (incl. Tracing, Replay, Feedback)97.37 kBaddedadded
@sentry/browser (incl. Feedback)41.83 kBaddedadded
@sentry/browser (incl. sendFeedback)29.79 kBaddedadded
@sentry/browser (incl. FeedbackAsync)34.79 kBaddedadded
@sentry/browser (incl. Metrics)26.21 kBaddedadded
@sentry/browser (incl. Logs)26.37 kBaddedadded
@sentry/browser (incl. Metrics & Logs)27.02 kBaddedadded
@sentry/react26.84 kBaddedadded
@sentry/react (incl. Tracing)44.09 kBaddedadded
@sentry/vue29.56 kBaddedadded
@sentry/vue (incl. Tracing)43.67 kBaddedadded
@sentry/svelte25.12 kBaddedadded
CDN Bundle27.67 kBaddedadded
CDN Bundle (incl. Tracing)42.67 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics)43.5 kBaddedadded
CDN Bundle (incl. Tracing, Replay)79.37 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback)84.81 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics)85.72 kBaddedadded
CDN Bundle - uncompressed81.08 kBaddedadded
CDN Bundle (incl. Tracing) - uncompressed126.5 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics) - uncompressed129.33 kBaddedadded
CDN Bundle (incl. Tracing, Replay) - uncompressed243.03 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed255.83 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) - uncompressed258.64 kBaddedadded
@sentry/nextjs (client)46.44 kBaddedadded
@sentry/sveltekit (client)42.25 kBaddedadded
@sentry/node-core51.94 kBaddedadded
@sentry/node162.19 kBaddedadded
@sentry/node - without tracing93.35 kBaddedadded
@sentry/aws-serverless108.85 kBaddedadded

@github-actions

Copy link
Copy Markdown
Contributor

node-overhead report 🧳

Note: This is a synthetic benchmark with a minimal express app and does not necessarily reflect the real-world performance impact in an application.

ScenarioRequests/s% of BaselinePrev. Requests/sChange %
GET Baseline8,919--added
GET With Sentry1,68319%-added
GET With Sentry (error only)6,14769%-added
POST Baseline1,214--added
POST With Sentry59549%-added
POST With Sentry (error only)1,05187%-added
MYSQL Baseline3,367--added
MYSQL With Sentry51015%-added
MYSQL With Sentry (error only)2,75182%-added

@JPeer264
JPeer264 enabled auto-merge January 19, 2026 13:42
@JPeer264
JPeer264 merged commit 024f819 into masterJan 19, 2026
407 of 410 checks passed
@JPeer264
JPeer264 deleted the prepare-release/10.35.0 branch January 19, 2026 13:47
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants

@JPeer264@nicohrubec@RulaKhaled@andreiborza@Lms24@chargome@oioki@rreckonerr@s1gr1d
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Highlight search terms from Google/DuckDuckGo/Bing referrer\n(function() {\n var ref = document.referrer;\n var terms = [];\n \n if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) {\n var url = new URL(ref);\n var q = url.searchParams.get('q') || url.searchParams.get('p');\n if (q) {\n terms = q.split(/\\s+/).filter(function(t) { return t.length \u003e 2; });\n }\n }\n \n if (terms.length === 0) return;\n \n var style = document.createElement('style');\n style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }';\n document.head.appendChild(style);\n \n function highlight(node) {\n if (node.nodeType === 3) { // text node\n var text = node.textContent;\n var found = false;\n terms.forEach(function(term) {\n var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\') + ')', 'gi');\n if (regex.test(text)) {\n found = true;\n var frag = document.createDocumentFragment();\n var parts = text.split(regex);\n parts.forEach(function(part, i) {\n if (i % 2 === 0) {\n frag.appendChild(document.createTextNode(part));\n } else {\n var span = document.createElement('span');\n span.className = 'userscript-highlight';\n span.textContent = part;\n frag.appendChild(span);\n }\n });\n node.parentNode.replaceChild(frag, node);\n }\n });\n } else if (node.nodeType === 1 && node.childNodes) { // element\n var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];\n if (!skipTags.includes(node.tagName)) {\n Array.from(node.childNodes).forEach(highlight);\n }\n }\n }\n \n highlight(document.body);\n \n // Re-highlight on dynamic content\n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1 || node.nodeType === 3) highlight(node);\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Highlight Search Terms"); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

meta(changelog): Update changelog for 10.35.0 - #18886

Merged
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0
Jan 19, 2026
Merged

meta(changelog): Update changelog for 10.35.0#18886
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0

Conversation

@JPeer264

Copy link
Copy Markdown
Member

No description provided.

github-actionsBotand others added 22 commits January 14, 2026 17:08
[Gitflow] Merge master into develop
This PR adds `ignored` as a new allowed client report discard reason.
The new reason can already be used (see
[ticket](https://linear.app/getsentry/issue/FE-678/add-new-ignore-discard-reason-for-client-reports)
for details). Technically, we only need it right now for span-first to
record `ignoreSpans` hits. But this reason also meant for more telemetry
types, so we can merge it into develop already.
This is only a temporary solution for LangChain v1 tests. LangChain
changed the way they handle internal API errors occurring during gen_ai
spans. For now, we’ll comment this out to unblock CI, then circle back
with a proper solution.
Ticket (TBD):
https://linear.app/getsentry/issue/JS-1477/fix-internal-error-tests-for-langchain-v1
…8823)
Resolves an issue where spans weren’t being processed because v6 emits
spans with a "default" name. We now validate using both the span name
(v5) and the operation ID (v6).
Closes#18824 (added automatically)
…18829)
Before submitting a pull request, please take a look at our
[Contributing](https://github.com/getsentry/sentry-javascript/blob/master/CONTRIBUTING.md)
guidelines and verify:
- [ ] If you've added code that should be tested, please add tests.
- [ ] Ensure your code lints and the test suite passes (`yarn lint`) &
(`yarn test`).
- [ ] Link an issue if there is one related to your pull request. If no
issue is linked, one will be auto-generated and linked.
Closes #issue_link_here
Closes#18830 (added automatically)
Bumps our dev dependency sveltekit version to the latest version in
light of
GHSA-j2f3-wq62-6q46.
To be clear, this package is only used a dev dependency, so it wasn't
shipped in our SvelteKit SDK NPM package.
Closes#18849 (added automatically)
Bumps affected sveltekit and node adapter versions in our e2e test apps.
Also took the opportunity to pin two `^` version ranges to the specific
latest version
| File | Package | Old Version | New Version |
| ----------------------------------------- | ------------------------ |
----------- | ----------- |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/kit` | `2.31.0` |
`2.49.5` |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/adapter-node` |
`^5.3.1` | `5.5.1` |
| `sveltekit-2-svelte-5/package.json` | `@sveltejs/kit` | `2.41.0` |
`2.49.5` |
| `sveltekit-2/package.json` | `@sveltejs/kit` | `2.21.3` | `2.49.5` |
| `sveltekit-cloudflare-pages/package.json` | `@sveltejs/kit` |
`^2.21.3` | `2.49.5` |
Closes#18851 (added automatically)
This PR adds the external contributor to the CHANGELOG.md file, so that
they are credited for their contribution. See #18858
Co-authored-by: andreiborza <168741329+andreiborza@users.noreply.github.com>
…cs` (#18785)
closes#18783
ref #16314
Note that metrics were bundled into the base config and will be moved
into this bundle starting with v11 (ref
#18583)
…age automatic source map uploads (#18712)
Adds sentryTanstackStart Vite plugin to enable automatic source map
uploads in TanStack Start applications.
**What it does**
I tried to align with what we do in other SDKs (e.g. SvelteKit). On a
high-level it:
- Uploads source maps to Sentry using @sentry/vite-plugin if configured,
passing through all options set by the user (including release,
sourcemaps, headers, etc.)
- If the source maps option is not defined and also the files to delete
option is not defined, we enable cleaning up all .map files after the
source map upload
- If the source map configuration is undefined, we additionally enable
hidden source map generation
**Usage**
```
// vite.config.ts
import { defineConfig } from 'vite';
import { sentryTanstackStart } from '@sentry/tanstackstart-react';
import { tanstackStart } from '@tanstack/react-start/plugin/vite';
export default defineConfig({
plugins: [
sentryTanstackStart({
authToken: process.env.SENTRY_AUTH_TOKEN,
org: 'my-org',
project: 'my-project',
}),
tanstackStart(),
],
});
```
**Tests**
- Added unit tests for sourceMaps.ts and sentryTanstackStart.ts covering
plugin composition, options passing, and source map settings logic
- Updated the E2E test to use the new plugin pattern
Closes#18664
Adds a shim for the `logger` namespace since we'll soon ship the logs
bundle in the loader and want to avoid breaking user apps when they
switch back to a bundle that does not include logs
closes#18826
When injecting tracing headers into fetch requests, the SDK was mutating
the user's original options object. This caused issues when users reused
config objects across requests or when the object was frozen (e.g., from
Immer's `produce()`), leading to silent failures. This change shallow
clones the options object before modifying it, ensuring the original
remains unchanged while still properly injecting the `sentry-trace` and
`baggage` headers.
Closes#18828
…ts/test-applications/cloudflare-hono (#18806)
Bumps [hono](https://github.com/honojs/hono) from 4.10.3 to 4.11.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/honojs/hono/releases">hono's
releases</a>.</em></p>
<blockquote>
<h2>v4.11.4</h2>
<h2>Security</h2>
<p>Fixed a JWT algorithm confusion issue in the JWT and JWK/JWKS
middleware.</p>
<p>Both middlewares now require an explicit algorithm configuration to
prevent the verification algorithm from being influenced by untrusted
JWT header values.</p>
<p>If you are using the JWT or JWK/JWKS middleware, please update to the
latest version as soon as possible.</p>
<h3>JWT middleware</h3>
<pre lang="ts"><code>import { jwt } from 'hono/jwt'
<p>app.use(
'/auth/*',
jwt({
secret: 'it-is-very-secret',
alg: 'HS256', // required
})
)
</code></pre></p>
<h3>JWK/JWKS middleware</h3>
<pre lang="ts"><code>import { jwk } from 'hono/jwk'
<p>app.use(
'/auth/*',
jwk({
jwks_uri: '<a
href="https://example.com/.well-known/jwks.json">https://example.com/.well-known/jwks.json</a>',
alg: ['RS256'], // required (asymmetric algorithms only)
})
)
</code></pre></p>
<p>For more details, see the Security Advisory.</p>
<ul>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4">https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4</a></li>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4">https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4</a></li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>test(utils/jwt): add missing algorithm types in jwa.test.ts by <a
href="https://github.com/flathill404"><code>@​flathill404</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
<li>chore: bump <code>@hono/eslint-config</code> and enable curly rule
by <a href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4620">honojs/hono#4620</a></li>
<li>docs(bun/websocket): Fixed a typo in hono/bun deprecation message
and updated test. by <a
href="https://github.com/Itsnotaka"><code>@​Itsnotaka</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4618">honojs/hono#4618</a></li>
<li>test: support <code>alg</code> option for JWT middleware by <a
href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4624">honojs/hono#4624</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/flathill404"><code>@​flathill404</code></a>
made their first contribution in <a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/honojs/hono/commit/28452f06319ef12df94b826450f36486e286565d"><code>28452f0</code></a>
4.11.4</li>
<li><a
href="https://github.com/honojs/hono/commit/190f6e28e2ca85ce3d1f2f54db1310f5f3eab134"><code>190f6e2</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/a48ef183d46c95053003dba4f107f95b5c637ffd"><code>a48ef18</code></a>
test: support <code>alg</code> option for JWT middleware (<a
href="https://redirect.github.com/honojs/hono/issues/4624">#4624</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/cc0aa7ae327ed84cc391d29086dec2a3e44e7a1f"><code>cc0aa7a</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/ef2a4b8d77711c9308a6ddca9e35d4ff321f97fe"><code>ef2a4b8</code></a>
docs(bun/websocket): Fixed a typo in hono/bun deprecation message and
updated...</li>
<li><a
href="https://github.com/honojs/hono/commit/8139399f68e3f3f60adffee0c49630d34310a361"><code>8139399</code></a>
chore: bump <code>@hono/eslint-config</code> and enable curly rule (<a
href="https://redirect.github.com/honojs/hono/issues/4620">#4620</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/4e872759b092e34458aeecb8b72e3e0c4d4f1784"><code>4e87275</code></a>
test(utils/jwt): add missing algorithm types in jwa.test.ts (<a
href="https://redirect.github.com/honojs/hono/issues/4606">#4606</a>)
(<a
href="https://redirect.github.com/honojs/hono/issues/4607">#4607</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/79977401a0c97122999464f47bd383a2959532fd"><code>7997740</code></a>
4.11.3</li>
<li><a
href="https://github.com/honojs/hono/commit/489af0b0825fa85e8b15f4659204bf622e0573b9"><code>489af0b</code></a>
fix(types): fix middleware union type merging in MergeMiddlewareResponse
(<a
href="https://redirect.github.com/honojs/hono/issues/4602">#4602</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/6ca01ec69b17c56f84fccd866702f7f999332030"><code>6ca01ec</code></a>
4.11.2</li>
<li>Additional commits viewable in <a
href="https://github.com/honojs/hono/compare/v4.10.3...v4.11.4">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hono&package-manager=npm_and_yarn&previous-version=4.10.3&new-version=4.11.4)](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 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 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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/getsentry/sentry-javascript/network/alerts).
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…TADATA is enabled (#18855)
The `CF_VERSION_METADATA` only has one reason - to add the release id.
Since we already set the release when `SENTRY_RELEASE` is enabled
automatically, we can do the same for `CF_VERSION_METADATA`. The docs
will then also be updated to state how the release id can be set in
different ways: getsentry/sentry-docs#16006Closes#18856 (added automatically)
Closes
[JS-1489](https://linear.app/getsentry/issue/JS-1489/featcloudflare-automatically-set-the-release-id-when-cf-version)
closes
[FE-681](https://linear.app/getsentry/issue/FE-681/senddefaultpii-sets-cloudflare-worker-ip-instead-of-the-one-from-the)
It seems that in some cases the headers do have a different casing. E.g.
in Cloudflare Workers the
`[CF-Connecting-IP](https://developers.cloudflare.com/fundamentals/reference/http-headers/#cf-connecting-ip)`
is actually send as `Cf-Connecting-Ip`.
<img width="635" height="223" alt="Screenshot 2026-01-19 at 13 15 27"
src="https://github.com/user-attachments/assets/e427e10d-35b7-4743-980c-3ff0d5cc1d51"
/>
According to [RFC7540
8.1.2](https://www.rfc-editor.org/rfc/rfc7540#section-8.1.2) the headers
are case-insensitive, but for HTTP2 they must be lowercase. So
theoretically this would fix also HTTP2 lower case headers
@JPeer264JPeer264 self-assigned this Jan 19, 2026
@JPeer264
JPeer264 changed the base branch from develop to masterJanuary 19, 2026 13:19
Comment threadCHANGELOG.md Outdated

@nicohrubecnicohrubec left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

Comment threadCHANGELOG.md
@JPeer264
JPeer264force-pushed the prepare-release/10.35.0 branch from 5c9ab95 to 8160adaCompareJanuary 19, 2026 13:30

@andreiborzaandreiborza left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@github-actions

Copy link
Copy Markdown
Contributor

size-limit report 📦

PathSize% ChangeChange
@sentry/browser25.11 kBaddedadded
@sentry/browser - with treeshaking flags23.61 kBaddedadded
@sentry/browser (incl. Tracing)41.87 kBaddedadded
@sentry/browser (incl. Tracing, Profiling)46.45 kBaddedadded
@sentry/browser (incl. Tracing, Replay)80.47 kBaddedadded
@sentry/browser (incl. Tracing, Replay) - with treeshaking flags70.16 kBaddedadded
@sentry/browser (incl. Tracing, Replay with Canvas)85.17 kBaddedadded
@sentry/browser (incl. Tracing, Replay, Feedback)97.37 kBaddedadded
@sentry/browser (incl. Feedback)41.83 kBaddedadded
@sentry/browser (incl. sendFeedback)29.79 kBaddedadded
@sentry/browser (incl. FeedbackAsync)34.79 kBaddedadded
@sentry/browser (incl. Metrics)26.21 kBaddedadded
@sentry/browser (incl. Logs)26.37 kBaddedadded
@sentry/browser (incl. Metrics & Logs)27.02 kBaddedadded
@sentry/react26.84 kBaddedadded
@sentry/react (incl. Tracing)44.09 kBaddedadded
@sentry/vue29.56 kBaddedadded
@sentry/vue (incl. Tracing)43.67 kBaddedadded
@sentry/svelte25.12 kBaddedadded
CDN Bundle27.67 kBaddedadded
CDN Bundle (incl. Tracing)42.67 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics)43.5 kBaddedadded
CDN Bundle (incl. Tracing, Replay)79.37 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback)84.81 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics)85.72 kBaddedadded
CDN Bundle - uncompressed81.08 kBaddedadded
CDN Bundle (incl. Tracing) - uncompressed126.5 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics) - uncompressed129.33 kBaddedadded
CDN Bundle (incl. Tracing, Replay) - uncompressed243.03 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed255.83 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) - uncompressed258.64 kBaddedadded
@sentry/nextjs (client)46.44 kBaddedadded
@sentry/sveltekit (client)42.25 kBaddedadded
@sentry/node-core51.94 kBaddedadded
@sentry/node162.19 kBaddedadded
@sentry/node - without tracing93.35 kBaddedadded
@sentry/aws-serverless108.85 kBaddedadded

@github-actions

Copy link
Copy Markdown
Contributor

node-overhead report 🧳

Note: This is a synthetic benchmark with a minimal express app and does not necessarily reflect the real-world performance impact in an application.

ScenarioRequests/s% of BaselinePrev. Requests/sChange %
GET Baseline8,919--added
GET With Sentry1,68319%-added
GET With Sentry (error only)6,14769%-added
POST Baseline1,214--added
POST With Sentry59549%-added
POST With Sentry (error only)1,05187%-added
MYSQL Baseline3,367--added
MYSQL With Sentry51015%-added
MYSQL With Sentry (error only)2,75182%-added

@JPeer264
JPeer264 enabled auto-merge January 19, 2026 13:42
@JPeer264
JPeer264 merged commit 024f819 into masterJan 19, 2026
407 of 410 checks passed
@JPeer264
JPeer264 deleted the prepare-release/10.35.0 branch January 19, 2026 13:47
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants

@JPeer264@nicohrubec@RulaKhaled@andreiborza@Lms24@chargome@oioki@rreckonerr@s1gr1d
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Strip utm_, fbclid, gclid, etc. from all links on page\n(function() {\n var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',\n 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',\n 'ref', 'ref_src', 'source', 'medium', 'campaign'];\n \n function cleanUrl(url) {\n try {\n var u = new URL(url, window.location.origin);\n var changed = false;\n trackingParams.forEach(function(p) {\n if (u.searchParams.has(p)) {\n u.searchParams.delete(p);\n changed = true;\n }\n });\n return changed ? u.toString() : url;\n } catch (e) {\n return url;\n }\n }\n \n function cleanLinks() {\n document.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n \n cleanLinks();\n \n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1) {\n if (node.tagName === 'A') cleanLinks();\n node.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Remove Tracking Parameters from Links"); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + '
Skip to content

meta(changelog): Update changelog for 10.35.0 - #18886

Merged
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0
Jan 19, 2026
Merged

meta(changelog): Update changelog for 10.35.0#18886
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0

Conversation

@JPeer264

Copy link
Copy Markdown
Member

No description provided.

github-actionsBotand others added 22 commits January 14, 2026 17:08
[Gitflow] Merge master into develop
This PR adds `ignored` as a new allowed client report discard reason.
The new reason can already be used (see
[ticket](https://linear.app/getsentry/issue/FE-678/add-new-ignore-discard-reason-for-client-reports)
for details). Technically, we only need it right now for span-first to
record `ignoreSpans` hits. But this reason also meant for more telemetry
types, so we can merge it into develop already.
This is only a temporary solution for LangChain v1 tests. LangChain
changed the way they handle internal API errors occurring during gen_ai
spans. For now, we’ll comment this out to unblock CI, then circle back
with a proper solution.
Ticket (TBD):
https://linear.app/getsentry/issue/JS-1477/fix-internal-error-tests-for-langchain-v1
…8823)
Resolves an issue where spans weren’t being processed because v6 emits
spans with a "default" name. We now validate using both the span name
(v5) and the operation ID (v6).
Closes#18824 (added automatically)
…18829)
Before submitting a pull request, please take a look at our
[Contributing](https://github.com/getsentry/sentry-javascript/blob/master/CONTRIBUTING.md)
guidelines and verify:
- [ ] If you've added code that should be tested, please add tests.
- [ ] Ensure your code lints and the test suite passes (`yarn lint`) &
(`yarn test`).
- [ ] Link an issue if there is one related to your pull request. If no
issue is linked, one will be auto-generated and linked.
Closes #issue_link_here
Closes#18830 (added automatically)
Bumps our dev dependency sveltekit version to the latest version in
light of
GHSA-j2f3-wq62-6q46.
To be clear, this package is only used a dev dependency, so it wasn't
shipped in our SvelteKit SDK NPM package.
Closes#18849 (added automatically)
Bumps affected sveltekit and node adapter versions in our e2e test apps.
Also took the opportunity to pin two `^` version ranges to the specific
latest version
| File | Package | Old Version | New Version |
| ----------------------------------------- | ------------------------ |
----------- | ----------- |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/kit` | `2.31.0` |
`2.49.5` |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/adapter-node` |
`^5.3.1` | `5.5.1` |
| `sveltekit-2-svelte-5/package.json` | `@sveltejs/kit` | `2.41.0` |
`2.49.5` |
| `sveltekit-2/package.json` | `@sveltejs/kit` | `2.21.3` | `2.49.5` |
| `sveltekit-cloudflare-pages/package.json` | `@sveltejs/kit` |
`^2.21.3` | `2.49.5` |
Closes#18851 (added automatically)
This PR adds the external contributor to the CHANGELOG.md file, so that
they are credited for their contribution. See #18858
Co-authored-by: andreiborza <168741329+andreiborza@users.noreply.github.com>
…cs` (#18785)
closes#18783
ref #16314
Note that metrics were bundled into the base config and will be moved
into this bundle starting with v11 (ref
#18583)
…age automatic source map uploads (#18712)
Adds sentryTanstackStart Vite plugin to enable automatic source map
uploads in TanStack Start applications.
**What it does**
I tried to align with what we do in other SDKs (e.g. SvelteKit). On a
high-level it:
- Uploads source maps to Sentry using @sentry/vite-plugin if configured,
passing through all options set by the user (including release,
sourcemaps, headers, etc.)
- If the source maps option is not defined and also the files to delete
option is not defined, we enable cleaning up all .map files after the
source map upload
- If the source map configuration is undefined, we additionally enable
hidden source map generation
**Usage**
```
// vite.config.ts
import { defineConfig } from 'vite';
import { sentryTanstackStart } from '@sentry/tanstackstart-react';
import { tanstackStart } from '@tanstack/react-start/plugin/vite';
export default defineConfig({
plugins: [
sentryTanstackStart({
authToken: process.env.SENTRY_AUTH_TOKEN,
org: 'my-org',
project: 'my-project',
}),
tanstackStart(),
],
});
```
**Tests**
- Added unit tests for sourceMaps.ts and sentryTanstackStart.ts covering
plugin composition, options passing, and source map settings logic
- Updated the E2E test to use the new plugin pattern
Closes#18664
Adds a shim for the `logger` namespace since we'll soon ship the logs
bundle in the loader and want to avoid breaking user apps when they
switch back to a bundle that does not include logs
closes#18826
When injecting tracing headers into fetch requests, the SDK was mutating
the user's original options object. This caused issues when users reused
config objects across requests or when the object was frozen (e.g., from
Immer's `produce()`), leading to silent failures. This change shallow
clones the options object before modifying it, ensuring the original
remains unchanged while still properly injecting the `sentry-trace` and
`baggage` headers.
Closes#18828
…ts/test-applications/cloudflare-hono (#18806)
Bumps [hono](https://github.com/honojs/hono) from 4.10.3 to 4.11.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/honojs/hono/releases">hono's
releases</a>.</em></p>
<blockquote>
<h2>v4.11.4</h2>
<h2>Security</h2>
<p>Fixed a JWT algorithm confusion issue in the JWT and JWK/JWKS
middleware.</p>
<p>Both middlewares now require an explicit algorithm configuration to
prevent the verification algorithm from being influenced by untrusted
JWT header values.</p>
<p>If you are using the JWT or JWK/JWKS middleware, please update to the
latest version as soon as possible.</p>
<h3>JWT middleware</h3>
<pre lang="ts"><code>import { jwt } from 'hono/jwt'
<p>app.use(
'/auth/*',
jwt({
secret: 'it-is-very-secret',
alg: 'HS256', // required
})
)
</code></pre></p>
<h3>JWK/JWKS middleware</h3>
<pre lang="ts"><code>import { jwk } from 'hono/jwk'
<p>app.use(
'/auth/*',
jwk({
jwks_uri: '<a
href="https://example.com/.well-known/jwks.json">https://example.com/.well-known/jwks.json</a>',
alg: ['RS256'], // required (asymmetric algorithms only)
})
)
</code></pre></p>
<p>For more details, see the Security Advisory.</p>
<ul>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4">https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4</a></li>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4">https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4</a></li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>test(utils/jwt): add missing algorithm types in jwa.test.ts by <a
href="https://github.com/flathill404"><code>@​flathill404</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
<li>chore: bump <code>@hono/eslint-config</code> and enable curly rule
by <a href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4620">honojs/hono#4620</a></li>
<li>docs(bun/websocket): Fixed a typo in hono/bun deprecation message
and updated test. by <a
href="https://github.com/Itsnotaka"><code>@​Itsnotaka</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4618">honojs/hono#4618</a></li>
<li>test: support <code>alg</code> option for JWT middleware by <a
href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4624">honojs/hono#4624</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/flathill404"><code>@​flathill404</code></a>
made their first contribution in <a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/honojs/hono/commit/28452f06319ef12df94b826450f36486e286565d"><code>28452f0</code></a>
4.11.4</li>
<li><a
href="https://github.com/honojs/hono/commit/190f6e28e2ca85ce3d1f2f54db1310f5f3eab134"><code>190f6e2</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/a48ef183d46c95053003dba4f107f95b5c637ffd"><code>a48ef18</code></a>
test: support <code>alg</code> option for JWT middleware (<a
href="https://redirect.github.com/honojs/hono/issues/4624">#4624</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/cc0aa7ae327ed84cc391d29086dec2a3e44e7a1f"><code>cc0aa7a</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/ef2a4b8d77711c9308a6ddca9e35d4ff321f97fe"><code>ef2a4b8</code></a>
docs(bun/websocket): Fixed a typo in hono/bun deprecation message and
updated...</li>
<li><a
href="https://github.com/honojs/hono/commit/8139399f68e3f3f60adffee0c49630d34310a361"><code>8139399</code></a>
chore: bump <code>@hono/eslint-config</code> and enable curly rule (<a
href="https://redirect.github.com/honojs/hono/issues/4620">#4620</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/4e872759b092e34458aeecb8b72e3e0c4d4f1784"><code>4e87275</code></a>
test(utils/jwt): add missing algorithm types in jwa.test.ts (<a
href="https://redirect.github.com/honojs/hono/issues/4606">#4606</a>)
(<a
href="https://redirect.github.com/honojs/hono/issues/4607">#4607</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/79977401a0c97122999464f47bd383a2959532fd"><code>7997740</code></a>
4.11.3</li>
<li><a
href="https://github.com/honojs/hono/commit/489af0b0825fa85e8b15f4659204bf622e0573b9"><code>489af0b</code></a>
fix(types): fix middleware union type merging in MergeMiddlewareResponse
(<a
href="https://redirect.github.com/honojs/hono/issues/4602">#4602</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/6ca01ec69b17c56f84fccd866702f7f999332030"><code>6ca01ec</code></a>
4.11.2</li>
<li>Additional commits viewable in <a
href="https://github.com/honojs/hono/compare/v4.10.3...v4.11.4">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hono&package-manager=npm_and_yarn&previous-version=4.10.3&new-version=4.11.4)](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 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 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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/getsentry/sentry-javascript/network/alerts).
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…TADATA is enabled (#18855)
The `CF_VERSION_METADATA` only has one reason - to add the release id.
Since we already set the release when `SENTRY_RELEASE` is enabled
automatically, we can do the same for `CF_VERSION_METADATA`. The docs
will then also be updated to state how the release id can be set in
different ways: getsentry/sentry-docs#16006Closes#18856 (added automatically)
Closes
[JS-1489](https://linear.app/getsentry/issue/JS-1489/featcloudflare-automatically-set-the-release-id-when-cf-version)
closes
[FE-681](https://linear.app/getsentry/issue/FE-681/senddefaultpii-sets-cloudflare-worker-ip-instead-of-the-one-from-the)
It seems that in some cases the headers do have a different casing. E.g.
in Cloudflare Workers the
`[CF-Connecting-IP](https://developers.cloudflare.com/fundamentals/reference/http-headers/#cf-connecting-ip)`
is actually send as `Cf-Connecting-Ip`.
<img width="635" height="223" alt="Screenshot 2026-01-19 at 13 15 27"
src="https://github.com/user-attachments/assets/e427e10d-35b7-4743-980c-3ff0d5cc1d51"
/>
According to [RFC7540
8.1.2](https://www.rfc-editor.org/rfc/rfc7540#section-8.1.2) the headers
are case-insensitive, but for HTTP2 they must be lowercase. So
theoretically this would fix also HTTP2 lower case headers
@JPeer264JPeer264 self-assigned this Jan 19, 2026
@JPeer264
JPeer264 changed the base branch from develop to masterJanuary 19, 2026 13:19
Comment threadCHANGELOG.md Outdated

@nicohrubecnicohrubec left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

Comment threadCHANGELOG.md
@JPeer264
JPeer264force-pushed the prepare-release/10.35.0 branch from 5c9ab95 to 8160adaCompareJanuary 19, 2026 13:30

@andreiborzaandreiborza left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@github-actions

Copy link
Copy Markdown
Contributor

size-limit report 📦

PathSize% ChangeChange
@sentry/browser25.11 kBaddedadded
@sentry/browser - with treeshaking flags23.61 kBaddedadded
@sentry/browser (incl. Tracing)41.87 kBaddedadded
@sentry/browser (incl. Tracing, Profiling)46.45 kBaddedadded
@sentry/browser (incl. Tracing, Replay)80.47 kBaddedadded
@sentry/browser (incl. Tracing, Replay) - with treeshaking flags70.16 kBaddedadded
@sentry/browser (incl. Tracing, Replay with Canvas)85.17 kBaddedadded
@sentry/browser (incl. Tracing, Replay, Feedback)97.37 kBaddedadded
@sentry/browser (incl. Feedback)41.83 kBaddedadded
@sentry/browser (incl. sendFeedback)29.79 kBaddedadded
@sentry/browser (incl. FeedbackAsync)34.79 kBaddedadded
@sentry/browser (incl. Metrics)26.21 kBaddedadded
@sentry/browser (incl. Logs)26.37 kBaddedadded
@sentry/browser (incl. Metrics & Logs)27.02 kBaddedadded
@sentry/react26.84 kBaddedadded
@sentry/react (incl. Tracing)44.09 kBaddedadded
@sentry/vue29.56 kBaddedadded
@sentry/vue (incl. Tracing)43.67 kBaddedadded
@sentry/svelte25.12 kBaddedadded
CDN Bundle27.67 kBaddedadded
CDN Bundle (incl. Tracing)42.67 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics)43.5 kBaddedadded
CDN Bundle (incl. Tracing, Replay)79.37 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback)84.81 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics)85.72 kBaddedadded
CDN Bundle - uncompressed81.08 kBaddedadded
CDN Bundle (incl. Tracing) - uncompressed126.5 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics) - uncompressed129.33 kBaddedadded
CDN Bundle (incl. Tracing, Replay) - uncompressed243.03 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed255.83 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) - uncompressed258.64 kBaddedadded
@sentry/nextjs (client)46.44 kBaddedadded
@sentry/sveltekit (client)42.25 kBaddedadded
@sentry/node-core51.94 kBaddedadded
@sentry/node162.19 kBaddedadded
@sentry/node - without tracing93.35 kBaddedadded
@sentry/aws-serverless108.85 kBaddedadded

@github-actions

Copy link
Copy Markdown
Contributor

node-overhead report 🧳

Note: This is a synthetic benchmark with a minimal express app and does not necessarily reflect the real-world performance impact in an application.

ScenarioRequests/s% of BaselinePrev. Requests/sChange %
GET Baseline8,919--added
GET With Sentry1,68319%-added
GET With Sentry (error only)6,14769%-added
POST Baseline1,214--added
POST With Sentry59549%-added
POST With Sentry (error only)1,05187%-added
MYSQL Baseline3,367--added
MYSQL With Sentry51015%-added
MYSQL With Sentry (error only)2,75182%-added

@JPeer264
JPeer264 enabled auto-merge January 19, 2026 13:42
@JPeer264
JPeer264 merged commit 024f819 into masterJan 19, 2026
407 of 410 checks passed
@JPeer264
JPeer264 deleted the prepare-release/10.35.0 branch January 19, 2026 13:47
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants

@JPeer264@nicohrubec@RulaKhaled@andreiborza@Lms24@chargome@oioki@rreckonerr@s1gr1d
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Auto-enable theater mode on YouTube\n(function() {\n function tryTheater() {\n var btn = document.querySelector('button[aria-label=\"Theater mode\"], ytd-player #player button[title=\"Theater mode\"]');\n if (btn && !btn.classList.contains('activated')) {\n btn.click();\n }\n }\n \n // Try immediately\n tryTheater();\n \n // Try after navigation (SPA)\n var lastUrl = location.href;\n setInterval(function() {\n if (location.href !== lastUrl) {\n lastUrl = location.href;\n setTimeout(tryTheater, 500);\n }\n }, 1000);\n \n // Also try on player load\n var observer = new MutationObserver(tryTheater);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "YouTube Theater Mode Default"); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

meta(changelog): Update changelog for 10.35.0 - #18886

Merged
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0
Jan 19, 2026
Merged

meta(changelog): Update changelog for 10.35.0#18886
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0

Conversation

@JPeer264

Copy link
Copy Markdown
Member

No description provided.

github-actionsBotand others added 22 commits January 14, 2026 17:08
[Gitflow] Merge master into develop
This PR adds `ignored` as a new allowed client report discard reason.
The new reason can already be used (see
[ticket](https://linear.app/getsentry/issue/FE-678/add-new-ignore-discard-reason-for-client-reports)
for details). Technically, we only need it right now for span-first to
record `ignoreSpans` hits. But this reason also meant for more telemetry
types, so we can merge it into develop already.
This is only a temporary solution for LangChain v1 tests. LangChain
changed the way they handle internal API errors occurring during gen_ai
spans. For now, we’ll comment this out to unblock CI, then circle back
with a proper solution.
Ticket (TBD):
https://linear.app/getsentry/issue/JS-1477/fix-internal-error-tests-for-langchain-v1
…8823)
Resolves an issue where spans weren’t being processed because v6 emits
spans with a "default" name. We now validate using both the span name
(v5) and the operation ID (v6).
Closes#18824 (added automatically)
…18829)
Before submitting a pull request, please take a look at our
[Contributing](https://github.com/getsentry/sentry-javascript/blob/master/CONTRIBUTING.md)
guidelines and verify:
- [ ] If you've added code that should be tested, please add tests.
- [ ] Ensure your code lints and the test suite passes (`yarn lint`) &
(`yarn test`).
- [ ] Link an issue if there is one related to your pull request. If no
issue is linked, one will be auto-generated and linked.
Closes #issue_link_here
Closes#18830 (added automatically)
Bumps our dev dependency sveltekit version to the latest version in
light of
GHSA-j2f3-wq62-6q46.
To be clear, this package is only used a dev dependency, so it wasn't
shipped in our SvelteKit SDK NPM package.
Closes#18849 (added automatically)
Bumps affected sveltekit and node adapter versions in our e2e test apps.
Also took the opportunity to pin two `^` version ranges to the specific
latest version
| File | Package | Old Version | New Version |
| ----------------------------------------- | ------------------------ |
----------- | ----------- |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/kit` | `2.31.0` |
`2.49.5` |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/adapter-node` |
`^5.3.1` | `5.5.1` |
| `sveltekit-2-svelte-5/package.json` | `@sveltejs/kit` | `2.41.0` |
`2.49.5` |
| `sveltekit-2/package.json` | `@sveltejs/kit` | `2.21.3` | `2.49.5` |
| `sveltekit-cloudflare-pages/package.json` | `@sveltejs/kit` |
`^2.21.3` | `2.49.5` |
Closes#18851 (added automatically)
This PR adds the external contributor to the CHANGELOG.md file, so that
they are credited for their contribution. See #18858
Co-authored-by: andreiborza <168741329+andreiborza@users.noreply.github.com>
…cs` (#18785)
closes#18783
ref #16314
Note that metrics were bundled into the base config and will be moved
into this bundle starting with v11 (ref
#18583)
…age automatic source map uploads (#18712)
Adds sentryTanstackStart Vite plugin to enable automatic source map
uploads in TanStack Start applications.
**What it does**
I tried to align with what we do in other SDKs (e.g. SvelteKit). On a
high-level it:
- Uploads source maps to Sentry using @sentry/vite-plugin if configured,
passing through all options set by the user (including release,
sourcemaps, headers, etc.)
- If the source maps option is not defined and also the files to delete
option is not defined, we enable cleaning up all .map files after the
source map upload
- If the source map configuration is undefined, we additionally enable
hidden source map generation
**Usage**
```
// vite.config.ts
import { defineConfig } from 'vite';
import { sentryTanstackStart } from '@sentry/tanstackstart-react';
import { tanstackStart } from '@tanstack/react-start/plugin/vite';
export default defineConfig({
plugins: [
sentryTanstackStart({
authToken: process.env.SENTRY_AUTH_TOKEN,
org: 'my-org',
project: 'my-project',
}),
tanstackStart(),
],
});
```
**Tests**
- Added unit tests for sourceMaps.ts and sentryTanstackStart.ts covering
plugin composition, options passing, and source map settings logic
- Updated the E2E test to use the new plugin pattern
Closes#18664
Adds a shim for the `logger` namespace since we'll soon ship the logs
bundle in the loader and want to avoid breaking user apps when they
switch back to a bundle that does not include logs
closes#18826
When injecting tracing headers into fetch requests, the SDK was mutating
the user's original options object. This caused issues when users reused
config objects across requests or when the object was frozen (e.g., from
Immer's `produce()`), leading to silent failures. This change shallow
clones the options object before modifying it, ensuring the original
remains unchanged while still properly injecting the `sentry-trace` and
`baggage` headers.
Closes#18828
…ts/test-applications/cloudflare-hono (#18806)
Bumps [hono](https://github.com/honojs/hono) from 4.10.3 to 4.11.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/honojs/hono/releases">hono's
releases</a>.</em></p>
<blockquote>
<h2>v4.11.4</h2>
<h2>Security</h2>
<p>Fixed a JWT algorithm confusion issue in the JWT and JWK/JWKS
middleware.</p>
<p>Both middlewares now require an explicit algorithm configuration to
prevent the verification algorithm from being influenced by untrusted
JWT header values.</p>
<p>If you are using the JWT or JWK/JWKS middleware, please update to the
latest version as soon as possible.</p>
<h3>JWT middleware</h3>
<pre lang="ts"><code>import { jwt } from 'hono/jwt'
<p>app.use(
'/auth/*',
jwt({
secret: 'it-is-very-secret',
alg: 'HS256', // required
})
)
</code></pre></p>
<h3>JWK/JWKS middleware</h3>
<pre lang="ts"><code>import { jwk } from 'hono/jwk'
<p>app.use(
'/auth/*',
jwk({
jwks_uri: '<a
href="https://example.com/.well-known/jwks.json">https://example.com/.well-known/jwks.json</a>',
alg: ['RS256'], // required (asymmetric algorithms only)
})
)
</code></pre></p>
<p>For more details, see the Security Advisory.</p>
<ul>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4">https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4</a></li>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4">https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4</a></li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>test(utils/jwt): add missing algorithm types in jwa.test.ts by <a
href="https://github.com/flathill404"><code>@​flathill404</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
<li>chore: bump <code>@hono/eslint-config</code> and enable curly rule
by <a href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4620">honojs/hono#4620</a></li>
<li>docs(bun/websocket): Fixed a typo in hono/bun deprecation message
and updated test. by <a
href="https://github.com/Itsnotaka"><code>@​Itsnotaka</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4618">honojs/hono#4618</a></li>
<li>test: support <code>alg</code> option for JWT middleware by <a
href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4624">honojs/hono#4624</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/flathill404"><code>@​flathill404</code></a>
made their first contribution in <a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/honojs/hono/commit/28452f06319ef12df94b826450f36486e286565d"><code>28452f0</code></a>
4.11.4</li>
<li><a
href="https://github.com/honojs/hono/commit/190f6e28e2ca85ce3d1f2f54db1310f5f3eab134"><code>190f6e2</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/a48ef183d46c95053003dba4f107f95b5c637ffd"><code>a48ef18</code></a>
test: support <code>alg</code> option for JWT middleware (<a
href="https://redirect.github.com/honojs/hono/issues/4624">#4624</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/cc0aa7ae327ed84cc391d29086dec2a3e44e7a1f"><code>cc0aa7a</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/ef2a4b8d77711c9308a6ddca9e35d4ff321f97fe"><code>ef2a4b8</code></a>
docs(bun/websocket): Fixed a typo in hono/bun deprecation message and
updated...</li>
<li><a
href="https://github.com/honojs/hono/commit/8139399f68e3f3f60adffee0c49630d34310a361"><code>8139399</code></a>
chore: bump <code>@hono/eslint-config</code> and enable curly rule (<a
href="https://redirect.github.com/honojs/hono/issues/4620">#4620</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/4e872759b092e34458aeecb8b72e3e0c4d4f1784"><code>4e87275</code></a>
test(utils/jwt): add missing algorithm types in jwa.test.ts (<a
href="https://redirect.github.com/honojs/hono/issues/4606">#4606</a>)
(<a
href="https://redirect.github.com/honojs/hono/issues/4607">#4607</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/79977401a0c97122999464f47bd383a2959532fd"><code>7997740</code></a>
4.11.3</li>
<li><a
href="https://github.com/honojs/hono/commit/489af0b0825fa85e8b15f4659204bf622e0573b9"><code>489af0b</code></a>
fix(types): fix middleware union type merging in MergeMiddlewareResponse
(<a
href="https://redirect.github.com/honojs/hono/issues/4602">#4602</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/6ca01ec69b17c56f84fccd866702f7f999332030"><code>6ca01ec</code></a>
4.11.2</li>
<li>Additional commits viewable in <a
href="https://github.com/honojs/hono/compare/v4.10.3...v4.11.4">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hono&package-manager=npm_and_yarn&previous-version=4.10.3&new-version=4.11.4)](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 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 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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/getsentry/sentry-javascript/network/alerts).
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…TADATA is enabled (#18855)
The `CF_VERSION_METADATA` only has one reason - to add the release id.
Since we already set the release when `SENTRY_RELEASE` is enabled
automatically, we can do the same for `CF_VERSION_METADATA`. The docs
will then also be updated to state how the release id can be set in
different ways: getsentry/sentry-docs#16006Closes#18856 (added automatically)
Closes
[JS-1489](https://linear.app/getsentry/issue/JS-1489/featcloudflare-automatically-set-the-release-id-when-cf-version)
closes
[FE-681](https://linear.app/getsentry/issue/FE-681/senddefaultpii-sets-cloudflare-worker-ip-instead-of-the-one-from-the)
It seems that in some cases the headers do have a different casing. E.g.
in Cloudflare Workers the
`[CF-Connecting-IP](https://developers.cloudflare.com/fundamentals/reference/http-headers/#cf-connecting-ip)`
is actually send as `Cf-Connecting-Ip`.
<img width="635" height="223" alt="Screenshot 2026-01-19 at 13 15 27"
src="https://github.com/user-attachments/assets/e427e10d-35b7-4743-980c-3ff0d5cc1d51"
/>
According to [RFC7540
8.1.2](https://www.rfc-editor.org/rfc/rfc7540#section-8.1.2) the headers
are case-insensitive, but for HTTP2 they must be lowercase. So
theoretically this would fix also HTTP2 lower case headers
@JPeer264JPeer264 self-assigned this Jan 19, 2026
@JPeer264
JPeer264 changed the base branch from develop to masterJanuary 19, 2026 13:19
Comment threadCHANGELOG.md Outdated

@nicohrubecnicohrubec left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

Comment threadCHANGELOG.md
@JPeer264
JPeer264force-pushed the prepare-release/10.35.0 branch from 5c9ab95 to 8160adaCompareJanuary 19, 2026 13:30

@andreiborzaandreiborza left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@github-actions

Copy link
Copy Markdown
Contributor

size-limit report 📦

PathSize% ChangeChange
@sentry/browser25.11 kBaddedadded
@sentry/browser - with treeshaking flags23.61 kBaddedadded
@sentry/browser (incl. Tracing)41.87 kBaddedadded
@sentry/browser (incl. Tracing, Profiling)46.45 kBaddedadded
@sentry/browser (incl. Tracing, Replay)80.47 kBaddedadded
@sentry/browser (incl. Tracing, Replay) - with treeshaking flags70.16 kBaddedadded
@sentry/browser (incl. Tracing, Replay with Canvas)85.17 kBaddedadded
@sentry/browser (incl. Tracing, Replay, Feedback)97.37 kBaddedadded
@sentry/browser (incl. Feedback)41.83 kBaddedadded
@sentry/browser (incl. sendFeedback)29.79 kBaddedadded
@sentry/browser (incl. FeedbackAsync)34.79 kBaddedadded
@sentry/browser (incl. Metrics)26.21 kBaddedadded
@sentry/browser (incl. Logs)26.37 kBaddedadded
@sentry/browser (incl. Metrics & Logs)27.02 kBaddedadded
@sentry/react26.84 kBaddedadded
@sentry/react (incl. Tracing)44.09 kBaddedadded
@sentry/vue29.56 kBaddedadded
@sentry/vue (incl. Tracing)43.67 kBaddedadded
@sentry/svelte25.12 kBaddedadded
CDN Bundle27.67 kBaddedadded
CDN Bundle (incl. Tracing)42.67 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics)43.5 kBaddedadded
CDN Bundle (incl. Tracing, Replay)79.37 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback)84.81 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics)85.72 kBaddedadded
CDN Bundle - uncompressed81.08 kBaddedadded
CDN Bundle (incl. Tracing) - uncompressed126.5 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics) - uncompressed129.33 kBaddedadded
CDN Bundle (incl. Tracing, Replay) - uncompressed243.03 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed255.83 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) - uncompressed258.64 kBaddedadded
@sentry/nextjs (client)46.44 kBaddedadded
@sentry/sveltekit (client)42.25 kBaddedadded
@sentry/node-core51.94 kBaddedadded
@sentry/node162.19 kBaddedadded
@sentry/node - without tracing93.35 kBaddedadded
@sentry/aws-serverless108.85 kBaddedadded

@github-actions

Copy link
Copy Markdown
Contributor

node-overhead report 🧳

Note: This is a synthetic benchmark with a minimal express app and does not necessarily reflect the real-world performance impact in an application.

ScenarioRequests/s% of BaselinePrev. Requests/sChange %
GET Baseline8,919--added
GET With Sentry1,68319%-added
GET With Sentry (error only)6,14769%-added
POST Baseline1,214--added
POST With Sentry59549%-added
POST With Sentry (error only)1,05187%-added
MYSQL Baseline3,367--added
MYSQL With Sentry51015%-added
MYSQL With Sentry (error only)2,75182%-added

@JPeer264
JPeer264 enabled auto-merge January 19, 2026 13:42
@JPeer264
JPeer264 merged commit 024f819 into masterJan 19, 2026
407 of 410 checks passed
@JPeer264
JPeer264 deleted the prepare-release/10.35.0 branch January 19, 2026 13:47
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants

@JPeer264@nicohrubec@RulaKhaled@andreiborza@Lms24@chargome@oioki@rreckonerr@s1gr1d
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Remove or un-stick sticky/fixed headers that block content\n(function() {\n function unstick() {\n document.querySelectorAll('header, nav, [role=\"banner\"], .header, .navbar, .sticky, .fixed-top, [style*=\"position: fixed\"], [style*=\"position:sticky\"]').forEach(function(el) {\n if (el.style.position === 'fixed' || el.style.position === 'sticky' || \n getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {\n el.style.position = 'static';\n el.style.top = 'auto';\n el.style.zIndex = 'auto';\n }\n });\n }\n \n unstick();\n \n var observer = new MutationObserver(unstick);\n observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });\n})();", "Kill Sticky Headers"); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

meta(changelog): Update changelog for 10.35.0 - #18886

Merged
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0
Jan 19, 2026
Merged

meta(changelog): Update changelog for 10.35.0#18886
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0

Conversation

@JPeer264

Copy link
Copy Markdown
Member

No description provided.

github-actionsBotand others added 22 commits January 14, 2026 17:08
[Gitflow] Merge master into develop
This PR adds `ignored` as a new allowed client report discard reason.
The new reason can already be used (see
[ticket](https://linear.app/getsentry/issue/FE-678/add-new-ignore-discard-reason-for-client-reports)
for details). Technically, we only need it right now for span-first to
record `ignoreSpans` hits. But this reason also meant for more telemetry
types, so we can merge it into develop already.
This is only a temporary solution for LangChain v1 tests. LangChain
changed the way they handle internal API errors occurring during gen_ai
spans. For now, we’ll comment this out to unblock CI, then circle back
with a proper solution.
Ticket (TBD):
https://linear.app/getsentry/issue/JS-1477/fix-internal-error-tests-for-langchain-v1
…8823)
Resolves an issue where spans weren’t being processed because v6 emits
spans with a "default" name. We now validate using both the span name
(v5) and the operation ID (v6).
Closes#18824 (added automatically)
…18829)
Before submitting a pull request, please take a look at our
[Contributing](https://github.com/getsentry/sentry-javascript/blob/master/CONTRIBUTING.md)
guidelines and verify:
- [ ] If you've added code that should be tested, please add tests.
- [ ] Ensure your code lints and the test suite passes (`yarn lint`) &
(`yarn test`).
- [ ] Link an issue if there is one related to your pull request. If no
issue is linked, one will be auto-generated and linked.
Closes #issue_link_here
Closes#18830 (added automatically)
Bumps our dev dependency sveltekit version to the latest version in
light of
GHSA-j2f3-wq62-6q46.
To be clear, this package is only used a dev dependency, so it wasn't
shipped in our SvelteKit SDK NPM package.
Closes#18849 (added automatically)
Bumps affected sveltekit and node adapter versions in our e2e test apps.
Also took the opportunity to pin two `^` version ranges to the specific
latest version
| File | Package | Old Version | New Version |
| ----------------------------------------- | ------------------------ |
----------- | ----------- |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/kit` | `2.31.0` |
`2.49.5` |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/adapter-node` |
`^5.3.1` | `5.5.1` |
| `sveltekit-2-svelte-5/package.json` | `@sveltejs/kit` | `2.41.0` |
`2.49.5` |
| `sveltekit-2/package.json` | `@sveltejs/kit` | `2.21.3` | `2.49.5` |
| `sveltekit-cloudflare-pages/package.json` | `@sveltejs/kit` |
`^2.21.3` | `2.49.5` |
Closes#18851 (added automatically)
This PR adds the external contributor to the CHANGELOG.md file, so that
they are credited for their contribution. See #18858
Co-authored-by: andreiborza <168741329+andreiborza@users.noreply.github.com>
…cs` (#18785)
closes#18783
ref #16314
Note that metrics were bundled into the base config and will be moved
into this bundle starting with v11 (ref
#18583)
…age automatic source map uploads (#18712)
Adds sentryTanstackStart Vite plugin to enable automatic source map
uploads in TanStack Start applications.
**What it does**
I tried to align with what we do in other SDKs (e.g. SvelteKit). On a
high-level it:
- Uploads source maps to Sentry using @sentry/vite-plugin if configured,
passing through all options set by the user (including release,
sourcemaps, headers, etc.)
- If the source maps option is not defined and also the files to delete
option is not defined, we enable cleaning up all .map files after the
source map upload
- If the source map configuration is undefined, we additionally enable
hidden source map generation
**Usage**
```
// vite.config.ts
import { defineConfig } from 'vite';
import { sentryTanstackStart } from '@sentry/tanstackstart-react';
import { tanstackStart } from '@tanstack/react-start/plugin/vite';
export default defineConfig({
plugins: [
sentryTanstackStart({
authToken: process.env.SENTRY_AUTH_TOKEN,
org: 'my-org',
project: 'my-project',
}),
tanstackStart(),
],
});
```
**Tests**
- Added unit tests for sourceMaps.ts and sentryTanstackStart.ts covering
plugin composition, options passing, and source map settings logic
- Updated the E2E test to use the new plugin pattern
Closes#18664
Adds a shim for the `logger` namespace since we'll soon ship the logs
bundle in the loader and want to avoid breaking user apps when they
switch back to a bundle that does not include logs
closes#18826
When injecting tracing headers into fetch requests, the SDK was mutating
the user's original options object. This caused issues when users reused
config objects across requests or when the object was frozen (e.g., from
Immer's `produce()`), leading to silent failures. This change shallow
clones the options object before modifying it, ensuring the original
remains unchanged while still properly injecting the `sentry-trace` and
`baggage` headers.
Closes#18828
…ts/test-applications/cloudflare-hono (#18806)
Bumps [hono](https://github.com/honojs/hono) from 4.10.3 to 4.11.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/honojs/hono/releases">hono's
releases</a>.</em></p>
<blockquote>
<h2>v4.11.4</h2>
<h2>Security</h2>
<p>Fixed a JWT algorithm confusion issue in the JWT and JWK/JWKS
middleware.</p>
<p>Both middlewares now require an explicit algorithm configuration to
prevent the verification algorithm from being influenced by untrusted
JWT header values.</p>
<p>If you are using the JWT or JWK/JWKS middleware, please update to the
latest version as soon as possible.</p>
<h3>JWT middleware</h3>
<pre lang="ts"><code>import { jwt } from 'hono/jwt'
<p>app.use(
'/auth/*',
jwt({
secret: 'it-is-very-secret',
alg: 'HS256', // required
})
)
</code></pre></p>
<h3>JWK/JWKS middleware</h3>
<pre lang="ts"><code>import { jwk } from 'hono/jwk'
<p>app.use(
'/auth/*',
jwk({
jwks_uri: '<a
href="https://example.com/.well-known/jwks.json">https://example.com/.well-known/jwks.json</a>',
alg: ['RS256'], // required (asymmetric algorithms only)
})
)
</code></pre></p>
<p>For more details, see the Security Advisory.</p>
<ul>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4">https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4</a></li>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4">https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4</a></li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>test(utils/jwt): add missing algorithm types in jwa.test.ts by <a
href="https://github.com/flathill404"><code>@​flathill404</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
<li>chore: bump <code>@hono/eslint-config</code> and enable curly rule
by <a href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4620">honojs/hono#4620</a></li>
<li>docs(bun/websocket): Fixed a typo in hono/bun deprecation message
and updated test. by <a
href="https://github.com/Itsnotaka"><code>@​Itsnotaka</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4618">honojs/hono#4618</a></li>
<li>test: support <code>alg</code> option for JWT middleware by <a
href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4624">honojs/hono#4624</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/flathill404"><code>@​flathill404</code></a>
made their first contribution in <a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/honojs/hono/commit/28452f06319ef12df94b826450f36486e286565d"><code>28452f0</code></a>
4.11.4</li>
<li><a
href="https://github.com/honojs/hono/commit/190f6e28e2ca85ce3d1f2f54db1310f5f3eab134"><code>190f6e2</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/a48ef183d46c95053003dba4f107f95b5c637ffd"><code>a48ef18</code></a>
test: support <code>alg</code> option for JWT middleware (<a
href="https://redirect.github.com/honojs/hono/issues/4624">#4624</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/cc0aa7ae327ed84cc391d29086dec2a3e44e7a1f"><code>cc0aa7a</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/ef2a4b8d77711c9308a6ddca9e35d4ff321f97fe"><code>ef2a4b8</code></a>
docs(bun/websocket): Fixed a typo in hono/bun deprecation message and
updated...</li>
<li><a
href="https://github.com/honojs/hono/commit/8139399f68e3f3f60adffee0c49630d34310a361"><code>8139399</code></a>
chore: bump <code>@hono/eslint-config</code> and enable curly rule (<a
href="https://redirect.github.com/honojs/hono/issues/4620">#4620</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/4e872759b092e34458aeecb8b72e3e0c4d4f1784"><code>4e87275</code></a>
test(utils/jwt): add missing algorithm types in jwa.test.ts (<a
href="https://redirect.github.com/honojs/hono/issues/4606">#4606</a>)
(<a
href="https://redirect.github.com/honojs/hono/issues/4607">#4607</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/79977401a0c97122999464f47bd383a2959532fd"><code>7997740</code></a>
4.11.3</li>
<li><a
href="https://github.com/honojs/hono/commit/489af0b0825fa85e8b15f4659204bf622e0573b9"><code>489af0b</code></a>
fix(types): fix middleware union type merging in MergeMiddlewareResponse
(<a
href="https://redirect.github.com/honojs/hono/issues/4602">#4602</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/6ca01ec69b17c56f84fccd866702f7f999332030"><code>6ca01ec</code></a>
4.11.2</li>
<li>Additional commits viewable in <a
href="https://github.com/honojs/hono/compare/v4.10.3...v4.11.4">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hono&package-manager=npm_and_yarn&previous-version=4.10.3&new-version=4.11.4)](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 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 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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/getsentry/sentry-javascript/network/alerts).
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…TADATA is enabled (#18855)
The `CF_VERSION_METADATA` only has one reason - to add the release id.
Since we already set the release when `SENTRY_RELEASE` is enabled
automatically, we can do the same for `CF_VERSION_METADATA`. The docs
will then also be updated to state how the release id can be set in
different ways: getsentry/sentry-docs#16006Closes#18856 (added automatically)
Closes
[JS-1489](https://linear.app/getsentry/issue/JS-1489/featcloudflare-automatically-set-the-release-id-when-cf-version)
closes
[FE-681](https://linear.app/getsentry/issue/FE-681/senddefaultpii-sets-cloudflare-worker-ip-instead-of-the-one-from-the)
It seems that in some cases the headers do have a different casing. E.g.
in Cloudflare Workers the
`[CF-Connecting-IP](https://developers.cloudflare.com/fundamentals/reference/http-headers/#cf-connecting-ip)`
is actually send as `Cf-Connecting-Ip`.
<img width="635" height="223" alt="Screenshot 2026-01-19 at 13 15 27"
src="https://github.com/user-attachments/assets/e427e10d-35b7-4743-980c-3ff0d5cc1d51"
/>
According to [RFC7540
8.1.2](https://www.rfc-editor.org/rfc/rfc7540#section-8.1.2) the headers
are case-insensitive, but for HTTP2 they must be lowercase. So
theoretically this would fix also HTTP2 lower case headers
@JPeer264JPeer264 self-assigned this Jan 19, 2026
@JPeer264
JPeer264 changed the base branch from develop to masterJanuary 19, 2026 13:19
Comment threadCHANGELOG.md Outdated

@nicohrubecnicohrubec left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

Comment threadCHANGELOG.md
@JPeer264
JPeer264force-pushed the prepare-release/10.35.0 branch from 5c9ab95 to 8160adaCompareJanuary 19, 2026 13:30

@andreiborzaandreiborza left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@github-actions

Copy link
Copy Markdown
Contributor

size-limit report 📦

PathSize% ChangeChange
@sentry/browser25.11 kBaddedadded
@sentry/browser - with treeshaking flags23.61 kBaddedadded
@sentry/browser (incl. Tracing)41.87 kBaddedadded
@sentry/browser (incl. Tracing, Profiling)46.45 kBaddedadded
@sentry/browser (incl. Tracing, Replay)80.47 kBaddedadded
@sentry/browser (incl. Tracing, Replay) - with treeshaking flags70.16 kBaddedadded
@sentry/browser (incl. Tracing, Replay with Canvas)85.17 kBaddedadded
@sentry/browser (incl. Tracing, Replay, Feedback)97.37 kBaddedadded
@sentry/browser (incl. Feedback)41.83 kBaddedadded
@sentry/browser (incl. sendFeedback)29.79 kBaddedadded
@sentry/browser (incl. FeedbackAsync)34.79 kBaddedadded
@sentry/browser (incl. Metrics)26.21 kBaddedadded
@sentry/browser (incl. Logs)26.37 kBaddedadded
@sentry/browser (incl. Metrics & Logs)27.02 kBaddedadded
@sentry/react26.84 kBaddedadded
@sentry/react (incl. Tracing)44.09 kBaddedadded
@sentry/vue29.56 kBaddedadded
@sentry/vue (incl. Tracing)43.67 kBaddedadded
@sentry/svelte25.12 kBaddedadded
CDN Bundle27.67 kBaddedadded
CDN Bundle (incl. Tracing)42.67 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics)43.5 kBaddedadded
CDN Bundle (incl. Tracing, Replay)79.37 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback)84.81 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics)85.72 kBaddedadded
CDN Bundle - uncompressed81.08 kBaddedadded
CDN Bundle (incl. Tracing) - uncompressed126.5 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics) - uncompressed129.33 kBaddedadded
CDN Bundle (incl. Tracing, Replay) - uncompressed243.03 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed255.83 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) - uncompressed258.64 kBaddedadded
@sentry/nextjs (client)46.44 kBaddedadded
@sentry/sveltekit (client)42.25 kBaddedadded
@sentry/node-core51.94 kBaddedadded
@sentry/node162.19 kBaddedadded
@sentry/node - without tracing93.35 kBaddedadded
@sentry/aws-serverless108.85 kBaddedadded

@github-actions

Copy link
Copy Markdown
Contributor

node-overhead report 🧳

Note: This is a synthetic benchmark with a minimal express app and does not necessarily reflect the real-world performance impact in an application.

ScenarioRequests/s% of BaselinePrev. Requests/sChange %
GET Baseline8,919--added
GET With Sentry1,68319%-added
GET With Sentry (error only)6,14769%-added
POST Baseline1,214--added
POST With Sentry59549%-added
POST With Sentry (error only)1,05187%-added
MYSQL Baseline3,367--added
MYSQL With Sentry51015%-added
MYSQL With Sentry (error only)2,75182%-added

@JPeer264
JPeer264 enabled auto-merge January 19, 2026 13:42
@JPeer264
JPeer264 merged commit 024f819 into masterJan 19, 2026
407 of 410 checks passed
@JPeer264
JPeer264 deleted the prepare-release/10.35.0 branch January 19, 2026 13:47
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants

@JPeer264@nicohrubec@RulaKhaled@andreiborza@Lms24@chargome@oioki@rreckonerr@s1gr1d
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Universal Dark Mode - works on any site\n(function() {\n var enabled = true;\n \n function applyDarkMode() {\n if (!enabled) return;\n \n // Create style element if it doesn't exist\n var style = document.getElementById('universal-dark-mode-style');\n if (!style) {\n style = document.createElement('style');\n style.id = 'universal-dark-mode-style';\n document.head.appendChild(style);\n }\n \n // Dark mode CSS - inverts colors but preserves images/video\n style.textContent = '\n /* Invert everything except media */\n html {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #1a1a2e !important;\n }\n \n /* Restore images, videos, iframes, canvas */\n img, video, iframe, canvas, svg, picture, [style*=\"background-image\"] {\n filter: invert(1) hue-rotate(180deg) !important;\n }\n \n /* Preserve specific elements that should not be inverted */\n .no-dark-mode, .no-dark-mode *,\n [data-theme=\"light\"], [data-theme=\"light\"],\n .ace_editor, .ace_editor *,\n .CodeMirror, .CodeMirror *,\n .monaco-editor, .monaco-editor *,\n .markdown-body pre, .markdown-body pre *,\n .highlight, .highlight *,\n pre code, pre code * {\n filter: none !important;\n }\n \n /* Fix common UI elements */\n .modal, .popup, .dropdown-menu, .tooltip, .popover {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #2d2d44 !important;\n border-color: #444 !important;\n }\n \n /* Scrollbars */\n ::-webkit-scrollbar { background: #1a1a2e !important; }\n ::-webkit-scrollbar-thumb { background: #444 !important; }\n ::-webkit-scrollbar-thumb:hover { background: #555 !important; }\n \n /* Selection */\n ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ';\n }\n \n function removeDarkMode() {\n var style = document.getElementById('universal-dark-mode-style');\n if (style) style.remove();\n }\n \n // Toggle with Alt+Shift+D\n document.addEventListener('keydown', function(e) {\n if (e.altKey && e.shiftKey && e.key === 'D') {\n e.preventDefault();\n enabled = !enabled;\n if (enabled) {\n applyDarkMode();\n console.log('[Universal Dark Mode] Enabled');\n } else {\n removeDarkMode();\n console.log('[Universal Dark Mode] Disabled');\n }\n }\n });\n \n // Apply on load\n applyDarkMode();\n \n // Re-apply on dynamic content\n var observer = new MutationObserver(function(mutations) {\n if (enabled && !document.getElementById('universal-dark-mode-style')) {\n applyDarkMode();\n }\n });\n observer.observe(document.head, { childList: true });\n \n console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle');\n})();", "Universal Dark Mode"); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })();
Skip to content

meta(changelog): Update changelog for 10.35.0 - #18886

Merged
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0
Jan 19, 2026
Merged

meta(changelog): Update changelog for 10.35.0#18886
JPeer264 merged 23 commits into
masterfrom
prepare-release/10.35.0

Conversation

@JPeer264

Copy link
Copy Markdown
Member

No description provided.

github-actionsBotand others added 22 commits January 14, 2026 17:08
[Gitflow] Merge master into develop
This PR adds `ignored` as a new allowed client report discard reason.
The new reason can already be used (see
[ticket](https://linear.app/getsentry/issue/FE-678/add-new-ignore-discard-reason-for-client-reports)
for details). Technically, we only need it right now for span-first to
record `ignoreSpans` hits. But this reason also meant for more telemetry
types, so we can merge it into develop already.
This is only a temporary solution for LangChain v1 tests. LangChain
changed the way they handle internal API errors occurring during gen_ai
spans. For now, we’ll comment this out to unblock CI, then circle back
with a proper solution.
Ticket (TBD):
https://linear.app/getsentry/issue/JS-1477/fix-internal-error-tests-for-langchain-v1
…8823)
Resolves an issue where spans weren’t being processed because v6 emits
spans with a "default" name. We now validate using both the span name
(v5) and the operation ID (v6).
Closes#18824 (added automatically)
…18829)
Before submitting a pull request, please take a look at our
[Contributing](https://github.com/getsentry/sentry-javascript/blob/master/CONTRIBUTING.md)
guidelines and verify:
- [ ] If you've added code that should be tested, please add tests.
- [ ] Ensure your code lints and the test suite passes (`yarn lint`) &
(`yarn test`).
- [ ] Link an issue if there is one related to your pull request. If no
issue is linked, one will be auto-generated and linked.
Closes #issue_link_here
Closes#18830 (added automatically)
Bumps our dev dependency sveltekit version to the latest version in
light of
GHSA-j2f3-wq62-6q46.
To be clear, this package is only used a dev dependency, so it wasn't
shipped in our SvelteKit SDK NPM package.
Closes#18849 (added automatically)
Bumps affected sveltekit and node adapter versions in our e2e test apps.
Also took the opportunity to pin two `^` version ranges to the specific
latest version
| File | Package | Old Version | New Version |
| ----------------------------------------- | ------------------------ |
----------- | ----------- |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/kit` | `2.31.0` |
`2.49.5` |
| `sveltekit-2-kit-tracing/package.json` | `@sveltejs/adapter-node` |
`^5.3.1` | `5.5.1` |
| `sveltekit-2-svelte-5/package.json` | `@sveltejs/kit` | `2.41.0` |
`2.49.5` |
| `sveltekit-2/package.json` | `@sveltejs/kit` | `2.21.3` | `2.49.5` |
| `sveltekit-cloudflare-pages/package.json` | `@sveltejs/kit` |
`^2.21.3` | `2.49.5` |
Closes#18851 (added automatically)
This PR adds the external contributor to the CHANGELOG.md file, so that
they are credited for their contribution. See #18858
Co-authored-by: andreiborza <168741329+andreiborza@users.noreply.github.com>
…cs` (#18785)
closes#18783
ref #16314
Note that metrics were bundled into the base config and will be moved
into this bundle starting with v11 (ref
#18583)
…age automatic source map uploads (#18712)
Adds sentryTanstackStart Vite plugin to enable automatic source map
uploads in TanStack Start applications.
**What it does**
I tried to align with what we do in other SDKs (e.g. SvelteKit). On a
high-level it:
- Uploads source maps to Sentry using @sentry/vite-plugin if configured,
passing through all options set by the user (including release,
sourcemaps, headers, etc.)
- If the source maps option is not defined and also the files to delete
option is not defined, we enable cleaning up all .map files after the
source map upload
- If the source map configuration is undefined, we additionally enable
hidden source map generation
**Usage**
```
// vite.config.ts
import { defineConfig } from 'vite';
import { sentryTanstackStart } from '@sentry/tanstackstart-react';
import { tanstackStart } from '@tanstack/react-start/plugin/vite';
export default defineConfig({
plugins: [
sentryTanstackStart({
authToken: process.env.SENTRY_AUTH_TOKEN,
org: 'my-org',
project: 'my-project',
}),
tanstackStart(),
],
});
```
**Tests**
- Added unit tests for sourceMaps.ts and sentryTanstackStart.ts covering
plugin composition, options passing, and source map settings logic
- Updated the E2E test to use the new plugin pattern
Closes#18664
Adds a shim for the `logger` namespace since we'll soon ship the logs
bundle in the loader and want to avoid breaking user apps when they
switch back to a bundle that does not include logs
closes#18826
When injecting tracing headers into fetch requests, the SDK was mutating
the user's original options object. This caused issues when users reused
config objects across requests or when the object was frozen (e.g., from
Immer's `produce()`), leading to silent failures. This change shallow
clones the options object before modifying it, ensuring the original
remains unchanged while still properly injecting the `sentry-trace` and
`baggage` headers.
Closes#18828
…ts/test-applications/cloudflare-hono (#18806)
Bumps [hono](https://github.com/honojs/hono) from 4.10.3 to 4.11.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/honojs/hono/releases">hono's
releases</a>.</em></p>
<blockquote>
<h2>v4.11.4</h2>
<h2>Security</h2>
<p>Fixed a JWT algorithm confusion issue in the JWT and JWK/JWKS
middleware.</p>
<p>Both middlewares now require an explicit algorithm configuration to
prevent the verification algorithm from being influenced by untrusted
JWT header values.</p>
<p>If you are using the JWT or JWK/JWKS middleware, please update to the
latest version as soon as possible.</p>
<h3>JWT middleware</h3>
<pre lang="ts"><code>import { jwt } from 'hono/jwt'
<p>app.use(
'/auth/*',
jwt({
secret: 'it-is-very-secret',
alg: 'HS256', // required
})
)
</code></pre></p>
<h3>JWK/JWKS middleware</h3>
<pre lang="ts"><code>import { jwk } from 'hono/jwk'
<p>app.use(
'/auth/*',
jwk({
jwks_uri: '<a
href="https://example.com/.well-known/jwks.json">https://example.com/.well-known/jwks.json</a>',
alg: ['RS256'], // required (asymmetric algorithms only)
})
)
</code></pre></p>
<p>For more details, see the Security Advisory.</p>
<ul>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4">https://github.com/honojs/hono/security/advisories/GHSA-f67f-6cw9-8mq4</a></li>
<li><a
href="https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4">https://github.com/honojs/hono/security/advisories/GHSA-3vhc-576x-3qv4</a></li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>test(utils/jwt): add missing algorithm types in jwa.test.ts by <a
href="https://github.com/flathill404"><code>@​flathill404</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
<li>chore: bump <code>@hono/eslint-config</code> and enable curly rule
by <a href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in
<a
href="https://redirect.github.com/honojs/hono/pull/4620">honojs/hono#4620</a></li>
<li>docs(bun/websocket): Fixed a typo in hono/bun deprecation message
and updated test. by <a
href="https://github.com/Itsnotaka"><code>@​Itsnotaka</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4618">honojs/hono#4618</a></li>
<li>test: support <code>alg</code> option for JWT middleware by <a
href="https://github.com/yusukebe"><code>@​yusukebe</code></a> in <a
href="https://redirect.github.com/honojs/hono/pull/4624">honojs/hono#4624</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/flathill404"><code>@​flathill404</code></a>
made their first contribution in <a
href="https://redirect.github.com/honojs/hono/pull/4607">honojs/hono#4607</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/honojs/hono/commit/28452f06319ef12df94b826450f36486e286565d"><code>28452f0</code></a>
4.11.4</li>
<li><a
href="https://github.com/honojs/hono/commit/190f6e28e2ca85ce3d1f2f54db1310f5f3eab134"><code>190f6e2</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/a48ef183d46c95053003dba4f107f95b5c637ffd"><code>a48ef18</code></a>
test: support <code>alg</code> option for JWT middleware (<a
href="https://redirect.github.com/honojs/hono/issues/4624">#4624</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/cc0aa7ae327ed84cc391d29086dec2a3e44e7a1f"><code>cc0aa7a</code></a>
Merge commit from fork</li>
<li><a
href="https://github.com/honojs/hono/commit/ef2a4b8d77711c9308a6ddca9e35d4ff321f97fe"><code>ef2a4b8</code></a>
docs(bun/websocket): Fixed a typo in hono/bun deprecation message and
updated...</li>
<li><a
href="https://github.com/honojs/hono/commit/8139399f68e3f3f60adffee0c49630d34310a361"><code>8139399</code></a>
chore: bump <code>@hono/eslint-config</code> and enable curly rule (<a
href="https://redirect.github.com/honojs/hono/issues/4620">#4620</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/4e872759b092e34458aeecb8b72e3e0c4d4f1784"><code>4e87275</code></a>
test(utils/jwt): add missing algorithm types in jwa.test.ts (<a
href="https://redirect.github.com/honojs/hono/issues/4606">#4606</a>)
(<a
href="https://redirect.github.com/honojs/hono/issues/4607">#4607</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/79977401a0c97122999464f47bd383a2959532fd"><code>7997740</code></a>
4.11.3</li>
<li><a
href="https://github.com/honojs/hono/commit/489af0b0825fa85e8b15f4659204bf622e0573b9"><code>489af0b</code></a>
fix(types): fix middleware union type merging in MergeMiddlewareResponse
(<a
href="https://redirect.github.com/honojs/hono/issues/4602">#4602</a>)</li>
<li><a
href="https://github.com/honojs/hono/commit/6ca01ec69b17c56f84fccd866702f7f999332030"><code>6ca01ec</code></a>
4.11.2</li>
<li>Additional commits viewable in <a
href="https://github.com/honojs/hono/compare/v4.10.3...v4.11.4">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hono&package-manager=npm_and_yarn&previous-version=4.10.3&new-version=4.11.4)](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 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 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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/getsentry/sentry-javascript/network/alerts).
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…TADATA is enabled (#18855)
The `CF_VERSION_METADATA` only has one reason - to add the release id.
Since we already set the release when `SENTRY_RELEASE` is enabled
automatically, we can do the same for `CF_VERSION_METADATA`. The docs
will then also be updated to state how the release id can be set in
different ways: getsentry/sentry-docs#16006Closes#18856 (added automatically)
Closes
[JS-1489](https://linear.app/getsentry/issue/JS-1489/featcloudflare-automatically-set-the-release-id-when-cf-version)
closes
[FE-681](https://linear.app/getsentry/issue/FE-681/senddefaultpii-sets-cloudflare-worker-ip-instead-of-the-one-from-the)
It seems that in some cases the headers do have a different casing. E.g.
in Cloudflare Workers the
`[CF-Connecting-IP](https://developers.cloudflare.com/fundamentals/reference/http-headers/#cf-connecting-ip)`
is actually send as `Cf-Connecting-Ip`.
<img width="635" height="223" alt="Screenshot 2026-01-19 at 13 15 27"
src="https://github.com/user-attachments/assets/e427e10d-35b7-4743-980c-3ff0d5cc1d51"
/>
According to [RFC7540
8.1.2](https://www.rfc-editor.org/rfc/rfc7540#section-8.1.2) the headers
are case-insensitive, but for HTTP2 they must be lowercase. So
theoretically this would fix also HTTP2 lower case headers
@JPeer264JPeer264 self-assigned this Jan 19, 2026
@JPeer264
JPeer264 changed the base branch from develop to masterJanuary 19, 2026 13:19
Comment threadCHANGELOG.md Outdated

@nicohrubecnicohrubec left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

Comment threadCHANGELOG.md
@JPeer264
JPeer264force-pushed the prepare-release/10.35.0 branch from 5c9ab95 to 8160adaCompareJanuary 19, 2026 13:30

@andreiborzaandreiborza left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@github-actions

Copy link
Copy Markdown
Contributor

size-limit report 📦

PathSize% ChangeChange
@sentry/browser25.11 kBaddedadded
@sentry/browser - with treeshaking flags23.61 kBaddedadded
@sentry/browser (incl. Tracing)41.87 kBaddedadded
@sentry/browser (incl. Tracing, Profiling)46.45 kBaddedadded
@sentry/browser (incl. Tracing, Replay)80.47 kBaddedadded
@sentry/browser (incl. Tracing, Replay) - with treeshaking flags70.16 kBaddedadded
@sentry/browser (incl. Tracing, Replay with Canvas)85.17 kBaddedadded
@sentry/browser (incl. Tracing, Replay, Feedback)97.37 kBaddedadded
@sentry/browser (incl. Feedback)41.83 kBaddedadded
@sentry/browser (incl. sendFeedback)29.79 kBaddedadded
@sentry/browser (incl. FeedbackAsync)34.79 kBaddedadded
@sentry/browser (incl. Metrics)26.21 kBaddedadded
@sentry/browser (incl. Logs)26.37 kBaddedadded
@sentry/browser (incl. Metrics & Logs)27.02 kBaddedadded
@sentry/react26.84 kBaddedadded
@sentry/react (incl. Tracing)44.09 kBaddedadded
@sentry/vue29.56 kBaddedadded
@sentry/vue (incl. Tracing)43.67 kBaddedadded
@sentry/svelte25.12 kBaddedadded
CDN Bundle27.67 kBaddedadded
CDN Bundle (incl. Tracing)42.67 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics)43.5 kBaddedadded
CDN Bundle (incl. Tracing, Replay)79.37 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback)84.81 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics)85.72 kBaddedadded
CDN Bundle - uncompressed81.08 kBaddedadded
CDN Bundle (incl. Tracing) - uncompressed126.5 kBaddedadded
CDN Bundle (incl. Tracing, Logs, Metrics) - uncompressed129.33 kBaddedadded
CDN Bundle (incl. Tracing, Replay) - uncompressed243.03 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed255.83 kBaddedadded
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) - uncompressed258.64 kBaddedadded
@sentry/nextjs (client)46.44 kBaddedadded
@sentry/sveltekit (client)42.25 kBaddedadded
@sentry/node-core51.94 kBaddedadded
@sentry/node162.19 kBaddedadded
@sentry/node - without tracing93.35 kBaddedadded
@sentry/aws-serverless108.85 kBaddedadded

@github-actions

Copy link
Copy Markdown
Contributor

node-overhead report 🧳

Note: This is a synthetic benchmark with a minimal express app and does not necessarily reflect the real-world performance impact in an application.

ScenarioRequests/s% of BaselinePrev. Requests/sChange %
GET Baseline8,919--added
GET With Sentry1,68319%-added
GET With Sentry (error only)6,14769%-added
POST Baseline1,214--added
POST With Sentry59549%-added
POST With Sentry (error only)1,05187%-added
MYSQL Baseline3,367--added
MYSQL With Sentry51015%-added
MYSQL With Sentry (error only)2,75182%-added

@JPeer264
JPeer264 enabled auto-merge January 19, 2026 13:42
@JPeer264
JPeer264 merged commit 024f819 into masterJan 19, 2026
407 of 410 checks passed
@JPeer264
JPeer264 deleted the prepare-release/10.35.0 branch January 19, 2026 13:47
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants

@JPeer264@nicohrubec@RulaKhaled@andreiborza@Lms24@chargome@oioki@rreckonerr@s1gr1d