@sentry/cli 2.18.0 → 2.19.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/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=8dabeae65f888a1c862162d9e5b572853105294e39452ed93e095b9a0cd60b96
2
+ sentry-cli-Darwin-universal=73f0d9f8cdf068f7202d74b3852a618901bad83c47d25e3ff00e293477b62963
3
+ sentry-cli-Darwin-x86_64=fb07594121dbe019e670838b4b8a937d32c0320631ffa5a6eb1a063ee10b9c97
4
+ sentry-cli-Linux-aarch64=b958399bafe6e5f74a4064a1d11d9225bfcc228643422fb5a2e1183bf36baeb7
5
+ sentry-cli-Linux-armv7=05e763cb730ac1fd0b794cd1daefbaa409446d2f2b74a52cbe363b881fb18459
6
+ sentry-cli-Linux-i686=67eb8b2cbef84cc307371eaeb95e144f6ea106eda3e1e9016092b873935d8932
7
+ sentry-cli-Linux-x86_64=83a9e51d8c164edc1e1180a5c7c10a3d653e02beb2db417927be73b4e43afa56
8
+ sentry-cli-Windows-i686.exe=958923439229452a96bfaa7248e4f7bf1f53ac7fa9325796ee846aab04936217
9
+ sentry-cli-Windows-x86_64.exe=d21af130ced7f1fd135c22eb5b92d4e9f74d0a52fac984019d042fd625d7c103
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.19.0",
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/",