Skip to content

Commit d8461cc

Browse files
authored
Merge branch 'develop' into sig/nuxt-error-boundary
2 parents e58f079 + 786c5ca commit d8461cc

File tree

164 files changed

+390
-5726
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

164 files changed

+390
-5726
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

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

13-
Work in this release was contributed by @antonis, and @maximepvrt. Thank you for your contributions!
13+
Work in this release was contributed by @maximepvrt, @arturovt and @aloisklink. Thank you for your contributions!
1414

1515
## 8.45.0
1616

dev-packages/browser-integration-tests/suites/metrics/metricsEvent/init.js

Lines changed: 0 additions & 34 deletions
This file was deleted.

dev-packages/browser-integration-tests/suites/metrics/metricsEvent/test.ts

Lines changed: 0 additions & 34 deletions
This file was deleted.

dev-packages/browser-integration-tests/suites/metrics/metricsShim/init.js

Lines changed: 0 additions & 13 deletions
This file was deleted.

dev-packages/browser-integration-tests/suites/metrics/metricsShim/test.ts

Lines changed: 0 additions & 36 deletions
This file was deleted.

dev-packages/browser-integration-tests/suites/metrics/timing/init.js

Lines changed: 0 additions & 39 deletions
This file was deleted.

dev-packages/browser-integration-tests/suites/metrics/timing/test.ts

Lines changed: 0 additions & 159 deletions
This file was deleted.

dev-packages/browser-integration-tests/utils/generatePlugin.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,10 @@ const useLoader = bundleKey.startsWith('loader');
3030
const IMPORTED_INTEGRATION_CDN_BUNDLE_PATHS: Record<string, string> = {
3131
httpClientIntegration: 'httpclient',
3232
captureConsoleIntegration: 'captureconsole',
33-
debugIntegration: 'debug',
3433
rewriteFramesIntegration: 'rewriteframes',
3534
contextLinesIntegration: 'contextlines',
3635
extraErrorDataIntegration: 'extraerrordata',
3736
reportingObserverIntegration: 'reportingobserver',
38-
sessionTimingIntegration: 'sessiontiming',
3937
feedbackIntegration: 'feedback',
4038
moduleMetadataIntegration: 'modulemetadata',
4139
};

dev-packages/browser-integration-tests/utils/helpers.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -270,18 +270,6 @@ export function shouldSkipFeedbackTest(): boolean {
270270
return false;
271271
}
272272

273-
/**
274-
* We can only test metrics tests in certain bundles/packages:
275-
* - NPM (ESM, CJS)
276-
* - CDN bundles that include tracing
277-
*
278-
* @returns `true` if we should skip the metrics test
279-
*/
280-
export function shouldSkipMetricsTest(): boolean {
281-
const bundle = process.env.PW_BUNDLE as string | undefined;
282-
return bundle != null && !bundle.includes('tracing') && !bundle.includes('esm') && !bundle.includes('cjs');
283-
}
284-
285273
/**
286274
* We only test feature flags integrations in certain bundles/packages:
287275
* - NPM (ESM, CJS)

dev-packages/e2e-tests/test-applications/nestjs-basic-with-graphql/src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import './instrument';
33

44
// Import other modules
55
import { HttpAdapterHost, NestFactory } from '@nestjs/core';
6-
import { SentryGlobalGenericFilter } from '@sentry/nestjs/setup';
6+
import { SentryGlobalFilter } from '@sentry/nestjs/setup';
77
import { AppModule } from './app.module';
88

99
const PORT = 3030;
@@ -12,7 +12,7 @@ async function bootstrap() {
1212
const app = await NestFactory.create(AppModule);
1313

1414
const { httpAdapter } = app.get(HttpAdapterHost);
15-
app.useGlobalFilters(new SentryGlobalGenericFilter(httpAdapter as any));
15+
app.useGlobalFilters(new SentryGlobalFilter(httpAdapter as any));
1616

1717
await app.listen(PORT);
1818
}

0 commit comments

Comments
 (0)