@sentry/cli 2.32.2 → 2.33.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 +9 -9
- package/js/releases/index.js +4 -4
- package/package.json +8 -8
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=b84ef1ad86bf6cb17968c277f8ffa529428ce7012ee309469b029989e60f5d4d
|
|
2
|
+
sentry-cli-Darwin-universal=29de180bb210628110fa1048e46dd856a9a27bcc4c6e57873427538f5b624a75
|
|
3
|
+
sentry-cli-Darwin-x86_64=c5559c2abc93b29d8e3173960af3d27d071182efe2398124a8d3461c107619e9
|
|
4
|
+
sentry-cli-Linux-aarch64=93b3a39c0498410b873f6c2c6d6ee281703aa389afa149acffdb9a9e45167add
|
|
5
|
+
sentry-cli-Linux-armv7=3afa6e8b49b8826fea4fd137d3ac78879410629db6c09baf6caf22da4d1fd1da
|
|
6
|
+
sentry-cli-Linux-i686=7fa5b500256d9726f74882b7117fe19605831931a0c3e9df9b56e0146e98b9e6
|
|
7
|
+
sentry-cli-Linux-x86_64=f67c549d58467be3c2d387b42e52dc62502b14af0fee74c11c23e3fa75574d96
|
|
8
|
+
sentry-cli-Windows-i686.exe=afbb9e75b784203ef8b15bdadd217aff29551ad8120768b277a052cf50bebbab
|
|
9
|
+
sentry-cli-Windows-x86_64.exe=8076284bb41d2616641f9aea0c5fc13e1d5ff3b41990dc953b5b4298bf74108d
|
package/js/releases/index.js
CHANGED
|
@@ -141,8 +141,8 @@ class Releases {
|
|
|
141
141
|
* rewrite: false, // preprocess sourcemaps before uploading
|
|
142
142
|
* sourceMapReference: true, // add a source map reference to source files
|
|
143
143
|
* dedupe: true, // deduplicate already uploaded files
|
|
144
|
-
* stripPrefix: [], // remove certain
|
|
145
|
-
* stripCommonPrefix: false, // guess common
|
|
144
|
+
* stripPrefix: [], // remove certain prefixes from filenames
|
|
145
|
+
* stripCommonPrefix: false, // guess common prefixes to remove from filenames
|
|
146
146
|
* validate: false, // validate source maps and cancel the upload on error
|
|
147
147
|
* urlPrefix: '', // add a prefix source map urls after stripping them
|
|
148
148
|
* urlSuffix: '', // add a suffix source map urls after stripping them
|
|
@@ -159,7 +159,7 @@ class Releases {
|
|
|
159
159
|
async uploadSourceMaps(release, options) {
|
|
160
160
|
if (!options || !options.include || !Array.isArray(options.include)) {
|
|
161
161
|
throw new Error(
|
|
162
|
-
'`options.include` must be a
|
|
162
|
+
'`options.include` must be a valid array of paths and/or path descriptor objects.'
|
|
163
163
|
);
|
|
164
164
|
}
|
|
165
165
|
|
|
@@ -246,7 +246,7 @@ class Releases {
|
|
|
246
246
|
*/
|
|
247
247
|
async newDeploy(release, options) {
|
|
248
248
|
if (!options || !options.env) {
|
|
249
|
-
throw new Error('options.env must be a
|
|
249
|
+
throw new Error('options.env must be a valid name');
|
|
250
250
|
}
|
|
251
251
|
const args = ['releases', 'deploys', release, 'new'];
|
|
252
252
|
return this.execute(helper.prepareCommand(args, DEPLOYS_SCHEMA, options), null);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.33.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/",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"prettier": "2.8.8"
|
|
31
31
|
},
|
|
32
32
|
"optionalDependencies": {
|
|
33
|
-
"@sentry/cli-darwin": "2.
|
|
34
|
-
"@sentry/cli-linux-arm": "2.
|
|
35
|
-
"@sentry/cli-linux-arm64": "2.
|
|
36
|
-
"@sentry/cli-linux-i686": "2.
|
|
37
|
-
"@sentry/cli-linux-x64": "2.
|
|
38
|
-
"@sentry/cli-win32-i686": "2.
|
|
39
|
-
"@sentry/cli-win32-x64": "2.
|
|
33
|
+
"@sentry/cli-darwin": "2.33.1",
|
|
34
|
+
"@sentry/cli-linux-arm": "2.33.1",
|
|
35
|
+
"@sentry/cli-linux-arm64": "2.33.1",
|
|
36
|
+
"@sentry/cli-linux-i686": "2.33.1",
|
|
37
|
+
"@sentry/cli-linux-x64": "2.33.1",
|
|
38
|
+
"@sentry/cli-win32-i686": "2.33.1",
|
|
39
|
+
"@sentry/cli-win32-x64": "2.33.1"
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"postinstall": "node ./scripts/install.js",
|