@sentry/cli 2.16.1 → 2.17.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 +9 -9
- package/js/index.d.ts +18 -24
- package/js/releases/options/uploadSourcemaps.js +4 -0
- package/package.json +1 -1
- package/scripts/wheels +1 -1
package/checksums.txt
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
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-i686.exe=
|
|
9
|
-
sentry-cli-Windows-x86_64.exe=
|
|
1
|
+
sentry-cli-Darwin-arm64=a9a190cea6e1d0aee6295cdae4626ffd299534ef4974e3fca6b72dbc04ea450a
|
|
2
|
+
sentry-cli-Darwin-universal=ac25c90ba04411bf8d75035a4de4195a2a5ef9ea6d1067128fc76c1dcd2d973c
|
|
3
|
+
sentry-cli-Darwin-x86_64=f94fc13fa653a4a80ae9c1d3695967a53a745c4d6867fb73437c06454621ecc3
|
|
4
|
+
sentry-cli-Linux-aarch64=484f0c59c85663c49a0b190fc4dd439ee8b0fc5a9a353e0681ace392d6875744
|
|
5
|
+
sentry-cli-Linux-armv7=8894b48934ded383376701a0daa0ac04037846203373f6ec50ff191468add6b4
|
|
6
|
+
sentry-cli-Linux-i686=e0064c765f446a8f17c49c93ba8615a70ddb3fa077633a3c1b29c42286697065
|
|
7
|
+
sentry-cli-Linux-x86_64=7f6a7f1abbd3f3012ec24373b323ec8e9c400057a45edddc47941be8bc5729ac
|
|
8
|
+
sentry-cli-Windows-i686.exe=2bb148267b1f42604f9226d9b2958fe32a2665e22809cbe745f2194a1269ccea
|
|
9
|
+
sentry-cli-Windows-x86_64.exe=8aa178120470f85a8ab5f39edfa0c23292dfaec62e770425100669c62de40072
|
package/js/index.d.ts
CHANGED
|
@@ -59,7 +59,9 @@ declare module '@sentry/cli' {
|
|
|
59
59
|
* case `paths` takes the place of `include` in the options so as to make it
|
|
60
60
|
* clear that this is not recursive.
|
|
61
61
|
*/
|
|
62
|
-
export type SourceMapsPathDescriptor = Omit<SentryCliUploadSourceMapsOptions, 'include'> & {
|
|
62
|
+
export type SourceMapsPathDescriptor = Omit<SentryCliUploadSourceMapsOptions, 'include'> & {
|
|
63
|
+
paths: string[];
|
|
64
|
+
};
|
|
63
65
|
|
|
64
66
|
export interface SentryCliUploadSourceMapsOptions {
|
|
65
67
|
/**
|
|
@@ -121,6 +123,10 @@ declare module '@sentry/cli' {
|
|
|
121
123
|
* Usually your build number.
|
|
122
124
|
*/
|
|
123
125
|
dist?: string;
|
|
126
|
+
/**
|
|
127
|
+
* Use new Artifact Bundles upload, that enables use of Debug ID for Source Maps discovery.
|
|
128
|
+
*/
|
|
129
|
+
useArtifactBundle?: boolean;
|
|
124
130
|
}
|
|
125
131
|
|
|
126
132
|
export interface SentryCliNewDeployOptions {
|
|
@@ -181,31 +187,19 @@ declare module '@sentry/cli' {
|
|
|
181
187
|
}
|
|
182
188
|
|
|
183
189
|
export interface SentryCliReleases {
|
|
184
|
-
['new'](
|
|
185
|
-
release: string,
|
|
186
|
-
options?: { projects: string[] } | string[]
|
|
187
|
-
): Promise<string>;
|
|
190
|
+
['new'](release: string, options?: { projects: string[] } | string[]): Promise<string>;
|
|
188
191
|
|
|
189
|
-
setCommits(
|
|
190
|
-
release: string,
|
|
191
|
-
options: SentryCliCommitsOptions
|
|
192
|
-
): Promise<string>;
|
|
192
|
+
setCommits(release: string, options: SentryCliCommitsOptions): Promise<string>;
|
|
193
193
|
|
|
194
|
-
finalize(release: string): Promise<string
|
|
194
|
+
finalize(release: string): Promise<string>;
|
|
195
195
|
|
|
196
|
-
proposeVersion(): Promise<string
|
|
196
|
+
proposeVersion(): Promise<string>;
|
|
197
197
|
|
|
198
|
-
uploadSourceMaps(
|
|
199
|
-
release: string,
|
|
200
|
-
options: SentryCliUploadSourceMapsOptions
|
|
201
|
-
): Promise<string>
|
|
198
|
+
uploadSourceMaps(release: string, options: SentryCliUploadSourceMapsOptions): Promise<string>;
|
|
202
199
|
|
|
203
200
|
listDeploys(release: string): Promise<string>;
|
|
204
201
|
|
|
205
|
-
newDeploy(
|
|
206
|
-
release: string,
|
|
207
|
-
options: SentryCliNewDeployOptions
|
|
208
|
-
): Promise<string>
|
|
202
|
+
newDeploy(release: string, options: SentryCliNewDeployOptions): Promise<string>;
|
|
209
203
|
|
|
210
204
|
execute(args: string[], live: boolean): Promise<string>;
|
|
211
205
|
}
|
|
@@ -219,14 +213,14 @@ declare module '@sentry/cli' {
|
|
|
219
213
|
* This value will update `SENTRY_PROPERTIES` env variable.
|
|
220
214
|
* @param options {@link SentryCliOptions}
|
|
221
215
|
*/
|
|
222
|
-
constructor(configFile?: string | null, options?: SentryCliOptions)
|
|
216
|
+
constructor(configFile?: string | null, options?: SentryCliOptions);
|
|
223
217
|
|
|
224
218
|
public configFile?: string;
|
|
225
219
|
public options?: SentryCliOptions;
|
|
226
|
-
public releases: SentryCliReleases
|
|
220
|
+
public releases: SentryCliReleases;
|
|
227
221
|
|
|
228
|
-
public static getVersion(): string
|
|
229
|
-
public static getPath(): string
|
|
230
|
-
public execute(args: string[], live: boolean): Promise<string
|
|
222
|
+
public static getVersion(): string;
|
|
223
|
+
public static getPath(): string;
|
|
224
|
+
public execute(args: string[], live: boolean): Promise<string>;
|
|
231
225
|
}
|
|
232
226
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.17.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/",
|
package/scripts/wheels
CHANGED
|
@@ -66,7 +66,7 @@ def main() -> int:
|
|
|
66
66
|
|
|
67
67
|
expected = {wheel.src for wheel in WHEELS}
|
|
68
68
|
received = set(os.listdir(args.binaries))
|
|
69
|
-
if expected
|
|
69
|
+
if expected < received:
|
|
70
70
|
raise SystemExit(
|
|
71
71
|
f'Unexpected binaries:\n\n'
|
|
72
72
|
f'- extra: {", ".join(sorted(received - expected))}\n'
|