@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 +11 -0
- package/checksums.txt +9 -9
- package/package.json +2 -2
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=
|
|
2
|
-
sentry-cli-Darwin-universal=
|
|
3
|
-
sentry-cli-Darwin-x86_64=
|
|
4
|
-
sentry-cli-Linux-aarch64=
|
|
5
|
-
sentry-cli-Linux-armv7=
|
|
6
|
-
sentry-cli-Linux-i686=
|
|
7
|
-
sentry-cli-Linux-x86_64=
|
|
8
|
-
sentry-cli-Windows-i686.exe=
|
|
9
|
-
sentry-cli-Windows-x86_64.exe=
|
|
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.
|
|
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": "
|
|
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",
|