Skip to content

Commit 342ea3b

Browse files
committed
chore: pin versions properly
1 parent 76afdd9 commit 342ea3b

File tree

4 files changed

+190
-164
lines changed

4 files changed

+190
-164
lines changed

dev-packages/e2e-tests/test-applications/nitro-3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@playwright/test": "~1.56.0",
2020
"@sentry-internal/test-utils": "link:../../../test-utils",
2121
"@sentry/core": "latest || *",
22-
"nitro": "https://pkg.pr.new/nitrojs/nitro@4001",
22+
"nitro": "^3.0.260415-beta",
2323
"rolldown": "latest",
2424
"vite": "latest"
2525
},

packages/nitro/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,16 @@
3535
"access": "public"
3636
},
3737
"peerDependencies": {
38-
"nitro": ">=3.0.260311-beta"
38+
"nitro": ">=3.0.260415-beta"
3939
},
4040
"dependencies": {
4141
"@sentry/core": "10.48.0",
42-
"@sentry/node": "10.48.0"
42+
"@sentry/node": "10.48.0",
43+
"otel-tracing-channel": "^0.2.0"
4344
},
4445
"devDependencies": {
45-
"nitro": "^3.0.260311-beta"
46+
"nitro": "^3.0.260415-beta",
47+
"h3": "^2.0.1-rc.13"
4648
},
4749
"scripts": {
4850
"build": "run-p build:transpile build:types",

packages/nitro/src/config.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ export function setupSentryNitroModule(
2323
_moduleOptions?: SentryNitroOptions,
2424
_serverConfigFile?: string,
2525
): NitroConfig {
26-
// @ts-expect-error Nitro tracing config is not out yet
2726
if (!config.tracingChannel) {
28-
// @ts-expect-error Nitro tracing config is not out yet
2927
config.tracingChannel = true;
3028
}
3129

0 commit comments

Comments
 (0)