Skip to content

Commit e779b43

Browse files
authored
fix(v7/publish): Ensure discontinued packages are published with latest tag (#14926)
Sets the NPM publish tag of discontinued packages from `v7` back to `latest`. As pointed out in #14923, it's a bit misleading for packages that have not received a v8 version but newer v7 versions that their `latest` tag doesn't point to the in fact latest version. Affected packages: - `@sentry/angular-ivy` (replaced by `@sentry/angular` in v8) - `@sentry/hub` (discontinued) - `@sentry/tracing` (discontinued) - `@sentry/serverless` (replaced by `@sentry/aws-serverless`, `@sentry/google-cloud` and `@sentry/node` respectively)
1 parent bc7dfd6 commit e779b43

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/angular-ivy/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"module": "build/fesm2015/sentry-angular.js",
1414
"publishConfig": {
1515
"access": "public",
16-
"tag": "v7"
16+
"tag": "latest"
1717
},
1818
"peerDependencies": {
1919
"@angular/common": ">= 12.x <= 17.x",

packages/hub/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"publishConfig": {
2929
"access": "public",
30-
"tag": "v7"
30+
"tag": "latest"
3131
},
3232
"dependencies": {
3333
"@sentry/core": "7.120.2",

packages/serverless/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"publishConfig": {
2929
"access": "public",
30-
"tag": "v7"
30+
"tag": "latest"
3131
},
3232
"dependencies": {
3333
"@sentry/core": "7.120.2",

packages/tracing/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"publishConfig": {
2929
"access": "public",
30-
"tag": "v7"
30+
"tag": "latest"
3131
},
3232
"dependencies": {
3333
"@sentry-internal/tracing": "7.120.2"

0 commit comments

Comments
 (0)