@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=0f7160dbc04911944608f6337ac9ca75b9844280aea34e5cf5f2da5adf76bfd9
2
- sentry-cli-Darwin-universal=55f4aafa697598816d8dfd8c0ded12393dd6db39f43d830d0c3b7a81b39edad8
3
- sentry-cli-Darwin-x86_64=0aba34546a9d38ccd6598a7da83fcbfdaba3a1ed4457de7ee7e3506bb3799227
4
- sentry-cli-Linux-aarch64=c13c8ce3c407401dfd29f17b9770d67ced70415b027a9325ed25685fc0c7ef6f
5
- sentry-cli-Linux-armv7=51e03c5b4d0e8ab8c12a5b15ca09b4db87f5ba6943baca4e2ae4cce2837e57bd
6
- sentry-cli-Linux-i686=68f7b1972300b4b9652745765163caa3a86609c4f2686ce8d85fa27becc63407
7
- sentry-cli-Linux-x86_64=3eafddcc1affcc97afb210b30c60bb85eda3a67eb658e1ee6fa9230aa717e244
8
- sentry-cli-Windows-i686.exe=1043dcc85a1fe35c857776cf27cd9a7b4ec68b03e160e262d18471dbb11b20b7
9
- sentry-cli-Windows-x86_64.exe=23ebc233a2e085249b0bfeff2b11617e6212d81525363978fbfa5679687881a2
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.
@@ -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
@@ -24,6 +24,10 @@ module.exports = {
24
24
  invertedParam: '--no-sourcemap-reference',
25
25
  type: 'boolean',
26
26
  },
27
+ dedupe: {
28
+ invertedParam: '--no-dedupe',
29
+ type: 'boolean',
30
+ },
27
31
  stripPrefix: {
28
32
  param: '--strip-prefix',
29
33
  type: 'array',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "2.18.0",
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/",