Skip to content

Commit d6b7279

Browse files
Merge pull request #13234 from getsentry/master
[Gitflow] Merge master into develop
2 parents b6cf7b0 + 62271a1 commit d6b7279

File tree

49 files changed

+229
-194
lines changed

Some content is hidden

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

49 files changed

+229
-194
lines changed

CHANGELOG.md

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,49 @@
11
# Changelog
22

3-
> [!IMPORTANT] Important
4-
>
3+
<!-- prettier-ignore-start -->
4+
> [!IMPORTANT]
55
> If you are upgrading to the `8.x` versions of the SDK from `7.x` or below, make sure you follow our
66
> [migration guide](https://docs.sentry.io/platforms/javascript/migration/) first.
7+
<!-- prettier-ignore-end -->
78
89
## Unreleased
910

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

13+
## 8.23.0
14+
15+
### Important Changes
16+
17+
- **feat(cloudflare): Add Cloudflare D1 instrumentation (#13142)**
18+
19+
This release includes support for Cloudflare D1, Cloudflare's serverless SQL database. To instrument your Cloudflare D1
20+
database, use the `instrumentD1WithSentry` method as follows:
21+
22+
```ts
23+
// env.DB is the D1 DB binding configured in your `wrangler.toml`
24+
const db = instrumentD1WithSentry(env.DB);
25+
// Now you can use the database as usual
26+
await db.prepare('SELECT * FROM table WHERE id = ?').bind(1).run();
27+
```
28+
29+
### Other Changes
30+
31+
- feat(cloudflare): Allow users to pass handler to sentryPagesPlugin (#13192)
32+
- feat(cloudflare): Instrument scheduled handler (#13114)
33+
- feat(core): Add `getTraceData` function (#13134)
34+
- feat(nestjs): Automatic instrumentation of nestjs interceptors before route execution (#13153)
35+
- feat(nestjs): Automatic instrumentation of nestjs pipes (#13137)
36+
- feat(nuxt): Filter out Nuxt build assets (#13148)
37+
- feat(profiling): Attach sdk info to chunks (#13145)
38+
- feat(solidstart): Add sentry `onBeforeResponse` middleware to enable distributed tracing (#13221)
39+
- feat(solidstart): Filter out low quality transactions for build assets (#13222)
40+
- fix(browser): Avoid showing browser extension error message in non-`window` global scopes (#13156)
41+
- fix(feedback): Call dialog.close() in dialog close callbacks in `\_loadAndRenderDialog` (#13203)
42+
- fix(nestjs): Inline Observable type to resolve missing 'rxjs' dependency (#13166)
43+
- fix(nuxt): Detect pageload by adding flag in Vue router (#13171)
44+
- fix(utils): Handle when requests get aborted in fetch instrumentation (#13202)
45+
- ref(browser): Improve browserMetrics collection (#13062)
46+
1247
Work in this release was contributed by @horochx. Thank you for your contribution!
1348

1449
## 8.22.0

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.22.0",
3+
"version": "8.23.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.22.0",
46+
"@sentry/browser": "8.23.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

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.22.0",
3+
"version": "8.23.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/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.22.0",
3+
"version": "8.23.0",
44
"license": "MIT",
55
"private": true,
66
"scripts": {

dev-packages/external-contributor-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/external-contributor-gh-action",
33
"description": "An internal Github Action to add external contributors to the CHANGELOG.md file.",
4-
"version": "8.22.0",
4+
"version": "8.23.0",
55
"license": "MIT",
66
"engines": {
77
"node": ">=18"

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.22.0",
3+
"version": "8.23.0",
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.22.0",
35-
"@sentry/types": "8.22.0",
34+
"@sentry/node": "8.23.0",
35+
"@sentry/types": "8.23.0",
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.22.0",
3+
"version": "8.23.0",
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.22.0",
3+
"version": "8.23.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

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.22.0",
4+
"version": "8.23.0",
55
"license": "MIT",
66
"engines": {
77
"node": ">=18"

dev-packages/test-utils/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.22.0",
3+
"version": "8.23.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.22.0",
49-
"@sentry/utils": "8.22.0"
48+
"@sentry/types": "8.23.0",
49+
"@sentry/utils": "8.23.0"
5050
},
5151
"volta": {
5252
"extends": "../../package.json"

0 commit comments

Comments
 (0)