@sentry/cli 1.73.1 → 1.74.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/CHANGELOG.md CHANGED
@@ -2,6 +2,29 @@
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.74.1
6
+
7
+ ### Various fixes & improvements
8
+
9
+ - ref: Make org and project flags position independent (#1153) by @kamilogorek
10
+
11
+ ## 1.74.0
12
+
13
+ ### Various fixes & improvements
14
+
15
+ - ref: Dont run install script using node binary (#1151) by @kamilogorek
16
+ - feat: Add show-projects and show-commits flags to 'releases info' command (#1144) by @kamilogorek
17
+ - ref: Rework find_id function of difutil find (#1149) by @kamilogorek
18
+ - ref: Rework find_matching_rev tests to not use our real repo history (#1147) by @kamilogorek
19
+ - deps: Update git2 crate to 0.14.1 to support custom git extensions (#1140) by @kamilogorek
20
+ - ci: Change stale GitHub workflow to run once a day (#1141) by @kamilogorek
21
+
22
+ ## 1.73.2
23
+
24
+ ### Various fixes & improvements
25
+
26
+ - install: Rename SENTRY_NO_PROGRESS_BAR flag to SENTRYCLI_NO_PROGRESS_BAR (#1132) by @kamilogorek
27
+
5
28
  ## 1.73.1
6
29
 
7
30
  ### 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=864c4a8a0a9b67ee0d09e81ca1d4cb6e7673dd44514a321f79eba8e740b6e979
2
+ sentry-cli-Darwin-universal=2b9e05955732e7dd755434861b4db17e38b0364d29ce802106110d64fb53e9fa
3
+ sentry-cli-Darwin-x86_64=7d27322e423496a954b40e75f764073b17526c75e7941599d730e66622ae04da
4
+ sentry-cli-Linux-aarch64=b381a73c74e4c29929ba6d70957aff76a7b0429e58372855435eab7eea232413
5
+ sentry-cli-Linux-armv7=99b28af62b1122741df6bdca3121ba8db3dd9543d83db782ef671e832a7bc168
6
+ sentry-cli-Linux-i686=46ad4fe52141ee25f3954fb9abf4a4b9c03796f76b0b5f7cbbd973cb6bca78d2
7
+ sentry-cli-Linux-x86_64=a35150e09767005879f182ad85cf00424a7ac13e8b232bd5b23834a8f7e9d9f6
8
+ sentry-cli-Windows-i686.exe=d5ff74153bf336251f292248a855bd86d250fef5557ccb39ea9cdfa2e76d5791
9
+ sentry-cli-Windows-x86_64.exe=b71c969105ffe866b9a6ce7e9c063b5ccb1e2cbc2cf203c8c6ee768d7e219403
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "1.73.1",
3
+ "version": "1.74.1",
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",
@@ -24,7 +24,7 @@
24
24
  "sentry-cli": "bin/sentry-cli"
25
25
  },
26
26
  "scripts": {
27
- "install": "node scripts/install.js",
27
+ "install": "./scripts/install.js",
28
28
  "fix": "npm-run-all fix:eslint fix:prettier",
29
29
  "fix:eslint": "eslint --fix bin/* scripts/**/*.js js/**/*.js",
30
30
  "fix:prettier": "prettier --write bin/* scripts/**/*.js js/**/*.js",
@@ -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);