@sentry/cli 2.58.0 → 2.58.2

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,10 +1,10 @@
1
- sentry-cli-Darwin-arm64=acbbb58f078a465e9016639c0ac25dce4b2443ebe9b9f1c027938557eba6bb5e
2
- sentry-cli-Darwin-universal=b23b628f2d000898cbc8b323339218134e0856b0dfa2491c0328c09a27b02e69
3
- sentry-cli-Darwin-x86_64=a105b14eae786d1db9ef7e716f92d83e97f54849a4cc18a7864f5eb45143e3c8
4
- sentry-cli-Linux-aarch64=4ee4e5341ae3366a5e629ab7bebe3465f1443e7acc5daa6e808ce2ded0a412ba
5
- sentry-cli-Linux-armv7=be88fa9943072618f1c3ca785f447a2c1c6dbd800897ad64405bf91bd1af254c
6
- sentry-cli-Linux-i686=cee64604f94c401d3e215dfcb3f5c6292a6ff3df90c3c98d155cbb1da7ed0bc1
7
- sentry-cli-Linux-x86_64=735b266c50b44735167292fef65c5889737f3a4d9f8150937e6d454217ca741d
8
- sentry-cli-Windows-aarch64.exe=08413d9fc93e63a94e5af9a6c8884a56c67ddc2b01b4c5169f8d682f6203c2c4
9
- sentry-cli-Windows-i686.exe=90c431804200c4bb600dd94667c0bd33bd33e486185cce3d168d65f74c2e2f02
10
- sentry-cli-Windows-x86_64.exe=3f7e7d8ab53052fb6d41f3428df405b5cc521474d26d4bfd3fb6b05cd2e708c9
1
+ sentry-cli-Darwin-arm64=f84d5716d74ea4b1355c64ef6cb6a14f2097ab2541c9747b7aee4bad39a647e4
2
+ sentry-cli-Darwin-universal=5c893f7bc57dbcb87ec941c08420ef07cf485e931238c83cc8fbbe2ba69fec9f
3
+ sentry-cli-Darwin-x86_64=e95fa80e6f06797c56eb4f18f65f82a4c859599c572d940e7a156885cbd8dd21
4
+ sentry-cli-Linux-aarch64=3853e2071623941d96c7b69a99929f1d3222a4b696f4b74c875be340aa75926a
5
+ sentry-cli-Linux-armv7=31fab9396e879ae49cd27aca025caa453ffbd965c2d018bd873f09d8d71a06d9
6
+ sentry-cli-Linux-i686=a995decaad61160bfac84634b280f005003931726e14fd964f8c3cf6ce00aa20
7
+ sentry-cli-Linux-x86_64=61b1c19345694ce31ac663e9875194d45f4f317f2b9134269605f810132df88b
8
+ sentry-cli-Windows-aarch64.exe=a4a4dff5e176392510674b1afd73324bedf0ea66bdd8234654389429cda9b576
9
+ sentry-cli-Windows-i686.exe=29290444fd2b796fe14c5d058eafe883293257f9f650fe20080bd37214b2ffe5
10
+ sentry-cli-Windows-x86_64.exe=e89a23566d5e17a5fb2fe40e182e6e0a6cf07134330c7588d5b6025071bcae3f
package/js/index.d.ts CHANGED
@@ -9,13 +9,15 @@ declare module '@sentry/cli' {
9
9
  */
10
10
  url?: string;
11
11
  /**
12
- * Authentication token for API, interchangeable with `apiKey`.
12
+ * Authentication token for HTTP requests to Sentry.
13
13
  * This value will update `SENTRY_AUTH_TOKEN` env variable.
14
14
  */
15
15
  authToken?: string;
16
16
  /**
17
- * Authentication token for API, interchangeable with `authToken`.
17
+ * API key to authenticate any HTTP requests to Sentry (legacy authentication method).
18
18
  * This value will update `SENTRY_API_KEY` env variable.
19
+ * @deprecated Use auth-token-based authentication via `authToken` instead.
20
+ * This option is scheduled for removal in the next major release.
19
21
  */
20
22
  apiKey?: string;
21
23
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "2.58.0",
3
+ "version": "2.58.2",
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/",
@@ -32,14 +32,14 @@
32
32
  "typescript": "~5.8.3"
33
33
  },
34
34
  "optionalDependencies": {
35
- "@sentry/cli-darwin": "2.58.0",
36
- "@sentry/cli-linux-arm": "2.58.0",
37
- "@sentry/cli-linux-arm64": "2.58.0",
38
- "@sentry/cli-linux-i686": "2.58.0",
39
- "@sentry/cli-linux-x64": "2.58.0",
40
- "@sentry/cli-win32-i686": "2.58.0",
41
- "@sentry/cli-win32-x64": "2.58.0",
42
- "@sentry/cli-win32-arm64": "2.58.0"
35
+ "@sentry/cli-darwin": "2.58.2",
36
+ "@sentry/cli-linux-arm": "2.58.2",
37
+ "@sentry/cli-linux-arm64": "2.58.2",
38
+ "@sentry/cli-linux-i686": "2.58.2",
39
+ "@sentry/cli-linux-x64": "2.58.2",
40
+ "@sentry/cli-win32-i686": "2.58.2",
41
+ "@sentry/cli-win32-x64": "2.58.2",
42
+ "@sentry/cli-win32-arm64": "2.58.2"
43
43
  },
44
44
  "scripts": {
45
45
  "postinstall": "node ./scripts/install.js",