@sentry/cli 1.73.2 → 1.74.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,24 @@
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.2
6
+
7
+ ### Various fixes & improvements
8
+
9
+ - revert: ref: Dont run install script using node binary #1151 (#1155) by @kamilogorek
10
+ - ref: Make org and project flags position independent (#1153) by @kamilogorek
11
+
12
+ ## 1.74.0
13
+
14
+ ### Various fixes & improvements
15
+
16
+ - ref: Dont run install script using node binary (#1151) by @kamilogorek
17
+ - feat: Add show-projects and show-commits flags to 'releases info' command (#1144) by @kamilogorek
18
+ - ref: Rework find_id function of difutil find (#1149) by @kamilogorek
19
+ - ref: Rework find_matching_rev tests to not use our real repo history (#1147) by @kamilogorek
20
+ - deps: Update git2 crate to 0.14.1 to support custom git extensions (#1140) by @kamilogorek
21
+ - ci: Change stale GitHub workflow to run once a day (#1141) by @kamilogorek
22
+
5
23
  ## 1.73.2
6
24
 
7
25
  ### Various fixes & improvements
package/checksums.txt CHANGED
@@ -1,9 +1,9 @@
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
1
+ sentry-cli-Darwin-arm64=dd8341ed84333803e8e2bcc8fd9e7f2fa33a1eed63a784dfd68625ba553220a0
2
+ sentry-cli-Darwin-universal=a4023a9ff8c79d73d81ff577299a5fb406676612bbdd95d02ffd76dd69966124
3
+ sentry-cli-Darwin-x86_64=aab1203dba78738a7461b8329cf347417830754ae010218399a710d3e5d9424b
4
+ sentry-cli-Linux-aarch64=f383d1b8197ebb8a129f3b2c80614d319cafd215d452c90868f6d71aa66f8a1c
5
+ sentry-cli-Linux-armv7=ffea267165b98d0b43a1ccd4609e1f63d8d426c7c98b80f651dd822b0c1e2b94
6
+ sentry-cli-Linux-i686=fa4cb3f36dd66d9def597dbb593c20f08a72c576a42d3e7c5ea72f9aa535b56a
7
+ sentry-cli-Linux-x86_64=a136c3b48ee967852dabe909283a1e7f0640a0c332ae4f30c231d05ba82662dc
8
+ sentry-cli-Windows-i686.exe=7c5c82a96727b9a9247562a2c34d7595ae0f8aa6db74e821f30d40c7fb772f11
9
+ sentry-cli-Windows-x86_64.exe=54a02d175302e6d170e51afc5d096090df9d76e5bd11e71be3913fa04e596a45
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "1.73.2",
3
+ "version": "1.74.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",
@@ -24,7 +24,7 @@
24
24
  "sentry-cli": "bin/sentry-cli"
25
25
  },
26
26
  "scripts": {
27
- "install": "node scripts/install.js",
27
+ "install": "node ./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",