@sentry/cli 2.56.1 → 2.57.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 +10 -10
- package/js/index.d.ts +4 -0
- package/package.json +9 -9
package/checksums.txt
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
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-aarch64.exe=
|
|
9
|
-
sentry-cli-Windows-i686.exe=
|
|
10
|
-
sentry-cli-Windows-x86_64.exe=
|
|
1
|
+
sentry-cli-Darwin-arm64=7a3da0a6f4fd3805286880160e697240ef84b26794a3f13ab8b5a3a9d81308fe
|
|
2
|
+
sentry-cli-Darwin-universal=e5d890e92b5cef66b93898d2d81aad89ed9ec9a962364fd164eff0cef77ef99f
|
|
3
|
+
sentry-cli-Darwin-x86_64=d4fad9ceb5b682a6140c185845bce057122e30d251d38162d3684b9c96b63901
|
|
4
|
+
sentry-cli-Linux-aarch64=cb3ce12b59dd6cb5d516a3d3ac07b79d99544856f49ebd88b022851cbba71c2d
|
|
5
|
+
sentry-cli-Linux-armv7=7d3acba06f184069418a4fa9d24145d12669786115e51ce66b179943c0e7e6ae
|
|
6
|
+
sentry-cli-Linux-i686=76199ca9c0db562c741b5d6a63d402de1678cbf107e94d181d14e2248600d932
|
|
7
|
+
sentry-cli-Linux-x86_64=c214ddd4b3e1143018c23c040ae347ecba0ed9a0ff4826679bc21d9796e9a96a
|
|
8
|
+
sentry-cli-Windows-aarch64.exe=62e2f879c593fa8846c0a81548317ebeff877fee1fed7bd5720606693462464b
|
|
9
|
+
sentry-cli-Windows-i686.exe=1ea475d2014f4dfb658cd2b5a3bbdfa9b3d2eebba81ec784ccb80a386cf10145
|
|
10
|
+
sentry-cli-Windows-x86_64.exe=cfb6881493e41272ce2fa77fa77bbbb0b3f5360bdca684c11f393d9af00d0954
|
package/js/index.d.ts
CHANGED
|
@@ -105,6 +105,10 @@ declare module '@sentry/cli' {
|
|
|
105
105
|
* When paired with the rewrite option this will add ~ to the stripPrefix array.
|
|
106
106
|
*/
|
|
107
107
|
stripCommonPrefix?: boolean;
|
|
108
|
+
/**
|
|
109
|
+
* The projects to upload the sourcemaps to. If not provided, the sourcemaps will be uploaded to the default project.
|
|
110
|
+
*/
|
|
111
|
+
projects?: string[];
|
|
108
112
|
/**
|
|
109
113
|
* This attempts sourcemap validation before upload when rewriting is not enabled.
|
|
110
114
|
* It will spot a variety of issues with source maps and cancel the upload if any are found.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.57.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/",
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
"typescript": "~5.8.3"
|
|
33
33
|
},
|
|
34
34
|
"optionalDependencies": {
|
|
35
|
-
"@sentry/cli-darwin": "2.
|
|
36
|
-
"@sentry/cli-linux-arm": "2.
|
|
37
|
-
"@sentry/cli-linux-arm64": "2.
|
|
38
|
-
"@sentry/cli-linux-i686": "2.
|
|
39
|
-
"@sentry/cli-linux-x64": "2.
|
|
40
|
-
"@sentry/cli-win32-i686": "2.
|
|
41
|
-
"@sentry/cli-win32-x64": "2.
|
|
42
|
-
"@sentry/cli-win32-arm64": "2.
|
|
35
|
+
"@sentry/cli-darwin": "2.57.0",
|
|
36
|
+
"@sentry/cli-linux-arm": "2.57.0",
|
|
37
|
+
"@sentry/cli-linux-arm64": "2.57.0",
|
|
38
|
+
"@sentry/cli-linux-i686": "2.57.0",
|
|
39
|
+
"@sentry/cli-linux-x64": "2.57.0",
|
|
40
|
+
"@sentry/cli-win32-i686": "2.57.0",
|
|
41
|
+
"@sentry/cli-win32-x64": "2.57.0",
|
|
42
|
+
"@sentry/cli-win32-arm64": "2.57.0"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"postinstall": "node ./scripts/install.js",
|