@sentry/cli 1.73.1 → 1.73.2

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,12 @@
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.73.2
6
+
7
+ ### Various fixes & improvements
8
+
9
+ - install: Rename SENTRY_NO_PROGRESS_BAR flag to SENTRYCLI_NO_PROGRESS_BAR (#1132) by @kamilogorek
10
+
5
11
  ## 1.73.1
6
12
 
7
13
  ### Various fixes & improvements
package/checksums.txt CHANGED
@@ -1,9 +1,9 @@
1
- sentry-cli-Darwin-arm64=94134d4e93df23462698f09ff172b53abcff13ef929507670372c84b20f776b7
2
- sentry-cli-Darwin-universal=041e3994de2d49c562792ae74d2a4f9be1fa145f267dcb1ec894cd83cb8ec2f6
3
- sentry-cli-Darwin-x86_64=2b236ce84f866251013964ad4190ee6be8e8079d52d5b38d0efd13a468073f20
4
- sentry-cli-Linux-aarch64=3dc9dacf69d55f4fe64e67dccbea647f50f884019e0d0eb58534f407bbde7fbd
5
- sentry-cli-Linux-armv7=28bbd534ab4312e6a49b9792cf6f12c77fe5a280fa7bb7d71101af66ce3380b5
6
- sentry-cli-Linux-i686=437eeed2799dabae95e3fda76ddff649604729068265b2c2d88afff1a3a64446
7
- sentry-cli-Linux-x86_64=85ca7fce2267088766fdb6d00d6ff3ad45e43c234eab21a107e70292cee714c7
8
- sentry-cli-Windows-i686.exe=e994d15f6d6300feaca1f178d4b980b44162e8d9fac7ef23fff9490fd033aa6a
9
- sentry-cli-Windows-x86_64.exe=224a411aa268183576b56cd3978a4cd5e58bea4753f67bcfda51be5b46a5a58b
1
+ sentry-cli-Darwin-arm64=a363b15e883041ed24ba3e9c394952eeab3c0072800ab4874e8374f8dc31af0a
2
+ sentry-cli-Darwin-universal=2b7406c9ddd978ed7828a8491cdf2fa4fa4b83c232b6cda52e0b23caaac6452c
3
+ sentry-cli-Darwin-x86_64=072697e2ccb40d4ddf2623684f14635aadf6a22d45c9976bbaf55582626a0924
4
+ sentry-cli-Linux-aarch64=e9941a53eec7cca900582bbbbba63744295840be65d83aad34467c5eb747d881
5
+ sentry-cli-Linux-armv7=9a7ccbb6b732656a6e0754d86552e37e794972ed91a1383be39b9ced6f0b5d28
6
+ sentry-cli-Linux-i686=f09d66e4f640a2a2aeed72be98ddd2547846cca81a309ae056d26360fb7a87af
7
+ sentry-cli-Linux-x86_64=be5b856087324cb5d270c356c276ee48eecdbef591db155efabaf20576100d07
8
+ sentry-cli-Windows-i686.exe=284b67e0c16aaf318f06784f29c4855af62a5c4a5cee32f98076baa455076c63
9
+ sentry-cli-Windows-x86_64.exe=b6596a13760a25decee54ce3c5d7cc1214fff3c59c1e77d81ab0f920ad30c513
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "1.73.1",
3
+ "version": "1.73.2",
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",
@@ -48,7 +48,8 @@ function getLogStream(defaultStream) {
48
48
  function shouldRenderProgressBar() {
49
49
  const silentFlag = process.argv.some(v => v === '--silent');
50
50
  const silentConfig = process.env.npm_config_loglevel === 'silent';
51
- const silentEnv = process.env.SENTRY_NO_PROGRESS_BAR;
51
+ // Leave `SENTRY_NO_PROGRESS_BAR` for backwards compatibility
52
+ const silentEnv = process.env.SENTRYCLI_NO_PROGRESS_BAR || process.env.SENTRY_NO_PROGRESS_BAR;
52
53
  const ciEnv = process.env.CI === 'true';
53
54
  // If any of possible options is set, skip rendering of progress bar
54
55
  return !(silentFlag || silentConfig || silentEnv || ciEnv);