@sentry/cli 2.18.0 → 2.18.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
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=ea7d526282fabbaed267ac7504bfb227a67c372bc9c5ada9434489d659a09384
|
|
2
|
+
sentry-cli-Darwin-universal=1b9c0b9e1156ac134654838267d63fac03e190b6fbaed1bd93fa09e2467806c1
|
|
3
|
+
sentry-cli-Darwin-x86_64=b3007f699e5c75e4a03706914ebeae9506de0dcafa4b136eacde28b8906db317
|
|
4
|
+
sentry-cli-Linux-aarch64=1e85b33e06706274cba807627cf7d57960e13d90aa9a8a529c241665591f6a00
|
|
5
|
+
sentry-cli-Linux-armv7=bebcbd94e1f54bc8763c8ecc0d6826c3b8a4144a23bbc770ff6f780015ce869a
|
|
6
|
+
sentry-cli-Linux-i686=152547d8e93d1fd3c06f03d640e056261f908195014ccc9cb5592d3911342260
|
|
7
|
+
sentry-cli-Linux-x86_64=551d26ad4067b82e7a63139c4898f4d5294112746fcd7f0c7e61d08dff37ea33
|
|
8
|
+
sentry-cli-Windows-i686.exe=5083108cdfe437b5d33d7a07214c09b6bce2fc802c800e86519b711de22d6400
|
|
9
|
+
sentry-cli-Windows-x86_64.exe=ecac161350b928081ec748a831bd687a60d42fcbbed059a6c96927084504d225
|
package/js/index.d.ts
CHANGED
|
@@ -87,6 +87,11 @@ declare module '@sentry/cli' {
|
|
|
87
87
|
* This prevents the automatic detection of sourcemap references.
|
|
88
88
|
*/
|
|
89
89
|
sourceMapReference?: boolean;
|
|
90
|
+
/**
|
|
91
|
+
* Enable artifacts deduplication prior to uploading. This will skip uploading
|
|
92
|
+
* any artifacts that are already present on the server. Defaults to `true`.
|
|
93
|
+
*/
|
|
94
|
+
dedupe?: boolean;
|
|
90
95
|
/**
|
|
91
96
|
* When paired with the rewrite option this will remove a prefix from uploaded files.
|
|
92
97
|
* For instance you can use this to remove a path that is build machine specific.
|
package/js/releases/index.js
CHANGED
|
@@ -140,6 +140,7 @@ class Releases {
|
|
|
140
140
|
* ignoreFile: null, // path to a file with ignore rules
|
|
141
141
|
* rewrite: false, // preprocess sourcemaps before uploading
|
|
142
142
|
* sourceMapReference: true, // add a source map reference to source files
|
|
143
|
+
* dedupe: true, // deduplicate already uploaded files
|
|
143
144
|
* stripPrefix: [], // remove certain prefices from filenames
|
|
144
145
|
* stripCommonPrefix: false, // guess common prefices to remove from filenames
|
|
145
146
|
* validate: false, // validate source maps and cancel the upload on error
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/cli",
|
|
3
|
-
"version": "2.18.
|
|
3
|
+
"version": "2.18.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/",
|