Skip to content

Commit cd8641b

Browse files
authored
Merge branch 'main' into ci/migrate-to-craft-action
2 parents 80a76af + 36b714b commit cd8641b

17 files changed

Lines changed: 74 additions & 45 deletions

File tree

CHANGELOG.md

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

55
- "You know what they say ‘Fool me once, strike one, but fool me twice… strike three.’" — Michael Scott
66

7+
## 4.6.2
8+
9+
- fix(vite): Ensure sentryVitePlugin always returns an array of plugins ([#832](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/832))
10+
- fix(vite): Skip code injection for HTML facade chunks ([#830](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/830))
11+
- fix(rollup): Prevent double-injection of debug ID ([#827](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/827))
12+
- fix(esbuild): fix debug ID injection when moduleMetadata or applicationKey is set ([#828](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/828))
13+
714
## 4.6.1
815

916
- chore(deps): Update glob to 10.5.0 ([#823](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/823))

RELEASE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Release Process
2+
3+
1. Open a PR to update the changelog on `main`
4+
2. After the changelog PR is merged, go to the **Actions** tab and manually trigger the **"Prepare Release"** workflow, entering the version you want to release
5+
3. After the workflow completes, go to [getsentry/publish](https://github.com/getsentry/publish), find the corresponding issue created by the workflow, and add the `accepted` label to finalize the release

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "4.6.1",
3+
"version": "4.6.2",
44
"npmClient": "yarn",
55
"useWorkspaces": true
66
}

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": "4.6.1",
3+
"version": "4.6.2",
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",
@@ -56,8 +56,8 @@
5656
"@babel/preset-typescript": "7.17.12",
5757
"@rollup/plugin-babel": "5.3.1",
5858
"@rollup/plugin-node-resolve": "13.3.0",
59-
"@sentry-internal/eslint-config": "4.6.1",
60-
"@sentry-internal/sentry-bundler-plugin-tsconfig": "4.6.1",
59+
"@sentry-internal/eslint-config": "4.6.2",
60+
"@sentry-internal/sentry-bundler-plugin-tsconfig": "4.6.2",
6161
"@swc/core": "^1.2.205",
6262
"@swc/jest": "^0.2.21",
6363
"@types/jest": "^28.1.3",

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": "4.6.1",
3+
"version": "4.6.2",
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",
@@ -53,7 +53,7 @@
5353
},
5454
"dependencies": {
5555
"@babel/core": "^7.18.5",
56-
"@sentry/babel-plugin-component-annotate": "4.6.1",
56+
"@sentry/babel-plugin-component-annotate": "4.6.2",
5757
"@sentry/cli": "^2.57.0",
5858
"dotenv": "^16.3.1",
5959
"find-up": "^5.0.0",
@@ -68,8 +68,8 @@
6868
"@rollup/plugin-json": "4.1.0",
6969
"@rollup/plugin-node-resolve": "13.3.0",
7070
"@rollup/plugin-replace": "^4.0.0",
71-
"@sentry-internal/eslint-config": "4.6.1",
72-
"@sentry-internal/sentry-bundler-plugin-tsconfig": "4.6.1",
71+
"@sentry-internal/eslint-config": "4.6.2",
72+
"@sentry-internal/sentry-bundler-plugin-tsconfig": "4.6.2",
7373
"@sentry/core": "8.30.0",
7474
"@sentry/types": "8.30.0",
7575
"@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": "4.6.1",
3+
"version": "4.6.2",
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": "4.6.1",
3+
"version": "4.6.2",
44
"license": "MIT",
55
"private": true,
66
"scripts": {
@@ -15,15 +15,15 @@
1515
"lint": "eslint ."
1616
},
1717
"dependencies": {
18-
"@sentry/esbuild-plugin": "4.6.1",
19-
"@sentry/rollup-plugin": "4.6.1",
20-
"@sentry/vite-plugin": "4.6.1",
21-
"@sentry/webpack-plugin": "4.6.1",
18+
"@sentry/esbuild-plugin": "4.6.2",
19+
"@sentry/rollup-plugin": "4.6.2",
20+
"@sentry/vite-plugin": "4.6.2",
21+
"@sentry/webpack-plugin": "4.6.2",
2222
"axios": "^1.1.3"
2323
},
2424
"devDependencies": {
25-
"@sentry-internal/eslint-config": "4.6.1",
26-
"@sentry-internal/sentry-bundler-plugin-tsconfig": "4.6.1",
25+
"@sentry-internal/eslint-config": "4.6.2",
26+
"@sentry-internal/sentry-bundler-plugin-tsconfig": "4.6.2",
2727
"@swc/jest": "^0.2.21",
2828
"@types/axios": "^0.14.0",
2929
"@types/glob": "8.0.0",

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": "4.6.1",
3+
"version": "4.6.2",
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,7 +48,7 @@
4848
"prepack": "ts-node ./src/prepack.ts"
4949
},
5050
"dependencies": {
51-
"@sentry/bundler-plugin-core": "4.6.1",
51+
"@sentry/bundler-plugin-core": "4.6.2",
5252
"unplugin": "1.0.1",
5353
"uuid": "^9.0.0"
5454
},
@@ -58,8 +58,8 @@
5858
"@babel/preset-typescript": "7.17.12",
5959
"@rollup/plugin-babel": "5.3.1",
6060
"@rollup/plugin-node-resolve": "13.3.0",
61-
"@sentry-internal/eslint-config": "4.6.1",
62-
"@sentry-internal/sentry-bundler-plugin-tsconfig": "4.6.1",
61+
"@sentry-internal/eslint-config": "4.6.2",
62+
"@sentry-internal/sentry-bundler-plugin-tsconfig": "4.6.2",
6363
"@swc/core": "^1.2.205",
6464
"@swc/jest": "^0.2.21",
6565
"@types/jest": "^28.1.3",

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": "4.6.1",
3+
"version": "4.6.2",
44
"license": "MIT",
55
"private": true,
66
"peerDependencies": {

packages/integration-tests/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/integration-tests",
3-
"version": "4.6.1",
3+
"version": "4.6.2",
44
"license": "MIT",
55
"private": true,
66
"scripts": {
@@ -19,13 +19,13 @@
1919
"@rollup/plugin-babel": "^6.0.4",
2020
"@rollup/plugin-commonjs": "^25.0.7",
2121
"@rollup/plugin-node-resolve": "^15.2.3",
22-
"@sentry-internal/eslint-config": "4.6.1",
23-
"@sentry-internal/sentry-bundler-plugin-tsconfig": "4.6.1",
24-
"@sentry/bundler-plugin-core": "4.6.1",
25-
"@sentry/esbuild-plugin": "4.6.1",
26-
"@sentry/rollup-plugin": "4.6.1",
27-
"@sentry/vite-plugin": "4.6.1",
28-
"@sentry/webpack-plugin": "4.6.1",
22+
"@sentry-internal/eslint-config": "4.6.2",
23+
"@sentry-internal/sentry-bundler-plugin-tsconfig": "4.6.2",
24+
"@sentry/bundler-plugin-core": "4.6.2",
25+
"@sentry/esbuild-plugin": "4.6.2",
26+
"@sentry/rollup-plugin": "4.6.2",
27+
"@sentry/vite-plugin": "4.6.2",
28+
"@sentry/webpack-plugin": "4.6.2",
2929
"@swc/jest": "^0.2.21",
3030
"@types/jest": "^28.1.3",
3131
"@types/react": "^18.2.0",

0 commit comments

Comments
 (0)