@sentry/cli 1.75.2 → 1.76.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  "You know what they say. Fool me once, strike one, but fool me twice... strike three." — Michael Scott
4
4
 
5
+ ## 1.76.0
6
+
7
+ ### Various fixes & improvements
8
+
9
+ - ci: Use macos-latest to run build workflow (#1800) by @loewenheim
10
+ - feat: Support org auth tokens (#1790) by @loewenheim
11
+ - test: Skip code coverage generation (#1793) by @mydea
12
+ - build(v1): Add `v1` tag config to ensure we do not publish as `latest` (d0f521b5) by @mydea
13
+
5
14
  ## 1.75.2
6
15
 
7
16
  - This release fixes the checksum mismatch from 1.75.1.
package/checksums.txt CHANGED
@@ -1,9 +1,9 @@
1
- sentry-cli-Darwin-arm64=aa8e7c19cf408673ea41ed379fa26e736a59352bf5d1b9dcb24a38cec35aac12
2
- sentry-cli-Darwin-universal=17fa02c091c66dfd35e22766986d24176e3d95e3535bf957eb06478fbb9421e8
3
- sentry-cli-Darwin-x86_64=4c5c61be273f45d508a0a1a87618e595301ed1a996e334298380fe0d5c149825
4
- sentry-cli-Linux-aarch64=96c04befc82ae68c275aecf433f4b354f2f153318ab4585612f330e85eccd679
5
- sentry-cli-Linux-armv7=0fe9e7c163bfe9285617cf05e33c94830cc2fe3353114910e0f8fb4c70aa3079
6
- sentry-cli-Linux-i686=5f0f2b8e08b78d18f1173b96aeb98bc2a099f639481c80c4808ae4f1b4ea825a
7
- sentry-cli-Linux-x86_64=58f103859e57435dac7672db75b471a091de8e65e3c8776978cdf5a752d1fccd
8
- sentry-cli-Windows-i686.exe=abc8d4e1a06599b4d511ec530b8bfc3d21261410e5099b1813f74053bedac4a4
9
- sentry-cli-Windows-x86_64.exe=ae44f7464d91c2f8effa03a08ddeaefaaf5c2e9725213fc17b71317515027b79
1
+ sentry-cli-Darwin-arm64=3ad86772148a987740c0edec2525bb6bb0127eb579a99e64adcef9be317c2acb
2
+ sentry-cli-Darwin-universal=1fb8038738889e8afc6b9b24dc388ced67b98bb3153566e347a04965f5f4074a
3
+ sentry-cli-Darwin-x86_64=21c2046608eb1d8d17f2c9d597fb06558633ff75ee16602132565176c6e29496
4
+ sentry-cli-Linux-aarch64=bca2a0d97a0deb7f5cb98d47e1b448ffdefe61a1956b41d8cda6730125eced37
5
+ sentry-cli-Linux-armv7=ed818dc2705fcbdb6db24d04b4ecfd42a9cc7b1580f19bd8b5705cb53e5d69cd
6
+ sentry-cli-Linux-i686=b085e3e867b25afee4cf780348ebfdbff724da5a785046083fba8c893b274093
7
+ sentry-cli-Linux-x86_64=e19d1e542fe97e711f5d7bb646289f441c4dc08ff92c3937e5289e9fcbfc72e6
8
+ sentry-cli-Windows-i686.exe=7ae0f0cec3098665f9adc1a63e9eba7d945f660de357ea338849895940a784b7
9
+ sentry-cli-Windows-x86_64.exe=6ba5df4f2f2ea5b4b2d5107b3f4c474ea666d9b413b3569bc3353dbcc198677d
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "1.75.2",
3
+ "version": "1.76.0",
4
4
  "description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/",
5
5
  "homepage": "https://docs.sentry.io/hosted/learn/cli/",
6
6
  "license": "BSD-3-Clause",
@@ -54,7 +54,7 @@
54
54
  "prettier": "^1.19.1"
55
55
  },
56
56
  "jest": {
57
- "collectCoverage": true,
57
+ "collectCoverage": false,
58
58
  "testEnvironment": "node",
59
59
  "testPathIgnorePatterns": [
60
60
  "src/utils"
@@ -63,5 +63,8 @@
63
63
  "volta": {
64
64
  "node": "10.24.1",
65
65
  "yarn": "1.22.19"
66
+ },
67
+ "publishConfig": {
68
+ "tag": "v1"
66
69
  }
67
70
  }