Skip to content

Commit 955bc9b

Browse files
committed
release: 5.2.0
1 parent 1e6cfc7 commit 955bc9b

File tree

21 files changed

+107
-82
lines changed

21 files changed

+107
-82
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## 5.2.0
4+
5+
### New Features ✨
6+
7+
- (core) Pass `mapDir` to `rewriteSourcesHook` by @chargome in [#908](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/908)
8+
- Use `crypto.randomUUID` rather than `uuid` by @timfish in [#892](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/892)
9+
10+
### Bug Fixes 🐛
11+
12+
- (core) Conditionally add tracing headers by @chargome in [#907](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/907)
13+
- (e2e-tests) Pin axios to 1.13.5 to avoid compromised 1.14.1 by @andreiborza in [#906](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/906)
14+
- Add missing webpack5 entrypoint in webpack-plugin by @brunodccarvalho in [#905](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/905)
15+
16+
### Internal Changes 🔧
17+
18+
- (deps) Bump vulnerable webpack version by @chargome in [#909](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/909)
19+
- Vite integration tests by @timfish in [#899](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/899)
20+
- Webpack integration tests by @timfish in [#904](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/904)
21+
- Isolate integration test package installs by @timfish in [#902](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/902)
22+
- Pin GitHub Actions to full-length commit SHAs by @joshuarli in [#900](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/900)
23+
- Rollup integration tests by @timfish in [#897](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/897)
24+
- New integration tests by @timfish in [#896](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/896)
25+
- Remove lerna by @timfish in [#895](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/895)
26+
- Migrate to Vitest by @timfish in [#894](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/894)
27+
328
## 5.1.1
429

530
### Bug Fixes 🐛

packages/babel-plugin-component-annotate/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/babel-plugin-component-annotate",
3-
"version": "5.1.1",
3+
"version": "5.2.0",
44
"description": "A Babel plugin that annotates frontend components with additional data to enrich the experience in Sentry",
55
"repository": "git://github.com/getsentry/sentry-javascript-bundler-plugins.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/babel-plugin-component-annotate",
@@ -52,8 +52,8 @@
5252
"devDependencies": {
5353
"@babel/core": "7.18.5",
5454
"@babel/preset-react": "^7.23.3",
55-
"@sentry-internal/eslint-config": "5.1.1",
56-
"@sentry-internal/sentry-bundler-plugin-tsconfig": "5.1.1",
55+
"@sentry-internal/eslint-config": "5.2.0",
56+
"@sentry-internal/sentry-bundler-plugin-tsconfig": "5.2.0",
5757
"@types/node": "^18.6.3",
5858
"eslint": "^8.18.0",
5959
"vitest": "^4.0.0",

packages/bundler-plugin-core/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/bundler-plugin-core",
3-
"version": "5.1.1",
3+
"version": "5.2.0",
44
"description": "Sentry Bundler Plugin Core",
55
"repository": "git://github.com/getsentry/sentry-javascript-bundler-plugins.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/bundler-plugin-core",
@@ -55,16 +55,16 @@
5555
},
5656
"dependencies": {
5757
"@babel/core": "^7.18.5",
58-
"@sentry/babel-plugin-component-annotate": "5.1.1",
58+
"@sentry/babel-plugin-component-annotate": "5.2.0",
5959
"@sentry/cli": "^2.58.5",
6060
"dotenv": "^16.3.1",
6161
"find-up": "^5.0.0",
6262
"glob": "^13.0.6",
6363
"magic-string": "~0.30.8"
6464
},
6565
"devDependencies": {
66-
"@sentry-internal/eslint-config": "5.1.1",
67-
"@sentry-internal/sentry-bundler-plugin-tsconfig": "5.1.1",
66+
"@sentry-internal/eslint-config": "5.2.0",
67+
"@sentry-internal/sentry-bundler-plugin-tsconfig": "5.2.0",
6868
"@sentry/core": "8.30.0",
6969
"@sentry/types": "8.30.0",
7070
"@sentry/utils": "8.30.0",

packages/dev-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/dev-utils",
3-
"version": "5.1.1",
3+
"version": "5.2.0",
44
"license": "MIT",
55
"private": true,
66
"files": [

packages/e2e-tests/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/bundler-plugin-e2e-tests",
3-
"version": "5.1.1",
3+
"version": "5.2.0",
44
"license": "MIT",
55
"private": true,
66
"scripts": {
@@ -15,15 +15,15 @@
1515
"lint": "eslint ."
1616
},
1717
"dependencies": {
18-
"@sentry/esbuild-plugin": "5.1.1",
19-
"@sentry/rollup-plugin": "5.1.1",
20-
"@sentry/vite-plugin": "5.1.1",
21-
"@sentry/webpack-plugin": "5.1.1",
18+
"@sentry/esbuild-plugin": "5.2.0",
19+
"@sentry/rollup-plugin": "5.2.0",
20+
"@sentry/vite-plugin": "5.2.0",
21+
"@sentry/webpack-plugin": "5.2.0",
2222
"axios": "1.13.5"
2323
},
2424
"devDependencies": {
25-
"@sentry-internal/eslint-config": "5.1.1",
26-
"@sentry-internal/sentry-bundler-plugin-tsconfig": "5.1.1",
25+
"@sentry-internal/eslint-config": "5.2.0",
26+
"@sentry-internal/sentry-bundler-plugin-tsconfig": "5.2.0",
2727
"@types/axios": "^0.14.0",
2828
"@types/glob": "8.0.0",
2929
"esbuild": "0.14.49",

packages/esbuild-plugin/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/esbuild-plugin",
3-
"version": "5.1.1",
3+
"version": "5.2.0",
44
"description": "Official Sentry esbuild plugin",
55
"repository": "git@github.com:getsentry/sentry-javascript-bundler-plugins.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/esbuild-plugin",
@@ -48,11 +48,11 @@
4848
"prepack": "ts-node ./src/prepack.ts"
4949
},
5050
"dependencies": {
51-
"@sentry/bundler-plugin-core": "5.1.1"
51+
"@sentry/bundler-plugin-core": "5.2.0"
5252
},
5353
"devDependencies": {
54-
"@sentry-internal/eslint-config": "5.1.1",
55-
"@sentry-internal/sentry-bundler-plugin-tsconfig": "5.1.1",
54+
"@sentry-internal/eslint-config": "5.2.0",
55+
"@sentry-internal/sentry-bundler-plugin-tsconfig": "5.2.0",
5656
"@types/node": "^18.6.3",
5757
"eslint": "^8.18.0",
5858
"vitest": "^4.0.0",

packages/eslint-configs/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/eslint-config",
3-
"version": "5.1.1",
3+
"version": "5.2.0",
44
"license": "MIT",
55
"private": true,
66
"peerDependencies": {

packages/integration-tests-next/fixtures/rolldown/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"private": true,
55
"type": "module",
66
"dependencies": {
7-
"@sentry/rollup-plugin": "5.1.1",
7+
"@sentry/rollup-plugin": "5.2.0",
88
"react": "19.2.4",
99
"rolldown": "1.0.0-rc.10"
1010
},
1111
"pnpm": {
1212
"overrides": {
13-
"@sentry/bundler-plugin-core": "file:../../../bundler-plugin-core/sentry-bundler-plugin-core-5.1.1.tgz",
14-
"@sentry/rollup-plugin": "file:../../../rollup-plugin/sentry-rollup-plugin-5.1.1.tgz",
15-
"@sentry/babel-plugin-component-annotate": "file:../../../babel-plugin-component-annotate/sentry-babel-plugin-component-annotate-5.1.1.tgz"
13+
"@sentry/bundler-plugin-core": "file:../../../bundler-plugin-core/sentry-bundler-plugin-core-5.2.0.tgz",
14+
"@sentry/rollup-plugin": "file:../../../rollup-plugin/sentry-rollup-plugin-5.2.0.tgz",
15+
"@sentry/babel-plugin-component-annotate": "file:../../../babel-plugin-component-annotate/sentry-babel-plugin-component-annotate-5.2.0.tgz"
1616
},
1717
"patchedDependencies": {
1818
"@sentry/cli": "../patches/@sentry__cli.patch"

packages/integration-tests-next/fixtures/rollup3/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
"rollup": "3.30.0",
99
"@rollup/plugin-babel": "6.0.4",
1010
"@rollup/plugin-node-resolve": "15.2.3",
11-
"@sentry/rollup-plugin": "5.1.1"
11+
"@sentry/rollup-plugin": "5.2.0"
1212
},
1313
"pnpm": {
1414
"overrides": {
15-
"@sentry/bundler-plugin-core": "file:../../../bundler-plugin-core/sentry-bundler-plugin-core-5.1.1.tgz",
16-
"@sentry/rollup-plugin": "file:../../../rollup-plugin/sentry-rollup-plugin-5.1.1.tgz",
17-
"@sentry/babel-plugin-component-annotate": "file:../../../babel-plugin-component-annotate/sentry-babel-plugin-component-annotate-5.1.1.tgz"
15+
"@sentry/bundler-plugin-core": "file:../../../bundler-plugin-core/sentry-bundler-plugin-core-5.2.0.tgz",
16+
"@sentry/rollup-plugin": "file:../../../rollup-plugin/sentry-rollup-plugin-5.2.0.tgz",
17+
"@sentry/babel-plugin-component-annotate": "file:../../../babel-plugin-component-annotate/sentry-babel-plugin-component-annotate-5.2.0.tgz"
1818
},
1919
"patchedDependencies": {
2020
"@sentry/cli": "../patches/@sentry__cli.patch"

packages/integration-tests-next/fixtures/rollup4/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
"rollup": "4.59.0",
99
"@rollup/plugin-babel": "6.0.4",
1010
"@rollup/plugin-node-resolve": "16.0.3",
11-
"@sentry/rollup-plugin": "5.1.1"
11+
"@sentry/rollup-plugin": "5.2.0"
1212
},
1313
"pnpm": {
1414
"overrides": {
15-
"@sentry/bundler-plugin-core": "file:../../../bundler-plugin-core/sentry-bundler-plugin-core-5.1.1.tgz",
16-
"@sentry/rollup-plugin": "file:../../../rollup-plugin/sentry-rollup-plugin-5.1.1.tgz",
17-
"@sentry/babel-plugin-component-annotate": "file:../../../babel-plugin-component-annotate/sentry-babel-plugin-component-annotate-5.1.1.tgz"
15+
"@sentry/bundler-plugin-core": "file:../../../bundler-plugin-core/sentry-bundler-plugin-core-5.2.0.tgz",
16+
"@sentry/rollup-plugin": "file:../../../rollup-plugin/sentry-rollup-plugin-5.2.0.tgz",
17+
"@sentry/babel-plugin-component-annotate": "file:../../../babel-plugin-component-annotate/sentry-babel-plugin-component-annotate-5.2.0.tgz"
1818
},
1919
"patchedDependencies": {
2020
"@sentry/cli": "../patches/@sentry__cli.patch"

0 commit comments

Comments
 (0)