@sentry/cli 1.73.2 → 1.74.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,17 @@
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.0
6
+
7
+ ### Various fixes & improvements
8
+
9
+ - ref: Dont run install script using node binary (#1151) by @kamilogorek
10
+ - feat: Add show-projects and show-commits flags to 'releases info' command (#1144) by @kamilogorek
11
+ - ref: Rework find_id function of difutil find (#1149) by @kamilogorek
12
+ - ref: Rework find_matching_rev tests to not use our real repo history (#1147) by @kamilogorek
13
+ - deps: Update git2 crate to 0.14.1 to support custom git extensions (#1140) by @kamilogorek
14
+ - ci: Change stale GitHub workflow to run once a day (#1141) by @kamilogorek
15
+
5
16
  ## 1.73.2
6
17
 
7
18
  ### 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=ad610f37ffa4dbf239706f4c1af451d64884e7e2422a22a4708bb4564348a951
2
+ sentry-cli-Darwin-universal=9a619d98b507533db2fff46e788e789f706f489db4572445cbb1949b7bccd2d9
3
+ sentry-cli-Darwin-x86_64=5665034483b4104177e60ff4317b87bf04ba51fab9959d66c557cda4541776eb
4
+ sentry-cli-Linux-aarch64=83f2ba621569ded12289e6d140a125ac01eaf9bf087b8f8b425082298246f46d
5
+ sentry-cli-Linux-armv7=71c182d7762e98a74e5a2c5b80341d4cee2a03fddc0d238f29f3f0bcf05658b1
6
+ sentry-cli-Linux-i686=58944522ec6fa51c471643048cbf03be77e3c815291dd8ed4025aff5aa1be19a
7
+ sentry-cli-Linux-x86_64=33df0510ed10a2a79ee0aa6ae8edd344a7848cb98ddf5015a784bd93199a88fc
8
+ sentry-cli-Windows-i686.exe=bb683bb7a6f1f834cbd22aa6a2c8a5ae1432a769c8691bfbb9a9b0a652ead1a5
9
+ sentry-cli-Windows-x86_64.exe=c37d877584a5ebca2f91436910b081cdede1573c0de39d4541a4555aa9485dfc
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "1.73.2",
3
+ "version": "1.74.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",
@@ -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",