8000 Merge pull request #11852 from getsentry/master · basarat/sentry-javascript@740f9c5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 740f9c5

Browse files
Merge pull request getsentry#11852 from getsentry/master
[Gitflow] Merge master into develop
2 parents 5faa33a + 033b8fb commit 740f9c5

File tree

43 files changed

+204
-160
lines changed

Some content is hidden

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

43 files changed

+204
-160
lines changed

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,50 @@
44

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

7+
## 8.0.0-beta.5
8+
9+
This beta release contains various bugfixes and improvements for the v8 beta cycle.
10+
11+
### Important Changes
12+
13+
- **feat(svelte): Add Svelte 5 support (#11807)**
14+
15+
We now officially support Svelte 5.
16+
17+
- **feat(browser): Send standalone fetch and XHR spans if there's no active parent span (#11783)**
18+
19+
Starting with this version, spans for outgoing fetch/xhr requests will be captured even if no pageload/navigation span
20+
is ongoing. This means that you will be able to have a more complete trace, especially for web applications that make a
21+
lot of HTTP requests on longer lived pages.
22+
23+
### Other Changes
24+
25+
- feat(astro): Add `transactionName` to isolation scope for requests (#11786)
26+
- feat(browser): Create standalone INP spans via `startInactiveSpan` (#11788)
27+
- feat(core): Add `trace` envelope header to span envelope (#11699)
28+
- feat(core): Add options to start standalone (segment) spans via `start*Span` APIs (#11696)
29+
- feat(core): Set default scope for BaseClient methods (#11775)
30+
- feat(core): Wrap cron `withMonitor` callback in `withIsolationScope` (#11797)
31+
- feat(feedback): New feedback button design (#11641)
32+
- feat(nextjs): Add `transactionName` to isolation scope for Next.js server side features (#11782)
33+
- feat(nextjs): Mute webpack warnings about critical dependencies inside `@opentelemetry/instrumentation` (#11810)
34+
- feat(node): Upgrade @prisma/instrumentation to 5.13.0 (#11779)
35+
- feat(react): type error as unknown in ErrorBoundary (#11819)
36+
- feat(remix): Add `wrapHandleErrorWithSentry` (#10370)
37+
- feat(remix): Set `formData` as `action` span data. (#10836)
38+
- feat(remix): Update scope `transactionName` for Remix server features (#11784)
39+
- fix(angular): Call `showReportDialog` in root context (#11703)
40+
- fix(core): Capture only failed console.assert calls (#11799)
41+
- fix(ember): Ensure unnecessary spans are avoided (#11846)
42+
- fix(feedback): Clarify the difference between createWidget and create Form in the feedback public api (#11838)
43+
- fix(feedback): Fix feedback type (#11787)
44+
- fix(feedback): Vendor preact into bundle (#11845)
45+
- fix(remix): Rethrow `loader`, `action` and `documentRequest` errors (#11793)
46+
- ref: Always return an immediately generated event ID from `captureException()`, `captureMessage()`, and
47+
`captureEvent()` (#11805)
48+
- ref(core): Remove transaction name extraction from `requestDataIntegration` (#11513)
49+
- ref(svelte): Use `onlyIfParent` for recording component update spans (#11809)
50+
751
## 8.0.0-beta.4
852

953
### Important Changes

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/browser-integration-tests",
3-
"version": "8.0.0-beta.4",
3+
"version": "8.0.0-beta.5",
44
"main": "index.js",
55
"license": "MIT",
66
"engines": {
@@ -42,7 +42,7 @@
4242
"@babel/preset-typescript": "^7.16.7",
4343
"@playwright/test": "^1.43.1",
4444
"@sentry-internal/rrweb": "2.11.0",
45-
"@sentry/browser": "8.0.0-beta.4",
45+
"@sentry/browser": "8.0.0-beta.5",
4646
"axios": "1.6.7",
4747
"babel-loader": "^8.2.2",
4848
"html-webpack-plugin": "^5.5.0",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/bundle-analyzer-scenarios",
3-
"version": "8.0.0-beta.4",
3+
"version": "8.0.0-beta.5",
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/e2e-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/e2e-tests",
3-
"version": "8.0.0-beta.4",
3+
"version": "8.0.0-beta.5",
44
"license": "MIT",
55
"private": true,
66
"scripts": {

dev-packages/event-proxy-server/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "8.0.0-beta.4",
3+
"version": "8.0.0-beta.5",
44
"name": "@sentry-internal/event-proxy-server",
55
"author": "Sentry",
66
"license": "MIT",
@@ -40,8 +40,8 @@
4040
"clean": "rimraf -g ./node_modules ./build"
4141
},
4242
"devDependencies": {
43-
"@sentry/types": "8.0.0-beta.4",
44-
"@sentry/utils": "8.0.0-beta.4"
43+
"@sentry/types": "8.0.0-beta.5",
44+
"@sentry/utils": "8.0.0-beta.5"
4545
},
4646
"volta": {
4747
"extends": "../../package.json"

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/node-integration-tests",
3-
"version": "8.0.0-beta.4",
3+
"version": "8.0.0-beta.5",
44
"license": "MIT",
55
"engines": {
66
"node": ">=14.18"
@@ -31,8 +31,8 @@
3131
"@nestjs/core": "^10.3.3",
3232
"@nestjs/platform-express": "^10.3.3",
3333
"@prisma/client": "5.9.1",
34-
"@sentry/node": "8.0.0-beta.4",
35-
"@sentry/types": "8.0.0-beta.4",
34+
"@sentry/node": "8.0.0-beta.5",
35+
"@sentry/types": "8.0.0-beta.5",
3636
"@types/mongodb": "^3.6.20",
3737
"@types/mysql": "^2.15.21",
3838
"@types/pg": "^8.6.5",

dev-packages/overhead-metrics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "8.0.0-beta.4",
3+
"version": "8.0.0-beta.5",
44
"name": "@sentry-internal/overhead-metrics",
55
"main": "index.js",
66
"author": "Sentry",

dev-packages/rollup-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/rollup-utils",
3-
"version": "8.0.0-beta.4",
3+
"version": "8.0.0-beta.5",
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

Lines changed: 1 addition & 1 deletion
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.0.0-beta.4",
4+
"version": "8.0.0-beta.5",
55
"license": "MIT",
66
"engines": {
77
"node": ">=18"

lerna.json

Lines changed: 1 addition & 1 deletion
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.0.0-beta.4",
3+
"version": "8.0.0-beta.5",
44
"npmClient": "yarn"
55
}

0 commit comments

Comments
 (0)
0