Skip to content

Commit 57bef20

Browse files
author
Luca Forstner
authored
Merge pull request #11950 from getsentry/prepare-release/8.0.0-rc.2
2 parents 2a46181 + a4c30a2 commit 57bef20

File tree

133 files changed

+1415
-796
lines changed

Some content is hidden

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

133 files changed

+1415
-796
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -995,7 +995,7 @@ jobs:
995995
[
996996
'angular-17',
997997
'cloudflare-astro',
998-
'node-express-app',
998+
'node-express',
999999
'create-react-app',
10001000
'create-next-app',
10011001
'create-remix-app',
@@ -1015,13 +1015,12 @@ jobs:
10151015
'sveltekit-2',
10161016
'sveltekit-2-svelte-5',
10171017
'generic-ts3.8',
1018-
'node-fastify-app',
1019-
# TODO(v8): Re-enable hapi tests
1018+
'node-fastify',
10201019
'node-hapi',
1021-
'node-nestjs-app',
1020+
'node-nestjs',
10221021
'node-exports-test-app',
1023-
'node-koa-app',
1024-
'node-connect-app',
1022+
'node-koa',
1023+
'node-connect',
10251024
'vue-3',
10261025
'webpack-4',
10271026
'webpack-5'

.size-limit.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ module.exports = [
206206
'zlib',
207207
'net',
208208
'tls',
209+
'module',
209210
],
210211
gzip: true,
211212
limit: '180 KB',

CHANGELOG.md

Lines changed: 27 additions & 0 deletions

dev-packages/e2e-tests/test-applications/node-connect-app/package.json renamed to dev-packages/e2e-tests/test-applications/node-connect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "node-connect-app",
2+
"name": "node-connect",
33
"version": "1.0.0",
44
"private": true,
55
"scripts": {

dev-packages/e2e-tests/test-applications/node-koa-app/start-event-proxy.ts renamed to dev-packages/e2e-tests/test-applications/node-connect/start-event-proxy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import { startEventProxyServer } from '@sentry-internal/event-proxy-server';
22

33
startEventProxyServer({
44
port: 3031,
5-
proxyServerName: 'node-koa-app',
5+
proxyServerName: 'node-connect',
66
});

dev-packages/e2e-tests/test-applications/node-connect-app/tests/errors.test.ts renamed to dev-packages/e2e-tests/test-applications/node-connect/tests/errors.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ test('Sends exception to Sentry', async ({ baseURL }) => {
4040
});
4141

4242
test('Sends correct error event', async ({ baseURL }) => {
43-
const errorEventPromise = waitForError('node-connect-app', event => {
43+
const errorEventPromise = waitForError('node-connect', event => {
4444
return !event.type && event.exception?.values?.[0]?.value === 'This is an exception';
4545
});
4646

dev-packages/e2e-tests/test-applications/node-connect-app/tests/transactions.test.ts renamed to dev-packages/e2e-tests/test-applications/node-connect/tests/transactions.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const sentryTestProject = process.env.E2E_TEST_SENTRY_TEST_PROJECT;
88
const EVENT_POLLING_TIMEOUT = 90_000;
99

1010
test('Sends an API route transaction', async ({ baseURL }) => {
11-
const pageloadTransactionEventPromise = waitForTransaction('node-connect-app', transactionEvent => {
11+
const pageloadTransactionEventPromise = waitForTransaction('node-connect', transactionEvent => {
1212
return (
1313
transactionEvent?.contexts?.trace?.op === 'http.server' &&
1414
transactionEvent?.transaction === 'GET /test-transaction'

0 commit comments

Comments
 (0)