File tree Expand file tree Collapse file tree 11 files changed +84
-68
lines changed
.github/actions/install-playwright
dev-packages/e2e-tests/test-applications
sveltekit-cloudflare-pages Expand file tree Collapse file tree 11 files changed +84
-68
lines changed Original file line number Diff line number Diff line change 34
34
working-directory : ${{ inputs.cwd }}
35
35
36
36
- 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"
38
40
if : steps.playwright-cache.outputs.cache-hit == 'true'
39
41
shell : bash
40
42
working-directory : ${{ inputs.cwd }}
Original file line number Diff line number Diff line change 4
4
5
5
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
6
6
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
+
7
15
## 9.28.0
8
16
9
17
### Important Changes
Original file line number Diff line number Diff line change 23
23
"@sentry-internal/test-utils" : " link:../../../test-utils" ,
24
24
"@sentry/core" : " latest || *" ,
25
25
"@sveltejs/adapter-auto" : " ^3.0.0" ,
26
- "@sveltejs/kit" : " 2.21.2 " ,
26
+ "@sveltejs/kit" : " ^ 2.21.3 " ,
27
27
"@sveltejs/vite-plugin-svelte" : " ^3.0.0" ,
28
28
"svelte" : " ^5.0.0-next.115" ,
29
29
"svelte-check" : " ^3.6.0" ,
Original file line number Diff line number Diff line change 23
23
"@sentry/core" : " latest || *" ,
24
24
"@sveltejs/adapter-auto" : " ^3.0.0" ,
25
25
"@sveltejs/adapter-node" : " ^2.0.0" ,
26
- "@sveltejs/kit" : " 2.21.2 " ,
26
+ "@sveltejs/kit" : " ^ 2.21.3 " ,
27
27
"@sveltejs/vite-plugin-svelte" : " ^3.0.0" ,
28
28
"svelte" : " ^4.2.8" ,
29
29
"svelte-check" : " ^3.6.0" ,
Original file line number Diff line number Diff line change 20
20
"devDependencies" : {
21
21
"@playwright/test" : " ^1.45.3" ,
22
22
"@sveltejs/adapter-cloudflare" : " ^5.0.3" ,
23
- "@sveltejs/kit" : " 2.21.2 " ,
23
+ "@sveltejs/kit" : " ^ 2.21.3 " ,
24
24
"@sveltejs/vite-plugin-svelte" : " ^5.0.3" ,
25
25
"svelte" : " ^5.20.2" ,
26
26
"svelte-check" : " ^4.1.4" ,
Original file line number Diff line number Diff line change @@ -356,7 +356,6 @@ export interface ClientOptions<TO extends BaseTransportOptions = BaseTransportOp
356
356
357
357
/**
358
358
* This function can be defined to modify a child span before it's sent.
359
- * Returning `null` will cause this span to be dropped.
360
359
*
361
360
* Note that this function is only called for child spans and not for the root span (formerly known as transaction).
362
361
* If you want to modify or drop the root span, use {@link Options.beforeSendTransaction} instead.
Original file line number Diff line number Diff line change @@ -192,22 +192,24 @@ async function resolveStackFrames(
192
192
const controller = new AbortController ( ) ;
193
193
const timer = setTimeout ( ( ) => controller . abort ( ) , 3000 ) ;
194
194
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 ) ,
204
208
} ,
205
- signal : controller . signal ,
206
- body : JSON . stringify ( postBody ) ,
207
- } ,
208
- ) . finally ( ( ) => {
209
- clearTimeout ( timer ) ;
210
- } ) ;
209
+ ) . finally ( ( ) => {
210
+ clearTimeout ( timer ) ;
211
+ } ) ,
212
+ ) ;
211
213
212
214
if ( ! res . ok || res . status === 204 ) {
213
215
return null ;
Original file line number Diff line number Diff line change 39
39
"@opentelemetry/instrumentation" : " 0.57.2" ,
40
40
"@opentelemetry/semantic-conventions" : " ^1.34.0" ,
41
41
"@sentry/browser" : " 9.28.0" ,
42
- "@sentry/cli" : " ^2.45 .0" ,
42
+ "@sentry/cli" : " ^2.46 .0" ,
43
43
"@sentry/core" : " 9.28.0" ,
44
44
"@sentry/node" : " 9.28.0" ,
45
45
"@sentry/react" : " 9.28.0" ,
Original file line number Diff line number Diff line change 68
68
"@opentelemetry/instrumentation" : " ^0.57.2" ,
69
69
"@opentelemetry/semantic-conventions" : " ^1.34.0" ,
70
70
"@remix-run/router" : " 1.x" ,
71
- "@sentry/cli" : " ^2.45 .0" ,
71
+ "@sentry/cli" : " ^2.46 .0" ,
72
72
"@sentry/core" : " 9.28.0" ,
73
73
"@sentry/node" : " 9.28.0" ,
74
74
"@sentry/opentelemetry" : " 9.28.0" ,
Original file line number Diff line number Diff line change 28
28
"import" : " ./build/esm/index.client.js" ,
29
29
"require" : " ./build/cjs/index.client.js"
30
30
},
31
- "node" : " ./build/cjs/index.server.js"
31
+ "node" : {
32
+ "import" : " ./build/esm/index.server.js" ,
33
+ "require" : " ./build/cjs/index.server.js"
34
+ }
32
35
}
33
36
},
34
37
"publishConfig" : {
83
86
},
84
87
"volta" : {
85
88
"extends" : " ../../package.json"
86
- }
89
+ },
90
+ "sideEffects" : false
87
91
}
You can’t perform that action at this time.
0 commit comments