Skip to content

Commit 1ce9e77

Browse files
authored
Merge pull request #16544 from getsentry/prepare-release/9.28.1
meta(changelog): Update changelog for 9.28.1
2 parents 2a7c1a9 + 0b0942f commit 1ce9e77

File tree

11 files changed

+84
-68
lines changed

11 files changed

+84
-68
lines changed

.github/actions/install-playwright/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ runs:
3434
working-directory: ${{ inputs.cwd }}
3535

3636
- name: Install Playwright system dependencies only (cached)
37-
run: npx playwright install-deps ${{ inputs.browsers || 'chromium webkit firefox' }}
37+
env:
38+
PLAYWRIGHT_BROWSERS: ${{ inputs.browsers || 'chromium webkit firefox' }}
39+
run: npx playwright install-deps "$PLAYWRIGHT_BROWSERS"
3840
if: steps.playwright-cache.outputs.cache-hit == 'true'
3941
shell: bash
4042
working-directory: ${{ inputs.cwd }}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44

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

7+
## 9.28.1
8+
9+
- feat(deps): Bump @sentry/cli from 2.45.0 to 2.46.0 ([#16516](https://github.com/getsentry/sentry-javascript/pull/16516))
10+
- fix(nextjs): Avoid tracing calls to symbolication server on dev ([#16533](https://github.com/getsentry/sentry-javascript/pull/16533))
11+
- fix(sveltekit): Add import attribute for node exports ([#16528](https://github.com/getsentry/sentry-javascript/pull/16528))
12+
13+
Work in this release was contributed by @eltigerchino. Thank you for your contribution!
14+
715
## 9.28.0
816

917
### Important Changes

dev-packages/e2e-tests/test-applications/sveltekit-2-svelte-5/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@sentry-internal/test-utils": "link:../../../test-utils",
2424
"@sentry/core": "latest || *",
2525
"@sveltejs/adapter-auto": "^3.0.0",
26-
"@sveltejs/kit": "2.21.2",
26+
"@sveltejs/kit": "^2.21.3",
2727
"@sveltejs/vite-plugin-svelte": "^3.0.0",
2828
"svelte": "^5.0.0-next.115",
2929
"svelte-check": "^3.6.0",

dev-packages/e2e-tests/test-applications/sveltekit-2/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@sentry/core": "latest || *",
2424
"@sveltejs/adapter-auto": "^3.0.0",
2525
"@sveltejs/adapter-node": "^2.0.0",
26-
"@sveltejs/kit": "2.21.2",
26+
"@sveltejs/kit": "^2.21.3",
2727
"@sveltejs/vite-plugin-svelte": "^3.0.0",
2828
"svelte": "^4.2.8",
2929
"svelte-check": "^3.6.0",

dev-packages/e2e-tests/test-applications/sveltekit-cloudflare-pages/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"devDependencies": {
2121
"@playwright/test": "^1.45.3",
2222
"@sveltejs/adapter-cloudflare": "^5.0.3",
23-
"@sveltejs/kit": "2.21.2",
23+
"@sveltejs/kit": "^2.21.3",
2424
"@sveltejs/vite-plugin-svelte": "^5.0.3",
2525
"svelte": "^5.20.2",
2626
"svelte-check": "^4.1.4",

packages/core/src/types-hoist/options.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,6 @@ export interface ClientOptions<TO extends BaseTransportOptions = BaseTransportOp
356356

357357
/**
358358
* This function can be defined to modify a child span before it's sent.
359-
* Returning `null` will cause this span to be dropped.
360359
*
361360
* Note that this function is only called for child spans and not for the root span (formerly known as transaction).
362361
* If you want to modify or drop the root span, use {@link Options.beforeSendTransaction} instead.

packages/nextjs/src/common/devErrorSymbolicationEventProcessor.ts

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -192,22 +192,24 @@ async function resolveStackFrames(
192192
const controller = new AbortController();
193193
const timer = setTimeout(() => controller.abort(), 3000);
194194

195-
const res = await fetch(
196-
`${
197-
// eslint-disable-next-line no-restricted-globals
198-
typeof window === 'undefined' ? 'http://localhost:3000' : '' // TODO: handle the case where users define a different port
199-
}${basePath}/__nextjs_original-stack-frames`,
200-
{
201-
method: 'POST',
202-
headers: {
203-
'Content-Type': 'application/json',
195+
const res = await suppressTracing(() =>
196+
fetch(
197+
`${
198+
// eslint-disable-next-line no-restricted-globals
199+
typeof window === 'undefined' ? 'http://localhost:3000' : '' // TODO: handle the case where users define a different port
200+
}${basePath}/__nextjs_original-stack-frames`,
201+
{
202+
method: 'POST',
203+
headers: {
204+
'Content-Type': 'application/json',
205+
},
206+
signal: controller.signal,
207+
body: JSON.stringify(postBody),
204208
},
205-
signal: controller.signal,
206-
body: JSON.stringify(postBody),
207-
},
208-
).finally(() => {
209-
clearTimeout(timer);
210-
});
209+
).finally(() => {
210+
clearTimeout(timer);
211+
}),
212+
);
211213

212214
if (!res.ok || res.status === 204) {
213215
return null;

packages/react-router/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"@opentelemetry/instrumentation": "0.57.2",
4040
"@opentelemetry/semantic-conventions": "^1.34.0",
4141
"@sentry/browser": "9.28.0",
42-
"@sentry/cli": "^2.45.0",
42+
"@sentry/cli": "^2.46.0",
4343
"@sentry/core": "9.28.0",
4444
"@sentry/node": "9.28.0",
4545
"@sentry/react": "9.28.0",

packages/remix/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"@opentelemetry/instrumentation": "^0.57.2",
6969
"@opentelemetry/semantic-conventions": "^1.34.0",
7070
"@remix-run/router": "1.x",
71-
"@sentry/cli": "^2.45.0",
71+
"@sentry/cli": "^2.46.0",
7272
"@sentry/core": "9.28.0",
7373
"@sentry/node": "9.28.0",
7474
"@sentry/opentelemetry": "9.28.0",

packages/sveltekit/package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@
2828
"import": "./build/esm/index.client.js",
2929
"require": "./build/cjs/index.client.js"
3030
},
31-
"node": "./build/cjs/index.server.js"
31+
"node": {
32+
"import": "./build/esm/index.server.js",
33+
"require": "./build/cjs/index.server.js"
34+
}
3235
}
3336
},
3437
"publishConfig": {
@@ -83,5 +86,6 @@
8386
},
8487
"volta": {
8588
"extends": "../../package.json"
86-
}
89+
},
90+
"sideEffects": false
8791
}

yarn.lock

Lines changed: 45 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -6642,75 +6642,75 @@
66426642
resolved "https://registry.yarnpkg.com/@sentry/cli-darwin/-/cli-darwin-2.42.2.tgz#a32a4f226e717122b37d9969e8d4d0e14779f720"
66436643
integrity sha512-GtJSuxER7Vrp1IpxdUyRZzcckzMnb4N5KTW7sbTwUiwqARRo+wxS+gczYrS8tdgtmXs5XYhzhs+t4d52ITHMIg==
66446644

6645-
"@sentry/cli-darwin@2.45.0":
6646-
version "2.45.0"
6647-
resolved "https://registry.yarnpkg.com/@sentry/cli-darwin/-/cli-darwin-2.45.0.tgz#e3d6feae4fadcfdf91db9c7b9c4689a66d3d8d19"
6648-
integrity sha512-p4Uxfv/L2fQdP3/wYnKVVz9gzZJf/1Xp9D+6raax/3Bu5y87yHYUqcdt98y/VAXQD4ofp2QgmhGUVPofvQNZmg==
6645+
"@sentry/cli-darwin@2.46.0":
6646+
version "2.46.0"
6647+
resolved "https://registry.yarnpkg.com/@sentry/cli-darwin/-/cli-darwin-2.46.0.tgz#e07ff66f03e8cb6e1988b7673ae5dbd6ff957b1d"
6648+
integrity sha512-5Ll+e5KAdIk9OYiZO8aifMBRNWmNyPjSqdjaHlBC1Qfh7pE3b1zyzoHlsUazG0bv0sNrSGea8e7kF5wIO1hvyg==
66496649

66506650
"@sentry/cli-linux-arm64@2.42.2":
66516651
version "2.42.2"
66526652
resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm64/-/cli-linux-arm64-2.42.2.tgz#1c06c83ff21f51ec23acf5be3b1f8c7553bf86b1"
66536653
integrity sha512-BOxzI7sgEU5Dhq3o4SblFXdE9zScpz6EXc5Zwr1UDZvzgXZGosUtKVc7d1LmkrHP8Q2o18HcDWtF3WvJRb5Zpw==
66546654

6655-
"@sentry/cli-linux-arm64@2.45.0":
6656-
version "2.45.0"
6657-
resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm64/-/cli-linux-arm64-2.45.0.tgz#384c8e17f7e7dc007d164033d0e7c75aa83a2e9b"
6658-
integrity sha512-gUcLoEjzg7AIc4QQGEZwRHri+EHf3Gcms9zAR1VHiNF3/C/jL4WeDPJF2YiWAQt6EtH84tHiyhw1Ab/R8XFClg==
6655+
"@sentry/cli-linux-arm64@2.46.0":
6656+
version "2.46.0"
6657+
resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm64/-/cli-linux-arm64-2.46.0.tgz#d5b27e5813e7b3add65c9e3dbdd75a8bea4ef324"
6658+
integrity sha512-OEJN8yAjI9y5B4telyqzu27Hi3+S4T8VxZCqJz1+z2Mp0Q/MZ622AahVPpcrVq/5bxrnlZR16+lKh8L1QwNFPg==
66596659

66606660
"@sentry/cli-linux-arm@2.42.2":
66616661
version "2.42.2"
66626662
resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm/-/cli-linux-arm-2.42.2.tgz#00cadc359ae3c051efb3e63873c033c61dbd1ca1"
66636663
integrity sha512-7udCw+YL9lwq+9eL3WLspvnuG+k5Icg92YE7zsteTzWLwgPVzaxeZD2f8hwhsu+wmL+jNqbpCRmktPteh3i2mg==
66646664

6665-
"@sentry/cli-linux-arm@2.45.0":
6666-
version "2.45.0"
6667-
resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm/-/cli-linux-arm-2.45.0.tgz#b9d6f86f3934b4d9ced5b45a8158ff2ac2bdd25d"
6668-
integrity sha512-6sEskFLlFKJ+e0MOYgIclBTUX5jYMyYhHIxXahEkI/4vx6JO0uvpyRAkUJRpJkRh/lPog0FM+tbP3so+VxB2qQ==
6665+
"@sentry/cli-linux-arm@2.46.0":
6666+
version "2.46.0"
6667+
resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm/-/cli-linux-arm-2.46.0.tgz#d2a0f21cd208ef8e844bc5e565b337640d125441"
6668+
integrity sha512-WRrLNq/TEX/TNJkGqq6Ad0tGyapd5dwlxtsPbVBrIdryuL1mA7VCBoaHBr3kcwJLsgBHFH0lmkMee2ubNZZdkg==
66696669

66706670
"@sentry/cli-linux-i686@2.42.2":
66716671
version "2.42.2"
66726672
resolved "https://registry.yarnpkg.com/@sentry/cli-linux-i686/-/cli-linux-i686-2.42.2.tgz#3b817b715dd806c20dfbffd539725ad8089c310a"
66736673
integrity sha512-Sw/dQp5ZPvKnq3/y7wIJyxTUJYPGoTX/YeMbDs8BzDlu9to2LWV3K3r7hE7W1Lpbaw4tSquUHiQjP5QHCOS7aQ==
66746674

6675-
"@sentry/cli-linux-i686@2.45.0":
6676-
version "2.45.0"
6677-
resolved "https://registry.yarnpkg.com/@sentry/cli-linux-i686/-/cli-linux-i686-2.45.0.tgz#39e22beb84cfa26e11bdc198364315fdfb4da4d5"
6678-
integrity sha512-VmmOaEAzSW23YdGNdy/+oQjCNAMY+HmOGA77A25/ep/9AV7PQB6FI7xO5Y1PVvlkxZFJ23e373njSsEeg4uDZw==
6675+
"@sentry/cli-linux-i686@2.46.0":
6676+
version "2.46.0"
6677+
resolved "https://registry.yarnpkg.com/@sentry/cli-linux-i686/-/cli-linux-i686-2.46.0.tgz#73368ebe30236c8647caec420f717a7f45410f29"
6678+
integrity sha512-xko3/BVa4LX8EmRxVOCipV+PwfcK5Xs8lP6lgF+7NeuAHMNL4DqF6iV9rrN8gkGUHCUI9RXSve37uuZnFy55+Q==
66796679

66806680
"@sentry/cli-linux-x64@2.42.2":
66816681
version "2.42.2"
66826682
resolved "https://registry.yarnpkg.com/@sentry/cli-linux-x64/-/cli-linux-x64-2.42.2.tgz#ddf906bc3071cc79ce6e633eddcb76bb9068e688"
66836683
integrity sha512-mU4zUspAal6TIwlNLBV5oq6yYqiENnCWSxtSQVzWs0Jyq97wtqGNG9U+QrnwjJZ+ta/hvye9fvL2X25D/RxHQw==
66846684

6685-
"@sentry/cli-linux-x64@2.45.0":
6686-
version "2.45.0"
6687-
resolved "https://registry.yarnpkg.com/@sentry/cli-linux-x64/-/cli-linux-x64-2.45.0.tgz#25cd3699297f9433835fb5edd42dad722c11f041"
6688-
integrity sha512-a0Oj68mrb25a0WjX/ShZ6AAd4PPiuLcgyzQr7bl2+DvYxIOajwkGbR+CZFEhOVZcfhTnixKy/qIXEzApEPHPQg==
6685+
"@sentry/cli-linux-x64@2.46.0":
6686+
version "2.46.0"
6687+
resolved "https://registry.yarnpkg.com/@sentry/cli-linux-x64/-/cli-linux-x64-2.46.0.tgz#49da3dfd873e0e72abef968e1c213b9397e5d70e"
6688+
integrity sha512-hJ1g5UEboYcOuRia96LxjJ0jhnmk8EWLDvlGnXLnYHkwy3ree/L7sNgdp/QsY8Z4j2PGO5f22Va+UDhSjhzlfQ==
66896689

6690-
"@sentry/cli-win32-arm64@2.45.0":
6691-
version "2.45.0"
6692-
resolved "https://registry.yarnpkg.com/@sentry/cli-win32-arm64/-/cli-win32-arm64-2.45.0.tgz#50c7d29ea2169bdb4d98bbde81c5f7dac0dd3955"
6693-
integrity sha512-vn+CwS4p+52pQSLNPoi20ZOrQmv01ZgAmuMnjkh1oUZfTyBAwWLrAh6Cy4cztcN8DfL5dOWKQBo8DBKURE4ttg==
6690+
"@sentry/cli-win32-arm64@2.46.0":
6691+
version "2.46.0"
6692+
resolved "https://registry.yarnpkg.com/@sentry/cli-win32-arm64/-/cli-win32-arm64-2.46.0.tgz#4e26b254d5283eb114ac916ac504283a30b2ecdb"
6693+
integrity sha512-mN7cpPoCv2VExFRGHt+IoK11yx4pM4ADZQGEso5BAUZ5duViXB2WrAXCLd8DrwMnP0OE978a7N8OtzsFqjkbNA==
66946694

66956695
"@sentry/cli-win32-i686@2.42.2":
66966696
version "2.42.2"
66976697
resolved "https://registry.yarnpkg.com/@sentry/cli-win32-i686/-/cli-win32-i686-2.42.2.tgz#9036085c7c6ce455ad45fda411c55ff39c06eb95"
66986698
integrity sha512-iHvFHPGqgJMNqXJoQpqttfsv2GI3cGodeTq4aoVLU/BT3+hXzbV0x1VpvvEhncJkDgDicJpFLM8sEPHb3b8abw==
66996699

6700-
"@sentry/cli-win32-i686@2.45.0":
6701-
version "2.45.0"
6702-
resolved "https://registry.yarnpkg.com/@sentry/cli-win32-i686/-/cli-win32-i686-2.45.0.tgz#201075c4aec37a3e797160e0b468641245437f0c"
6703-
integrity sha512-8mMoDdlwxtcdNIMtteMK7dbi7054jak8wKSHJ5yzMw8UmWxC5thc/gXBc1uPduiaI56VjoJV+phWHBKCD+6I4w==
6700+
"@sentry/cli-win32-i686@2.46.0":
6701+
version "2.46.0"
6702+
resolved "https://registry.yarnpkg.com/@sentry/cli-win32-i686/-/cli-win32-i686-2.46.0.tgz#72f7c0a611f17b7e5b34e2b47309d165195a8276"
6703+
integrity sha512-6F73AUE3lm71BISUO19OmlnkFD5WVe4/wA1YivtLZTc1RU3eUYJLYxhDfaH3P77+ycDppQ2yCgemLRaA4A8mNQ==
67046704

67056705
"@sentry/cli-win32-x64@2.42.2":
67066706
version "2.42.2"
67076707
resolved "https://registry.yarnpkg.com/@sentry/cli-win32-x64/-/cli-win32-x64-2.42.2.tgz#7d6464b63f32c9f97fff428f246b1f039b402233"
67086708
integrity sha512-vPPGHjYoaGmfrU7xhfFxG7qlTBacroz5NdT+0FmDn6692D8IvpNXl1K+eV3Kag44ipJBBeR8g1HRJyx/F/9ACw==
67096709

6710-
"@sentry/cli-win32-x64@2.45.0":
6711-
version "2.45.0"
6712-
resolved "https://registry.yarnpkg.com/@sentry/cli-win32-x64/-/cli-win32-x64-2.45.0.tgz#2075e9e1ea3c3609e0fa1a758ca033e94e1c600f"
6713-
integrity sha512-ZvK9cIqFaq7vZ0jkHJ/xh5au6902Dr+AUxSk6L6vCL7JCe2p93KGL/4d8VFB5PD/P7Y9b+105G/e0QIFKzpeOw==
6710+
"@sentry/cli-win32-x64@2.46.0":
6711+
version "2.46.0"
6712+
resolved "https://registry.yarnpkg.com/@sentry/cli-win32-x64/-/cli-win32-x64-2.46.0.tgz#8cfd438ec365b0ee925d9724a24b533b4cb75587"
6713+
integrity sha512-yuGVcfepnNL84LGA0GjHzdMIcOzMe0bjPhq/rwPsPN+zu11N+nPR2wV2Bum4U0eQdqYH3iAlMdL5/BEQfuLJww==
67146714

67156715
"@sentry/cli@2.42.2":
67166716
version "2.42.2"
@@ -6731,25 +6731,25 @@
67316731
"@sentry/cli-win32-i686" "2.42.2"
67326732
"@sentry/cli-win32-x64" "2.42.2"
67336733

6734-
"@sentry/cli@^2.36.1", "@sentry/cli@^2.45.0":
6735-
version "2.45.0"
6736-
resolved "https://registry.yarnpkg.com/@sentry/cli/-/cli-2.45.0.tgz#35feed7a2fee54faf25daed73001a2a2a3143396"
6737-
integrity sha512-4sWu7zgzgHAjIxIjXUA/66qgeEf5ZOlloO+/JaGD5qXNSW0G7KMTR6iYjReNKMgdBCTH6bUUt9qiuA+Ex9Masw==
6734+
"@sentry/cli@^2.36.1", "@sentry/cli@^2.46.0":
6735+
version "2.46.0"
6736+
resolved "https://registry.yarnpkg.com/@sentry/cli/-/cli-2.46.0.tgz#790864874ea04f804053aa85dc94501b2cc321bb"
6737+
integrity sha512-nqoPl7UCr446QFkylrsRrUXF51x8Z9dGquyf4jaQU+OzbOJMqclnYEvU6iwbwvaw3tu/2DnoZE/Og+Nq1h63sA==
67386738
dependencies:
67396739
https-proxy-agent "^5.0.0"
67406740
node-fetch "^2.6.7"
67416741
progress "^2.0.3"
67426742
proxy-from-env "^1.1.0"
67436743
which "^2.0.2"
67446744
optionalDependencies:
6745-
"@sentry/cli-darwin" "2.45.0"
6746-
"@sentry/cli-linux-arm" "2.45.0"
6747-
"@sentry/cli-linux-arm64" "2.45.0"
6748-
"@sentry/cli-linux-i686" "2.45.0"
6749-
"@sentry/cli-linux-x64" "2.45.0"
6750-
"@sentry/cli-win32-arm64" "2.45.0"
6751-
"@sentry/cli-win32-i686" "2.45.0"
6752-
"@sentry/cli-win32-x64" "2.45.0"
6745+
"@sentry/cli-darwin" "2.46.0"
6746+
"@sentry/cli-linux-arm" "2.46.0"
6747+
"@sentry/cli-linux-arm64" "2.46.0"
6748+
"@sentry/cli-linux-i686" "2.46.0"
6749+
"@sentry/cli-linux-x64" "2.46.0"
6750+
"@sentry/cli-win32-arm64" "2.46.0"
6751+
"@sentry/cli-win32-i686" "2.46.0"
6752+
"@sentry/cli-win32-x64" "2.46.0"
67536753

67546754
"@sentry/rollup-plugin@3.4.0":
67556755
version "3.4.0"
@@ -27167,6 +27167,7 @@ stylus@0.59.0, stylus@^0.59.0:
2716727167

2716827168
sucrase@^3.27.0, sucrase@^3.35.0, sucrase@getsentry/sucrase#es2020-polyfills:
2716927169
version "3.36.0"
27170+
uid fd682f6129e507c00bb4e6319cc5d6b767e36061
2717027171
resolved "https://codeload.github.com/getsentry/sucrase/tar.gz/fd682f6129e507c00bb4e6319cc5d6b767e36061"
2717127172
dependencies:
2717227173
"@jridgewell/gen-mapping" "^0.3.2"

0 commit comments

Comments
 (0)