File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
dev-packages/e2e-tests/test-applications/nextjs-15
packages/nextjs/src/common Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 17
17
"@types/node" : " 18.11.17" ,
18
18
"@types/react" : " 18.0.26" ,
19
19
"@types/react-dom" : " 18.0.9" ,
20
- "next" : " 15.0.0-canary.77 " ,
20
+ "next" : " 15.0.0-canary.112 " ,
21
21
"react" : " beta" ,
22
22
"react-dom" : " beta" ,
23
23
"typescript" : " 4.9.5"
Original file line number Diff line number Diff line change 1
1
import { captureException , withScope } from '@sentry/core' ;
2
2
3
3
type RequestInfo = {
4
- url : string ;
4
+ path : string ;
5
5
method : string ;
6
6
headers : Record < string , string | string [ ] | undefined > ;
7
7
} ;
@@ -33,7 +33,7 @@ export function experimental_captureRequestError(
33
33
} ) ;
34
34
35
35
scope . setContext ( 'nextjs' , {
36
- request_path : request . url ,
36
+ request_path : request . path ,
37
37
router_kind : errorContext . routerKind ,
38
38
router_path : errorContext . routePath ,
39
39
route_type : errorContext . routeType ,
You can’t perform that action at this time.
0 commit comments