Skip to content

Commit f77bb6e

Browse files
Merge pull request #9345 from getsentry/master
[Gitflow] Merge master into develop
2 parents 7c84181 + 68660ac commit f77bb6e

File tree

43 files changed

+200
-157
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

+200
-157
lines changed

CHANGELOG.md

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

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

7+
## 7.75.0
8+
9+
### Important Changes
10+
11+
- **feat(opentelemetry): Add new `@sentry/opentelemetry` package (#9238)**
12+
13+
This release publishes a new package, `@sentry/opentelemetry`. This is a runtime agnostic replacement for `@sentry/opentelemetry-node` and exports a couple of useful utilities which can be used to use Sentry together with OpenTelemetry.
14+
15+
You can read more about [@sentry/opentelemetry in the Readme](https://github.com/getsentry/sentry-javascript/tree/develop/packages/opentelemetry).
16+
17+
- **feat(replay): Allow to treeshake rrweb features (#9274)**
18+
19+
Starting with this release, you can configure the following build-time flags in order to reduce the SDK bundle size:
20+
21+
* `__RRWEB_EXCLUDE_CANVAS__`
22+
* `__RRWEB_EXCLUDE_IFRAME__`
23+
* `__RRWEB_EXCLUDE_SHADOW_DOM__`
24+
25+
You can read more about [tree shaking in our docs](https://docs.sentry.io/platforms/javascript/configuration/tree-shaking/).
26+
27+
28+
### Other Changes
29+
30+
- build(deno): Prepare Deno SDK for release on npm (#9281)
31+
- feat: Remove tslib (#9299)
32+
- feat(node): Add abnormal session support for ANR (#9268)
33+
- feat(node): Remove `lru_map` dependency (#9300)
34+
- feat(node): Vendor `cookie` module (#9308)
35+
- feat(replay): Share performance instrumentation with tracing (#9296)
36+
- feat(types): Add missing Profiling types (macho debug image, profile measurements, stack frame properties) (#9277)
37+
- feat(types): Add statsd envelope types (#9304)
38+
- fix(astro): Add integration default export to types entry point (#9337)
39+
- fix(astro): Convert SDK init file import paths to POSIX paths (#9336)
40+
- fix(astro): Make `Replay` and `BrowserTracing` integrations tree-shakeable (#9287)
41+
- fix(integrations): Fix transaction integration (#9334)
42+
- fix(nextjs): Restore `autoInstrumentMiddleware` functionality (#9323)
43+
- fix(nextjs): Guard for case where `getInitialProps` may return undefined (#9342)
44+
- fix(node-experimental): Make node-fetch support optional (#9321)
45+
- fix(node): Check buffer length when attempting to parse ANR frame (#9314)
46+
- fix(replay): Fix xhr start timestamps (#9341)
47+
- fix(tracing-internal): Remove query params from urls with a trailing slash (#9328)
48+
- fix(types): Remove typo with CheckInEnvelope (#9303)
49+
750
## 7.74.1
851

952
- chore(astro): Add `astro-integration` keyword (#9265)

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": "7.74.1",
3+
"version": "7.75.0",
44
"npmClient": "yarn"
55
}

packages/angular-ivy/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/angular-ivy",
3-
"version": "7.74.1",
3+
"version": "7.75.0",
44
"description": "Official Sentry SDK for Angular with full Ivy Support",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/angular-ivy",
@@ -21,9 +21,9 @@
2121
"rxjs": "^6.5.5 || ^7.x"
2222
},
2323
"dependencies": {
24-
"@sentry/browser": "7.74.1",
25-
"@sentry/types": "7.74.1",
26-
"@sentry/utils": "7.74.1",
24+
"@sentry/browser": "7.75.0",
25+
"@sentry/types": "7.75.0",
26+
"@sentry/utils": "7.75.0",
2727
"tslib": "^2.4.1"
2828
},
2929
"devDependencies": {

packages/angular/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/angular",
3-
"version": "7.74.1",
3+
"version": "7.75.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,9 +21,9 @@
2121
"rxjs": "^6.5.5 || ^7.x"
2222
},
2323
"dependencies": {
24-
"@sentry/browser": "7.74.1",
25-
"@sentry/types": "7.74.1",
26-
"@sentry/utils": "7.74.1",
24+
"@sentry/browser": "7.75.0",
25+
"@sentry/types": "7.75.0",
26+
"@sentry/utils": "7.75.0",
2727
"tslib": "^2.4.1"
2828
},
2929
"devDependencies": {

packages/astro/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/astro",
3-
"version": "7.74.1",
3+
"version": "7.75.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",
@@ -37,11 +37,11 @@
3737
"astro": "3.x"
3838
},
3939
"dependencies": {
40-
"@sentry/browser": "7.74.1",
41-
"@sentry/core": "7.74.1",
42-
"@sentry/node": "7.74.1",
43-
"@sentry/types": "7.74.1",
44-
"@sentry/utils": "7.74.1",
40+
"@sentry/browser": "7.75.0",
41+
"@sentry/core": "7.75.0",
42+
"@sentry/node": "7.75.0",
43+
"@sentry/types": "7.75.0",
44+
"@sentry/utils": "7.75.0",
4545
"@sentry/vite-plugin": "^2.8.0"
4646
},
4747
"devDependencies": {

packages/browser-integration-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/browser-integration-tests",
3-
"version": "7.74.1",
3+
"version": "7.75.0",
44
"main": "index.js",
55
"license": "MIT",
66
"engines": {

packages/browser/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/browser",
3-
"version": "7.74.1",
3+
"version": "7.75.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",
@@ -23,14 +23,14 @@
2323
"access": "public"
2424
},
2525
"dependencies": {
26-
"@sentry-internal/tracing": "7.74.1",
27-
"@sentry/core": "7.74.1",
28-
"@sentry/replay": "7.74.1",
29-
"@sentry/types": "7.74.1",
30-
"@sentry/utils": "7.74.1"
26+
"@sentry-internal/tracing": "7.75.0",
27+
"@sentry/core": "7.75.0",
28+
"@sentry/replay": "7.75.0",
29+
"@sentry/types": "7.75.0",
30+
"@sentry/utils": "7.75.0"
3131
},
3232
"devDependencies": {
33-
"@sentry-internal/integration-shims": "7.74.1",
33+
"@sentry-internal/integration-shims": "7.75.0",
3434
"@types/md5": "2.1.33",
3535
"btoa": "^1.2.1",
3636
"chai": "^4.1.2",

packages/bun/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/bun",
3-
"version": "7.74.1",
3+
"version": "7.75.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",
@@ -23,10 +23,10 @@
2323
"access": "public"
2424
},
2525
"dependencies": {
26-
"@sentry/core": "7.74.1",
27-
"@sentry/node": "7.74.1",
28-
"@sentry/types": "7.74.1",
29-
"@sentry/utils": "7.74.1"
26+
"@sentry/core": "7.75.0",
27+
"@sentry/node": "7.75.0",
28+
"@sentry/types": "7.75.0",
29+
"@sentry/utils": "7.75.0"
3030
},
3131
"devDependencies": {
3232
"bun-types": "latest"

packages/core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/core",
3-
"version": "7.74.1",
3+
"version": "7.75.0",
44
"description": "Base implementation 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/core",
@@ -23,8 +23,8 @@
2323
"access": "public"
2424
},
2525
"dependencies": {
26-
"@sentry/types": "7.74.1",
27-
"@sentry/utils": "7.74.1"
26+
"@sentry/types": "7.75.0",
27+
"@sentry/utils": "7.75.0"
2828
},
2929
"scripts": {
3030
"build": "run-p build:transpile build:types",

packages/core/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const SDK_VERSION = '7.74.1';
1+
export const SDK_VERSION = '7.75.0';

0 commit comments

Comments
 (0)