Skip to content

Commit 568ab8a

Browse files
authored
chore(repo): Manually sync master -> develop (#13747)
1 parent 7584ae4 commit 568ab8a

File tree

50 files changed

+234
-195
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

+234
-195
lines changed

CHANGELOG.md

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,52 @@
1010

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

13+
## 8.31.0
14+
15+
### Important Changes
16+
17+
- **feat(node): Add `dataloader` integration (#13664)**
18+
19+
This release adds a new integration for the [`dataloader` package](https://www.npmjs.com/package/dataloader). The Node
20+
SDK (and all SDKs that depend on it) will now automatically instrument `dataloader` instances. You can also add it
21+
manually:
22+
23+
```js
24+
Sentry.init({
25+
integrations: [Sentry.dataloaderIntegration()],
26+
});
27+
```
28+
29+
### Other Changes
30+
31+
- feat(browser): Add navigation `activationStart` timestamp to pageload span (#13658)
32+
- feat(gatsby): Add optional `deleteSourcemapsAfterUpload` (#13610)
33+
- feat(nextjs): Give app router prefetch requests a `http.server.prefetch` op (#13600)
34+
- feat(nextjs): Improve Next.js serverside span data quality (#13652)
35+
- feat(node): Add `disableInstrumentationWarnings` option (#13693)
36+
- feat(nuxt): Adding `experimental_basicServerTracing` option to Nuxt module (#13643)
37+
- feat(nuxt): Improve logs about adding Node option 'import' (#13726)
38+
- feat(replay): Add `onError` callback + other small improvements to debugging (#13721)
39+
- feat(replay): Add experimental option to allow for a checkout every 6 minutes (#13069)
40+
- feat(wasm): Unconditionally parse instruction addresses (#13655)
41+
- fix: Ensure all logs are wrapped with `consoleSandbox` (#13690)
42+
- fix(browser): Try multiple options for `lazyLoadIntegration` script parent element lookup (#13717)
43+
- fix(feedback): Actor color applies to feedback icon (#13702)
44+
- fix(feedback): Fix form width on mobile devices (#13068)
45+
- fix(nestjs): Preserve original function name on `SentryTraced` functions (#13684)
46+
- fix(node): Don't overwrite local variables for re-thrown errors (#13644)
47+
- fix(normalize): Treat Infinity as NaN both are non-serializable numbers (#13406)
48+
- fix(nuxt): Use correct server output file path (#13725)
49+
- fix(opentelemetry): Always use active span in `Propagator.inject` (#13381)
50+
- fix(replay): Fixes potential out-of-order segments (#13609)
51+
1352
Work in this release was contributed by @KyGuy2002, @artzhookov, and @julianCast. Thank you for your contributions!
1453

1554
## 8.30.0
1655

1756
### Important Changes
1857

19-
- _feat(node): Add `kafkajs` integration (#13528)_
58+
- **feat(node): Add `kafkajs` integration (#13528)**
2059

2160
This release adds a new integration that instruments `kafkajs` library with spans and traces. This integration is
2261
automatically enabled by default, but can be included with the `Sentry.kafkaIntegration()` import.

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

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

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

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/node-integration-tests",
3-
"version": "8.30.0",
3+
"version": "8.31.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.30.0",
35-
"@sentry/node": "8.30.0",
36-
"@sentry/types": "8.30.0",
37-
"@sentry/utils": "8.30.0",
34+
"@sentry/aws-serverless": "8.31.0",
35+
"@sentry/node": "8.31.0",
36+
"@sentry/types": "8.31.0",
37+
"@sentry/utils": "8.31.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

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

0 commit comments

Comments
 (0)