Skip to content

Commit 14cd14c

Browse files
committed
deps: Add missing peer dependencies
This adds missing peer dependencies that yarn complains about. Nothing should change, fundamentally. some more refs
1 parent bd6095c commit 14cd14c

File tree

26 files changed

+2638
-1073
lines changed

26 files changed

+2638
-1073
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"test:detect-flaky": "ts-node scripts/detectFlakyTests.ts"
4040
},
4141
"dependencies": {
42+
"@babel/core": "^7.27.7",
4243
"@babel/preset-typescript": "^7.16.7",
4344
"@playwright/test": "~1.50.0",
4445
"@sentry-internal/rrweb": "2.34.0",

dev-packages/browser-integration-tests/suites/tracing/metrics/pageload-resource-spans/test.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,7 @@ sentryTest('should add resource spans to pageload transaction', async ({ getLoca
5757

5858
const hasCdnBundle = (process.env.PW_BUNDLE || '').startsWith('bundle');
5959

60-
const expectedScripts = [
61-
'/init.bundle.js',
62-
'/subject.bundle.js',
63-
'https://sentry-test-site.example/path/to/script.js',
64-
];
60+
const expectedScripts = ['/init.bundle.js', 'https://sentry-test-site.example/path/to/script.js'];
6561
if (hasCdnBundle) {
6662
expectedScripts.unshift('/cdn.bundle.js');
6763
}

dev-packages/e2e-tests/test-applications/nextjs-app-dir/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@types/node": "^18.19.1",
2121
"@types/react": "18.0.26",
2222
"@types/react-dom": "18.0.9",
23-
"next": "14.2.25",
23+
"next": "^13.5.9",
2424
"react": "18.2.0",
2525
"react-dom": "18.2.0",
2626
"typescript": "~5.0.0"

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

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
"dependencies": {
2828
"@aws-sdk/client-s3": "^3.552.0",
2929
"@hapi/hapi": "^21.3.10",
30-
"@nestjs/common": "11.0.16",
31-
"@nestjs/core": "10.4.6",
32-
"@nestjs/platform-express": "10.4.6",
30+
"@nestjs/common": "11.1.3",
31+
"@nestjs/core": "11.1.3",
32+
"@nestjs/platform-express": "11.1.3",
3333
"@sentry/aws-serverless": "9.36.0",
3434
"@sentry/core": "9.36.0",
3535
"@sentry/node": "9.36.0",
@@ -74,7 +74,10 @@
7474
"@types/amqplib": "^0.10.5",
7575
"@types/node-cron": "^3.0.11",
7676
"@types/node-schedule": "^2.1.7",
77-
"globby": "11"
77+
"file-type": "^20.4.1",
78+
"globby": "11",
79+
"react": "^18.3.1",
80+
"zod": "^3.24.1"
7881
},
7982
"config": {
8083
"mongodbMemoryServer": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
"gauge/strip-ansi": "6.0.1",
150150
"wide-align/string-width": "4.2.3",
151151
"cliui/wrap-ansi": "7.0.0",
152-
"**/sucrase": "getsentry/sucrase#es2020-polyfills"
152+
"sucrase": "getsentry/sucrase#es2020-polyfills"
153153
},
154154
"version": "0.0.0",
155155
"name": "sentry-javascript",

packages/ember/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"postpack": "ember ts:clean"
3131
},
3232
"dependencies": {
33-
"@babel/core": "^7.24.4",
33+
"@babel/core": "^7.27.7",
3434
"@embroider/macros": "^1.16.0",
3535
"@sentry/browser": "9.36.0",
3636
"@sentry/core": "9.36.0",
@@ -71,7 +71,7 @@
7171
"ember-source": "~4.12.4",
7272
"ember-template-lint": "~4.16.1",
7373
"eslint-plugin-ember": "11.9.0",
74-
"eslint-plugin-n": "16.0.1",
74+
"eslint-plugin-n": "15.0.0",
7575
"eslint-plugin-qunit": "8.0.0",
7676
"loader.js": "~4.7.0",
7777
"qunit": "~2.22.0",

packages/gatsby/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@
5555
},
5656
"devDependencies": {
5757
"@testing-library/react": "^13.0.0",
58-
"react": "^18.0.0"
58+
"react": "^18.3.1",
59+
"react-dom": "^18.3.1",
60+
"webpack": "^5.0.0"
5961
},
6062
"scripts": {
6163
"build": "run-p build:transpile build:types",

packages/nestjs/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@
5555
"devDependencies": {
5656
"@nestjs/common": "^10.0.0",
5757
"@nestjs/core": "^10.0.0",
58-
"reflect-metadata": "^0.2.2"
58+
"reflect-metadata": "^0.2.2",
59+
"rxjs": "^7.8.1"
5960
},
6061
"peerDependencies": {
6162
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",

packages/nextjs/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@
9494
"devDependencies": {
9595
"@types/resolve": "1.20.3",
9696
"eslint-plugin-react": "^7.31.11",
97-
"next": "13.5.9"
97+
"next": "13.5.9",
98+
"react": "^18.3.1",
99+
"react-dom": "^18.3.1"
98100
},
99101
"peerDependencies": {
100102
"next": "^13.2.0 || ^14.0 || ^15.0.0-rc.0"

packages/node/test/sdk/init.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ describe('init()', () => {
2626
beforeEach(() => {
2727
global.__SENTRY__ = {};
2828

29+
// prevent the logger from being enabled, resulting in console.log calls
30+
vi.spyOn(logger, 'enable').mockImplementation(() => {});
31+
2932
mockAutoPerformanceIntegrations = vi.spyOn(auto, 'getAutoPerformanceIntegrations').mockImplementation(() => []);
3033
});
3134

0 commit comments

Comments
 (0)