Skip to content

Commit 4d66d52

Browse files
Merge pull request #18821 from getsentry/master
[Gitflow] Merge master into develop
2 parents 5da93d8 + bee7225 commit 4d66d52

File tree

56 files changed

+187
-158
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+187
-158
lines changed

CHANGELOG.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,19 @@
44

55
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
66

7-
- **feat(tanstackstart-react): Add `wrapMiddlewaresWithSentry` for manual middleware instrumentation**
7+
## 10.34.0
8+
9+
### Important Changes
10+
11+
- **feat(core): Add option to enhance the fetch error message ([#18466](https://github.com/getsentry/sentry-javascript/pull/18466))**
12+
13+
You can now enable enhanced fetch error messages by setting the `enhancedFetchErrorMessage` option. When enabled, the SDK will include additional context in fetch error messages to help with debugging.
14+
15+
- **feat(nextjs): Add routeManifestInjection option to exclude routes from client bundle ([#18798](https://github.com/getsentry/sentry-javascript/pull/18798))**
16+
17+
A new `routeManifestInjection` option allows you to exclude sensitive routes from being injected into the client bundle.
18+
19+
- **feat(tanstackstart-react): Add `wrapMiddlewaresWithSentry` for manual middleware instrumentation ([#18680](https://github.com/getsentry/sentry-javascript/pull/18680))**
820

921
You can now wrap your middlewares using `wrapMiddlewaresWithSentry`, allowing you to trace middleware execution in your TanStack Start application.
1022

@@ -20,6 +32,23 @@
2032
export const [wrappedLoggingMiddleware] = wrapMiddlewaresWithSentry({ loggingMiddleware });
2133
```
2234

35+
### Other Changes
36+
37+
- feat(browser): Add CDN bundle for `tracing.logs.metrics` ([#18784](https://github.com/getsentry/sentry-javascript/pull/18784))
38+
- feat(core,node-core): Consolidate bun and node types with ServerRuntimeOptions ([#18734](https://github.com/getsentry/sentry-javascript/pull/18734))
39+
- feat(nextjs): Remove tracing from generation function template ([#18733](https://github.com/getsentry/sentry-javascript/pull/18733))
40+
- fix(core): Don't record outcomes for failed client reports ([#18808](https://github.com/getsentry/sentry-javascript/pull/18808))
41+
- fix(deno,cloudflare): Prioritize name from params over name from options ([#18800](https://github.com/getsentry/sentry-javascript/pull/18800))
42+
- fix(web-vitals): Add error handling for invalid object keys in `WeakMap` ([#18809](https://github.com/getsentry/sentry-javascript/pull/18809))
43+
44+
<details>
45+
<summary><strong>Internal Changes</strong></summary>
46+
47+
- ref(nextjs): Split `withSentryConfig` ([#18777](https://github.com/getsentry/sentry-javascript/pull/18777))
48+
- test(e2e): Pin @shopify/remix-oxygen to unblock ci ([#18811](https://github.com/getsentry/sentry-javascript/pull/18811))
49+
50+
</details>
51+
2352
## 10.33.0
2453

2554
### Important Changes

dev-packages/browser-integration-tests/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/browser-integration-tests",
3-
"version": "10.33.0",
3+
"version": "10.34.0",
44
"main": "index.js",
55
"license": "MIT",
66
"engines": {
@@ -46,7 +46,7 @@
4646
"@babel/preset-typescript": "^7.16.7",
4747
"@playwright/test": "~1.56.0",
4848
"@sentry-internal/rrweb": "2.34.0",
49-
"@sentry/browser": "10.33.0",
49+
"@sentry/browser": "10.34.0",
5050
"@supabase/supabase-js": "2.49.3",
5151
"axios": "^1.12.2",
5252
"babel-loader": "^8.2.2",

dev-packages/bundle-analyzer-scenarios/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/bundle-analyzer-scenarios",
3-
"version": "10.33.0",
3+
"version": "10.34.0",
44
"description": "Scenarios to test bundle analysis with",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/dev-packages/bundle-analyzer-scenarios",

dev-packages/bundler-tests/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/bundler-tests",
3-
"version": "10.33.0",
3+
"version": "10.34.0",
44
"description": "Bundler tests for Sentry Browser SDK",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/bundler-tests",
@@ -13,7 +13,7 @@
1313
},
1414
"dependencies": {
1515
"@rollup/plugin-node-resolve": "^15.2.3",
16-
"@sentry/browser": "10.33.0",
16+
"@sentry/browser": "10.34.0",
1717
"rollup": "^4.0.0",
1818
"vite": "^5.0.0",
1919
"vitest": "^3.2.4",

dev-packages/clear-cache-gh-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sentry-internal/clear-cache-gh-action",
33
"description": "An internal Github Action to clear GitHub caches.",
4-
"version": "10.33.0",
4+
"version": "10.34.0",
55
"license": "MIT",
66
"engines": {
77
"node": ">=18"

dev-packages/cloudflare-integration-tests/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/cloudflare-integration-tests",
3-
"version": "10.33.0",
3+
"version": "10.34.0",
44
"license": "MIT",
55
"engines": {
66
"node": ">=18"
@@ -14,12 +14,12 @@
1414
},
1515
"dependencies": {
1616
"@langchain/langgraph": "^1.0.1",
17-
"@sentry/cloudflare": "10.33.0",
17+
"@sentry/cloudflare": "10.34.0",
1818
"hono": "^4.0.0"
1919
},
2020
"devDependencies": {
2121
"@cloudflare/workers-types": "^4.20250922.0",
22-
"@sentry-internal/test-utils": "10.33.0",
22+
"@sentry-internal/test-utils": "10.34.0",
2323
"eslint-plugin-regexp": "^1.15.0",
2424
"vitest": "^3.2.4",
2525
"wrangler": "4.22.0"

dev-packages/e2e-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/e2e-tests",
3-
"version": "10.33.0",
3+
"version": "10.34.0",
44
"license": "MIT",
55
"private": true,
66
"scripts": {

dev-packages/external-contributor-gh-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sentry-internal/external-contributor-gh-action",
33
"description": "An internal Github Action to add external contributors to the CHANGELOG.md file.",
4-
"version": "10.33.0",
4+
"version": "10.34.0",
55
"license": "MIT",
66
"engines": {
77
"node": ">=18"

dev-packages/node-core-integration-tests/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/node-core-integration-tests",
3-
"version": "10.33.0",
3+
"version": "10.34.0",
44
"license": "MIT",
55
"engines": {
66
"node": ">=18"
@@ -34,8 +34,8 @@
3434
"@opentelemetry/resources": "^2.2.0",
3535
"@opentelemetry/sdk-trace-base": "^2.2.0",
3636
"@opentelemetry/semantic-conventions": "^1.37.0",
37-
"@sentry/core": "10.33.0",
38-
"@sentry/node-core": "10.33.0",
37+
"@sentry/core": "10.34.0",
38+
"@sentry/node-core": "10.34.0",
3939
"body-parser": "^1.20.3",
4040
"cors": "^2.8.5",
4141
"cron": "^3.1.6",

dev-packages/node-integration-tests/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/node-integration-tests",
3-
"version": "10.33.0",
3+
"version": "10.34.0",
44
"license": "MIT",
55
"engines": {
66
"node": ">=18"
@@ -36,9 +36,9 @@
3636
"@nestjs/core": "^11",
3737
"@nestjs/platform-express": "^11",
3838
"@prisma/client": "6.15.0",
39-
"@sentry/aws-serverless": "10.33.0",
40-
"@sentry/core": "10.33.0",
41-
"@sentry/node": "10.33.0",
39+
"@sentry/aws-serverless": "10.34.0",
40+
"@sentry/core": "10.34.0",
41+
"@sentry/node": "10.34.0",
4242
"@types/mongodb": "^3.6.20",
4343
"@types/mysql": "^2.15.21",
4444
"@types/pg": "^8.6.5",
@@ -83,7 +83,7 @@
8383
"yargs": "^16.2.0"
8484
},
8585
"devDependencies": {
86-
"@sentry-internal/test-utils": "10.33.0",
86+
"@sentry-internal/test-utils": "10.34.0",
8787
"@types/amqplib": "^0.10.5",
8888
"@types/node-cron": "^3.0.11",
8989
"@types/node-schedule": "^2.1.7",

0 commit comments

Comments
 (0)