Skip to content

Commit 7e39d04

Browse files
Merge pull request #14036 from getsentry/master
[Gitflow] Merge master into develop
2 parents 8b1f130 + 146e7dc commit 7e39d04

File tree

50 files changed

+286
-196
lines changed

Some content is hidden

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

50 files changed

+286
-196
lines changed

CHANGELOG.md

+90
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,102 @@
1010

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

13+
## 8.35.0
14+
15+
### Beta release of the official Nuxt Sentry SDK
16+
17+
This release marks the beta release of the `@sentry/nuxt` Sentry SDK. For details on how to use it, check out the
18+
[Sentry Nuxt SDK README](https://github.com/getsentry/sentry-javascript/tree/develop/packages/nuxt). Please reach out on
19+
[GitHub](https://github.com/getsentry/sentry-javascript/issues/new/choose) if you have any feedback or concerns.
20+
21+
- **feat(nuxt): Make dynamic import() wrapping default
22+
([#13958](https://github.com/getsentry/sentry-javascript/pull/13958))** (BREAKING)
23+
- **feat(nuxt): Add Rollup plugin to wrap server entry with `import()`
24+
([#13945](https://github.com/getsentry/sentry-javascript/pull/13945))**
25+
26+
**It is no longer required to add a Node `--import` flag. Please update your start command to avoid initializing Sentry
27+
twice (BREAKING CHANGE).** The SDK will now apply modifications during the build of your application to allow for
28+
patching of libraries during runtime. If run into issues with this change, you can disable this behavior in your
29+
`nuxt.config.ts` and use the `--import` flag instead:
30+
31+
```js
32+
sentry: {
33+
dynamicImportForServerEntry: false;
34+
}
35+
```
36+
37+
- **feat(nuxt): Respect user-provided source map generation settings
38+
([#14020](https://github.com/getsentry/sentry-javascript/pull/14020))**
39+
40+
We now require you to explicitly enable sourcemaps for the clientside so that Sentry can un-minify your errors. We made
41+
this change so source maps aren't accidentally leaked to the public. Enable source maps on the client as follows:
42+
43+
```js
44+
export default defineNuxtConfig({
45+
sourcemap: {
46+
client: true,
47+
},
48+
});
49+
```
50+
51+
- feat(nuxt): Log server instrumentation might not work in dev
52+
([#14021](https://github.com/getsentry/sentry-javascript/pull/14021))
53+
- feat(nuxt): Add Http `responseHook` with `waitUntil`
54+
([#13986](https://github.com/getsentry/sentry-javascript/pull/13986))
55+
56+
### Important Changes
57+
58+
- **feat(vue): Add Pinia plugin ([#13841](https://github.com/getsentry/sentry-javascript/pull/13841))**
59+
60+
Support for [Pinia](https://pinia.vuejs.org/) is added in this release for `@sentry/vue`. To capture Pinia state data,
61+
add `createSentryPiniaPlugin()` to your Pinia store:
62+
63+
```javascript
64+
import { createPinia } from 'pinia';
65+
import { createSentryPiniaPlugin } from '@sentry/vue';
66+
67+
const pinia = createPinia();
68+
69+
pinia.use(createSentryPiniaPlugin());
70+
```
71+
72+
- **feat(node): Implement Sentry-specific http instrumentation
73+
([#13763](https://github.com/getsentry/sentry-javascript/pull/13763))**
74+
75+
This change introduces a new `SentryHttpInstrumentation` to handle non-span related HTTP instrumentation, allowing it to
76+
run side-by-side with OTel's `HttpInstrumentation`. This improves support for custom OTel setups and avoids conflicts
77+
with Sentry's instrumentation. Additionally, the `spans: false` option is reintroduced for `httpIntegration` to disable
78+
span emission while still allowing custom `HttpInstrumentation` instances (`httpIntegration({ spans: false })`).
79+
1380
- **feat(core): Make stream instrumentation opt-in
1481
([#13951](https://github.com/getsentry/sentry-javascript/pull/13951))**
1582

1683
This change adds a new option `trackFetchStreamPerformance` to the browser tracing integration. Only when set to `true`,
1784
Sentry will instrument streams via fetch.
1885

86+
### Other Changes
87+
88+
- feat(node): Expose `suppressTracing` API ([#13875](https://github.com/getsentry/sentry-javascript/pull/13875))
89+
- feat(replay): Do not log "timeout while trying to read resp body" as exception
90+
([#13965](https://github.com/getsentry/sentry-javascript/pull/13965))
91+
- chore(node): Bump `@opentelemetry/instrumentation-express` to `0.43.0`
92+
([#13948](https://github.com/getsentry/sentry-javascript/pull/13948))
93+
- chore(node): Bump `@opentelemetry/instrumentation-fastify` to `0.40.0`
94+
([#13983](https://github.com/getsentry/sentry-javascript/pull/13983))
95+
- fix: Ensure type for `init` is correct in meta frameworks
96+
([#13938](https://github.com/getsentry/sentry-javascript/pull/13938))
97+
- fix(core): `.set` the `sentry-trace` header instead of `.append`ing in fetch instrumentation
98+
([#13907](https://github.com/getsentry/sentry-javascript/pull/13907))
99+
- fix(module): keep version for node ESM package ([#13922](https://github.com/getsentry/sentry-javascript/pull/13922))
100+
- fix(node): Ensure `ignoreOutgoingRequests` of `httpIntegration` applies to breadcrumbs
101+
([#13970](https://github.com/getsentry/sentry-javascript/pull/13970))
102+
- fix(replay): Fix onError sampling when loading an expired buffered session
103+
([#13962](https://github.com/getsentry/sentry-javascript/pull/13962))
104+
- fix(replay): Ignore older performance entries when starting manually
105+
([#13969](https://github.com/getsentry/sentry-javascript/pull/13969))
106+
- perf(node): Truncate breadcrumb messages created by console integration
107+
([#14006](https://github.com/getsentry/sentry-javascript/pull/14006))
108+
19109
Work in this release was contributed by @ZakrepaShe and @zhiyan114. Thank you for your contributions!
20110

21111
## 8.34.0

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/browser-integration-tests",
3-
"version": "8.34.0",
3+
"version": "8.35.0",
44
"main": "index.js",
55
"license": "MIT",
66
"engines": {
@@ -43,7 +43,7 @@
4343
"@babel/preset-typescript": "^7.16.7",
4444
"@playwright/test": "^1.44.1",
4545
"@sentry-internal/rrweb": "2.11.0",
46-
"@sentry/browser": "8.34.0",
46+
"@sentry/browser": "8.35.0",
4747
"axios": "1.6.7",
4848
"babel-loader": "^8.2.2",
4949
"html-webpack-plugin": "^5.5.0",

dev-packages/bundle-analyzer-scenarios/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/bundle-analyzer-scenarios",
3-
"version": "8.34.0",
3+
"version": "8.35.0",
44
"description": "Scenarios to test bundle analysis with",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/dev-packages/bundle-analyzer-scenarios",

dev-packages/clear-cache-gh-action/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sentry-internal/clear-cache-gh-action",
33
"description": "An internal Github Action to clear GitHub caches.",
4-
"version": "8.34.0",
4+
"version": "8.35.0",
55
"license": "MIT",
66
"engines": {
77
"node": ">=18"

dev-packages/e2e-tests/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/e2e-tests",
3-
"version": "8.34.0",
3+
"version": "8.35.0",
44
"license": "MIT",
55
"private": true,
66
"scripts": {

dev-packages/external-contributor-gh-action/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sentry-internal/external-contributor-gh-action",
33
"description": "An internal Github Action to add external contributors to the CHANGELOG.md file.",
4-
"version": "8.34.0",
4+
"version": "8.35.0",
55
"license": "MIT",
66
"engines": {
77
"node": ">=18"

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/node-integration-tests",
3-
"version": "8.34.0",
3+
"version": "8.35.0",
44
"license": "MIT",
55
"engines": {
66
"node": ">=14.18"
@@ -31,10 +31,10 @@
3131
"@nestjs/core": "^10.3.3",
3232
"@nestjs/platform-express": "^10.3.3",
3333
"@prisma/client": "5.9.1",
34-
"@sentry/aws-serverless": "8.34.0",
35-
"@sentry/node": "8.34.0",
36-
"@sentry/types": "8.34.0",
37-
"@sentry/utils": "8.34.0",
34+
"@sentry/aws-serverless": "8.35.0",
35+
"@sentry/node": "8.35.0",
36+
"@sentry/types": "8.35.0",
37+
"@sentry/utils": "8.35.0",
3838
"@types/mongodb": "^3.6.20",
3939
"@types/mysql": "^2.15.21",
4040
"@types/pg": "^8.6.5",

dev-packages/overhead-metrics/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "8.34.0",
3+
"version": "8.35.0",
44
"name": "@sentry-internal/overhead-metrics",
55
"main": "index.js",
66
"author": "Sentry",

dev-packages/rollup-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/rollup-utils",
3-
"version": "8.34.0",
3+
"version": "8.35.0",
44
"description": "Rollup utilities used at Sentry for the Sentry JavaScript SDK",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/rollup-utils",

dev-packages/size-limit-gh-action/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sentry-internal/size-limit-gh-action",
33
"description": "An internal Github Action to compare the current size of a PR against the one on develop.",
4-
"version": "8.34.0",
4+
"version": "8.35.0",
55
"license": "MIT",
66
"engines": {
77
"node": ">=18"

dev-packages/test-utils/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "8.34.0",
3+
"version": "8.35.0",
44
"name": "@sentry-internal/test-utils",
55
"author": "Sentry",
66
"license": "MIT",
@@ -45,8 +45,8 @@
4545
},
4646
"devDependencies": {
4747
"@playwright/test": "^1.44.1",
48-
"@sentry/types": "8.34.0",
49-
"@sentry/utils": "8.34.0"
48+
"@sentry/types": "8.35.0",
49+
"@sentry/utils": "8.35.0"
5050
},
5151
"volta": {
5252
"extends": "../../package.json"

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "8.34.0",
3+
"version": "8.35.0",
44
"npmClient": "yarn"
55
}

packages/angular/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/angular",
3-
"version": "8.34.0",
3+
"version": "8.35.0",
44
"description": "Official Sentry SDK for Angular",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/angular",
@@ -21,10 +21,10 @@
2121
"rxjs": "^6.5.5 || ^7.x"
2222
},
2323
"dependencies": {
24-
"@sentry/browser": "8.34.0",
25-
"@sentry/core": "8.34.0",
26-
"@sentry/types": "8.34.0",
27-
"@sentry/utils": "8.34.0",
24+
"@sentry/browser": "8.35.0",
25+
"@sentry/core": "8.35.0",
26+
"@sentry/types": "8.35.0",
27+
"@sentry/utils": "8.35.0",
2828
"tslib": "^2.4.1"
2929
},
3030
"devDependencies": {

packages/astro/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/astro",
3-
"version": "8.34.0",
3+
"version": "8.35.0",
44
"description": "Official Sentry SDK for Astro",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/astro",
@@ -56,11 +56,11 @@
5656
"astro": ">=3.x || >=4.0.0-beta"
5757
},
5858
"dependencies": {
59-
"@sentry/browser": "8.34.0",
60-
"@sentry/core": "8.34.0",
61-
"@sentry/node": "8.34.0",
62-
"@sentry/types": "8.34.0",
63-
"@sentry/utils": "8.34.0",
59+
"@sentry/browser": "8.35.0",
60+
"@sentry/core": "8.35.0",
61+
"@sentry/node": "8.35.0",
62+
"@sentry/types": "8.35.0",
63+
"@sentry/utils": "8.35.0",
6464
"@sentry/vite-plugin": "^2.22.3"
6565
},
6666
"devDependencies": {

packages/aws-serverless/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/aws-serverless",
3-
"version": "8.34.0",
3+
"version": "8.35.0",
44
"description": "Official Sentry SDK for AWS Lambda and AWS Serverless Environments",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/serverless",
@@ -66,10 +66,10 @@
6666
"dependencies": {
6767
"@opentelemetry/instrumentation-aws-lambda": "0.44.0",
6868
"@opentelemetry/instrumentation-aws-sdk": "0.44.0",
69-
"@sentry/core": "8.34.0",
70-
"@sentry/node": "8.34.0",
71-
"@sentry/types": "8.34.0",
72-
"@sentry/utils": "8.34.0",
69+
"@sentry/core": "8.35.0",
70+
"@sentry/node": "8.35.0",
71+
"@sentry/types": "8.35.0",
72+
"@sentry/utils": "8.35.0",
7373
"@types/aws-lambda": "^8.10.62"
7474
},
7575
"devDependencies": {

packages/browser-utils/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/browser-utils",
3-
"version": "8.34.0",
3+
"version": "8.35.0",
44
"description": "Browser Utilities for all Sentry JavaScript SDKs",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/browser-utils",
@@ -39,9 +39,9 @@
3939
"access": "public"
4040
},
4141
"dependencies": {
42-
"@sentry/core": "8.34.0",
43-
"@sentry/types": "8.34.0",
44-
"@sentry/utils": "8.34.0"
42+
"@sentry/core": "8.35.0",
43+
"@sentry/types": "8.35.0",
44+
"@sentry/utils": "8.35.0"
4545
},
4646
"scripts": {
4747
"build": "run-p build:transpile build:types",

packages/browser/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/browser",
3-
"version": "8.34.0",
3+
"version": "8.35.0",
44
"description": "Official Sentry SDK for browsers",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/browser",
@@ -39,16 +39,16 @@
3939
"access": "public"
4040
},
4141
"dependencies": {
42-
"@sentry-internal/browser-utils": "8.34.0",
43-
"@sentry-internal/feedback": "8.34.0",
44-
"@sentry-internal/replay": "8.34.0",
45-
"@sentry-internal/replay-canvas": "8.34.0",
46-
"@sentry/core": "8.34.0",
47-
"@sentry/types": "8.34.0",
48-
"@sentry/utils": "8.34.0"
42+
"@sentry-internal/browser-utils": "8.35.0",
43+
"@sentry-internal/feedback": "8.35.0",
44+
"@sentry-internal/replay": "8.35.0",
45+
"@sentry-internal/replay-canvas": "8.35.0",
46+
"@sentry/core": "8.35.0",
47+
"@sentry/types": "8.35.0",
48+
"@sentry/utils": "8.35.0"
4949
},
5050
"devDependencies": {
51-
"@sentry-internal/integration-shims": "8.34.0",
51+
"@sentry-internal/integration-shims": "8.35.0",
5252
"fake-indexeddb": "^4.0.1"
5353
},
5454
"scripts": {

packages/bun/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/bun",
3-
"version": "8.34.0",
3+
"version": "8.35.0",
44
"description": "Official Sentry SDK for bun",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/bun",
@@ -39,11 +39,11 @@
3939
"access": "public"
4040
},
4141
"dependencies": {
42-
"@sentry/core": "8.34.0",
43-
"@sentry/node": "8.34.0",
44-
"@sentry/opentelemetry": "8.34.0",
45-
"@sentry/types": "8.34.0",
46-
"@sentry/utils": "8.34.0"
42+
"@sentry/core": "8.35.0",
43+
"@sentry/node": "8.35.0",
44+
"@sentry/opentelemetry": "8.35.0",
45+
"@sentry/types": "8.35.0",
46+
"@sentry/utils": "8.35.0"
4747
},
4848
"devDependencies": {
4949
"bun-types": "latest"

packages/cloudflare/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/cloudflare",
3-
"version": "8.34.0",
3+
"version": "8.35.0",
44
"description": "Offical Sentry SDK for Cloudflare Workers and Pages",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/cloudflare",
@@ -39,9 +39,9 @@
3939
"access": "public"
4040
},
4141
"dependencies": {
42-
"@sentry/core": "8.34.0",
43-
"@sentry/types": "8.34.0",
44-
"@sentry/utils": "8.34.0"
42+
"@sentry/core": "8.35.0",
43+
"@sentry/types": "8.35.0",
44+
"@sentry/utils": "8.35.0"
4545
},
4646
"optionalDependencies": {
4747
"@cloudflare/workers-types": "^4.x"

0 commit comments

Comments
 (0)