@sentry/cli 2.3.0 → 2.4.1

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/checksums.txt CHANGED
@@ -1,9 +1,9 @@
1
- sentry-cli-Darwin-arm64=bc2a50eb9db45dfb2157723bcd0b0995436e57883389b8a26f99342de83083a3
2
- sentry-cli-Darwin-universal=64daf76a3611e75440326f47064f7d2ed6eb726e69315bf4ed3ff263fd496617
3
- sentry-cli-Darwin-x86_64=8bbd093b3648fcd128158dfbe048c45e9ac30e99b41204b019dc16bba53d6c3d
4
- sentry-cli-Linux-aarch64=826359cc670730361ab444248a922e6276c61801ebdd5c4634107388d8e64cab
5
- sentry-cli-Linux-armv7=7d83ba9e473b4bfda92ff3770d58a09820bb2649c824797b236b8d2fa3f4997f
6
- sentry-cli-Linux-i686=bf7c5ebf8d173831932a4be1627431076f0f625df2056598c98b37dd5c6fa753
7
- sentry-cli-Linux-x86_64=900fb305c6122a3e99671d62f64c99c91f74fc2f30bec802e668820493e30fb0
8
- sentry-cli-Windows-i686.exe=ca8e144e2262210f1e77c1448f69ab91bc23f83e08f966bb52364855443ab606
9
- sentry-cli-Windows-x86_64.exe=4033a4c30c493135d16e69c747e10e90ca596f78ec8b56ec815d790fd46a9dec
1
+ sentry-cli-Darwin-arm64=a6e9d16eacc474cb296bd4d1da8b82c3239fdacf432a9e071b4b934065709064
2
+ sentry-cli-Darwin-universal=bc0c6198ddb0bcc4da7525e36876c205b7f9baaa7e7a2f5bb4ec6a553b065773
3
+ sentry-cli-Darwin-x86_64=4f5ce40377832ab82115e6a672b8e2f4d72eaa21cb71ca9512e45e2a58917af3
4
+ sentry-cli-Linux-aarch64=d47b685a8eaca45fd9ca28c4d7fd182fa2c1b475d7617558ddf744033ee0a86b
5
+ sentry-cli-Linux-armv7=07b73382dda9c4680e99806123ba6af9dfedac5419ef44f2c2318481bc0ace77
6
+ sentry-cli-Linux-i686=dd296e660d5412db80a46d5d68acd3d4122d7f3503da626cda01f6191ce1a908
7
+ sentry-cli-Linux-x86_64=2ce1ce0cc3bec9ab945be807df15697f618c737e12d67e935c8a45bd26117340
8
+ sentry-cli-Windows-i686.exe=1f21bbbb36f11295175e6480a70bb8cf35df440a4f51a660950f0752e1c3d0b1
9
+ sentry-cli-Windows-x86_64.exe=ce843646bcc92549b68736016f94e77a16847dc805a5221869fdd30a9cab820e
package/js/index.d.ts CHANGED
@@ -38,11 +38,6 @@ declare module '@sentry/cli' {
38
38
  * This value will update `SENTRY_VCS_REMOTE` env variable.
39
39
  */
40
40
  vcsRemote?: string;
41
- /**
42
- * Unique identifier for the distribution, used to further segment your release.
43
- * Usually your build number.
44
- */
45
- dist?: string;
46
41
  /**
47
42
  * If true, all logs are suppressed.
48
43
  */
@@ -116,6 +111,11 @@ declare module '@sentry/cli' {
116
111
  * By default the following file extensions are processed: js, map, jsbundle and bundle.
117
112
  */
118
113
  ext?: string[];
114
+ /**
115
+ * Unique identifier for the distribution, used to further segment your release.
116
+ * Usually your build number.
117
+ */
118
+ dist?: string;
119
119
  }
120
120
 
121
121
  export interface SentryCliNewDeployOptions {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "2.3.0",
3
+ "version": "2.4.1",
4
4
  "description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/",
5
5
  "repository": "git://github.com/getsentry/sentry-cli.git",
6
6
  "homepage": "https://docs.sentry.io/hosted/learn/cli/",
@@ -47,9 +47,10 @@ function shouldRenderProgressBar() {
47
47
  const silentFlag = process.argv.some((v) => v === '--silent');
48
48
  const silentConfig = process.env.npm_config_loglevel === 'silent';
49
49
  const silentEnv = process.env.SENTRYCLI_NO_PROGRESS_BAR;
50
- const ciEnv = process.env.CI === 'true';
50
+ const ciEnv = process.env.CI === 'true' || process.env.CI === '1';
51
+ const notTTY = !process.stdout.isTTY;
51
52
  // If any of possible options is set, skip rendering of progress bar
52
- return !(silentFlag || silentConfig || silentEnv || ciEnv);
53
+ return !(silentFlag || silentConfig || silentEnv || ciEnv || notTTY);
53
54
  }
54
55
 
55
56
  function getDownloadUrl(platform, arch) {