Skip to content

Commit bbb1698

Browse files
authored
Merge branch 'develop' into colin/log-api
2 parents d7e3479 + 47f95e5 commit bbb1698

File tree

68 files changed

+689
-299
lines changed

Some content is hidden

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

68 files changed

+689
-299
lines changed

.craft.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ targets:
111111
- name: npm
112112
id: '@sentry/tanstackstart'
113113
includeNames: /^sentry-tanstackstart-\d.*\.tgz$/
114+
- name: npm
115+
id: '@sentry/tanstackstart-react'
116+
includeNames: /^sentry-tanstackstart-react-\d.*\.tgz$/
114117
- name: npm
115118
id: '@sentry/gatsby'
116119
includeNames: /^sentry-gatsby-\d.*\.tgz$/

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ body:
5050
- '@sentry/solidstart'
5151
- '@sentry/svelte'
5252
- '@sentry/sveltekit'
53+
- '@sentry/tanstackstart-react'
5354
- '@sentry/vue'
5455
- '@sentry/wasm'
5556
- Sentry Browser Loader

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ package. Please refer to the README and instructions of those SDKs for more deta
6060
- [`@sentry/nestjs`](https://github.com/getsentry/sentry-javascript/tree/master/packages/nestjs): SDK for NestJS
6161
- [`@sentry/nextjs`](https://github.com/getsentry/sentry-javascript/tree/master/packages/nextjs): SDK for Next.js
6262
- [`@sentry/remix`](https://github.com/getsentry/sentry-javascript/tree/master/packages/remix): SDK for Remix
63+
- [`@sentry/tanstackstart-react`](https://github.com/getsentry/sentry-javascript/tree/master/packages/tanstackstart-react): SDK for TanStack Start React
6364
- [`@sentry/aws-serverless`](https://github.com/getsentry/sentry-javascript/tree/master/packages/aws-serverless): SDK
6465
for AWS Lambda Functions
6566
- [`@sentry/google-cloud-serverless`](https://github.com/getsentry/sentry-javascript/tree/master/packages/google-cloud-serverless):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"@playwright/test": "~1.50.0",
4444
"@sentry-internal/rrweb": "2.34.0",
4545
"@sentry/browser": "9.5.0",
46-
"axios": "1.7.7",
46+
"axios": "1.8.2",
4747
"babel-loader": "^8.2.2",
4848
"fflate": "0.8.2",
4949
"html-webpack-plugin": "^5.5.0",

dev-packages/e2e-tests/test-applications/nuxt-3-dynamic-import/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"nuxt": "^3.14.0"
1919
},
2020
"devDependencies": {
21-
"@nuxt/test-utils": "^3.14.1",
2221
"@playwright/test": "~1.50.0",
2322
"@sentry-internal/test-utils": "link:../../../test-utils"
2423
},
Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,10 @@
1-
import { fileURLToPath } from 'node:url';
2-
import type { ConfigOptions } from '@nuxt/test-utils/playwright';
31
import { getPlaywrightConfig } from '@sentry-internal/test-utils';
42

5-
const nuxtConfigOptions: ConfigOptions = {
6-
nuxt: {
7-
rootDir: fileURLToPath(new URL('.', import.meta.url)),
8-
},
9-
};
10-
113
/* Make sure to import from '@nuxt/test-utils/playwright' in the tests
124
* Like this: import { expect, test } from '@nuxt/test-utils/playwright' */
135

146
const config = getPlaywrightConfig({
157
startCommand: `pnpm start`,
16-
use: { ...nuxtConfigOptions },
178
});
189

1910
export default config;

dev-packages/e2e-tests/test-applications/nuxt-3-dynamic-import/tests/errors.client.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect, test } from '@nuxt/test-utils/playwright';
1+
import { expect, test } from '@playwright/test';
22
import { waitForError } from '@sentry-internal/test-utils';
33

44
test.describe('client-side errors', async () => {

dev-packages/e2e-tests/test-applications/nuxt-3-dynamic-import/tests/tracing.client.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect, test } from '@nuxt/test-utils/playwright';
1+
import { expect, test } from '@playwright/test';
22
import { waitForTransaction } from '@sentry-internal/test-utils';
33
import type { Span } from '@sentry/nuxt';
44

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"nuxt": "3.7.0"
2121
},
2222
"devDependencies": {
23-
"@nuxt/test-utils": "^3.14.1",
2423
"@playwright/test": "~1.50.0",
2524
"@sentry-internal/test-utils": "link:../../../test-utils"
2625
},
Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
1-
import { fileURLToPath } from 'node:url';
2-
import type { ConfigOptions } from '@nuxt/test-utils/playwright';
31
import { getPlaywrightConfig } from '@sentry-internal/test-utils';
42

5-
const nuxtConfigOptions: ConfigOptions = {
6-
nuxt: {
7-
rootDir: fileURLToPath(new URL('.', import.meta.url)),
8-
},
9-
};
10-
11-
/* Make sure to import from '@nuxt/test-utils/playwright' in the tests
12-
* Like this: import { expect, test } from '@nuxt/test-utils/playwright' */
13-
143
const config = getPlaywrightConfig({
154
startCommand: `pnpm start:import`,
16-
use: { ...nuxtConfigOptions },
175
});
186

197
export default config;

0 commit comments

Comments
 (0)