@sentry/cli 2.32.1 → 2.33.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=33e4a9bffc18728cbdd9dca8063a316d56bbb9a9f8f2f286912545bece7e3c6b
2
- sentry-cli-Darwin-universal=46464fdb9bc433081b3341c1c3fdd3fc6b546ac30a79c4ba0646cfd61c30d8d2
3
- sentry-cli-Darwin-x86_64=20c1a93182d35803d56d26d541c5db0ff79bd387db457c3fa6cb80ef2b58398b
4
- sentry-cli-Linux-aarch64=4ac86ade7ff15391dfb7c2f3f24a2d05a2e43097f45f5c882043905aadd6060a
5
- sentry-cli-Linux-armv7=58f8a7511db438b24aeef4e7e019e3d5b17d27dc264e4a15403b0833b2b51a3d
6
- sentry-cli-Linux-i686=d8d9789468d9b36361b290a3ab2aee451a6020ca84bdd7f80f25336661d8ccf7
7
- sentry-cli-Linux-x86_64=59238a42faea26e01cea3f0c9482a3bb2d1e5f200e3f9929820a11ab0eac5253
8
- sentry-cli-Windows-i686.exe=007ad6f7da0e721ff7856ccbcb758ace112669c64077a465c8e4127f7930cd71
9
- sentry-cli-Windows-x86_64.exe=15366d0436e22da432481ad235a9194bf3d41ccaeb058627d3945681570d9353
1
+ sentry-cli-Darwin-arm64=21b417392b8ff8512bae4d863a46a379864e1ceff00bc873a7f8165b9dd4aefa
2
+ sentry-cli-Darwin-universal=3a8d31d4189c90054198b215d26f21d50f622f134036ff3f573b42e124669ec3
3
+ sentry-cli-Darwin-x86_64=6fcc60536ee8c6d8d3f4640f3c9441bd7837ae13460a6618b4bb2920af96b190
4
+ sentry-cli-Linux-aarch64=10b142d6aa67e0f678a15bee4e7b8699b0305f3c813f9cfbf67ec112b7a01a90
5
+ sentry-cli-Linux-armv7=3cdc85a113fe6805e468b6771c28682fd85e2670b6ab92da9b93174a9d7bc064
6
+ sentry-cli-Linux-i686=cae978b1345de79c9b04e316e2c3c5f305d76e12e8a206af7b4e120869233aba
7
+ sentry-cli-Linux-x86_64=652fe25aef94870b7a266a97e9c1cab3b6f09b1b9629e9729ffc18358c1fc0e7
8
+ sentry-cli-Windows-i686.exe=f6e355b556fda1e57879bce6b6b3e7053a70d9161cf147361ad480c3f07d3ad3
9
+ sentry-cli-Windows-x86_64.exe=a49885b721cf3d1333e2dd654f5a753a5a389a67caf1717971360d717f3d1f93
@@ -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 prefices from filenames
145
- * stripCommonPrefix: false, // guess common prefices to remove from filenames
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 vaild array of paths and/or path descriptor objects.'
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 vaild name');
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.32.1",
3
+ "version": "2.33.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/",
@@ -30,13 +30,13 @@
30
30
  "prettier": "2.8.8"
31
31
  },
32
32
  "optionalDependencies": {
33
- "@sentry/cli-darwin": "2.32.1",
34
- "@sentry/cli-linux-arm": "2.32.1",
35
- "@sentry/cli-linux-arm64": "2.32.1",
36
- "@sentry/cli-linux-i686": "2.32.1",
37
- "@sentry/cli-linux-x64": "2.32.1",
38
- "@sentry/cli-win32-i686": "2.32.1",
39
- "@sentry/cli-win32-x64": "2.32.1"
33
+ "@sentry/cli-darwin": "2.33.0",
34
+ "@sentry/cli-linux-arm": "2.33.0",
35
+ "@sentry/cli-linux-arm64": "2.33.0",
36
+ "@sentry/cli-linux-i686": "2.33.0",
37
+ "@sentry/cli-linux-x64": "2.33.0",
38
+ "@sentry/cli-win32-i686": "2.33.0",
39
+ "@sentry/cli-win32-x64": "2.33.0"
40
40
  },
41
41
  "scripts": {
42
42
  "postinstall": "node ./scripts/install.js",