@datadog/datadog-ci 4.1.2 → 4.2.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/README.md +7 -0
- package/dist/commands/cli.d.ts +1 -1
- package/dist/commands/dsyms/upload.d.ts +1 -1
- package/dist/commands/elf-symbols/upload.d.ts +1 -1
- package/dist/commands/flutter-symbols/upload.d.ts +1 -1
- package/dist/commands/pe-symbols/upload.d.ts +1 -1
- package/dist/commands/react-native/cli.d.ts +1 -1
- package/dist/commands/react-native/upload.d.ts +1 -1
- package/dist/commands/sourcemaps/upload.d.ts +1 -1
- package/dist/commands/unity-symbols/upload.d.ts +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -74,6 +74,13 @@ The following `<scope>` and `<command>` values are available.
|
|
|
74
74
|
- `instrument`: Apply Datadog instrumentation to the given Cloud Run Services.
|
|
75
75
|
- `uninstrument`: Revert Datadog instrumentation from the given Cloud Run Services.
|
|
76
76
|
|
|
77
|
+
#### `container-app`
|
|
78
|
+
|
|
79
|
+
<sub>**README:** [📚](/packages/plugin-container-app) | **Documentation:** [🔗](https://docs.datadoghq.com/serverless/azure_container_apps/sidecar/) | **Plugin:** `@datadog/datadog-ci-plugin-container-app`</sub>
|
|
80
|
+
|
|
81
|
+
- `instrument`: Apply Datadog instrumentation to Azure Container Apps.
|
|
82
|
+
- `uninstrument`: Revert Datadog instrumentation from Azure Container Apps.
|
|
83
|
+
|
|
77
84
|
#### `coverage`
|
|
78
85
|
|
|
79
86
|
<sub>**README:** [📚](/packages/plugin-coverage) | **Documentation:** [🔗](https://docs.datadoghq.com/code_coverage/)</sub>
|
package/dist/commands/cli.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export declare const commands: {
|
|
|
6
6
|
junit: typeof import("./junit/upload").JunitUploadCommand[];
|
|
7
7
|
measure: typeof import("./measure/measure").MeasureCommand[];
|
|
8
8
|
'pe-symbols': typeof import("./pe-symbols/upload").PeSymbolsUploadCommand[];
|
|
9
|
-
'react-native': (typeof import("./react-native/
|
|
9
|
+
'react-native': (typeof import("./react-native/codepush").ReactNativeCodepushCommand | typeof import("./react-native/upload").ReactNativeUploadCommand | typeof import("./react-native/xcode").ReactNativeXcodeCommand | typeof import("./react-native/injectDebugId").ReactNativeInjectDebugIdCommand)[];
|
|
10
10
|
sourcemaps: typeof import("./sourcemaps/upload").SourcemapsUploadCommand[];
|
|
11
11
|
span: typeof import("./span/span").SpanCommand[];
|
|
12
12
|
trace: typeof import("./trace/trace").TraceCommand[];
|
|
@@ -11,7 +11,7 @@ export declare class DsymsUploadCommand extends BaseCommand {
|
|
|
11
11
|
private fipsIgnoreError;
|
|
12
12
|
private fipsConfig;
|
|
13
13
|
private config;
|
|
14
|
-
execute(): Promise<
|
|
14
|
+
execute(): Promise<0 | 1>;
|
|
15
15
|
private loadConfig;
|
|
16
16
|
private createServices;
|
|
17
17
|
private processAndUploadDsyms;
|
|
@@ -16,7 +16,7 @@ export declare class ElfSymbolsUploadCommand extends BaseCommand {
|
|
|
16
16
|
private fips;
|
|
17
17
|
private fipsIgnoreError;
|
|
18
18
|
private fipsConfig;
|
|
19
|
-
execute(): Promise<
|
|
19
|
+
execute(): Promise<0 | 1>;
|
|
20
20
|
private getApiKeyValidator;
|
|
21
21
|
private getGitDataPayload;
|
|
22
22
|
private getGitMetadata;
|
|
@@ -25,7 +25,7 @@ export declare class FlutterSymbolsUploadCommand extends BaseCommand {
|
|
|
25
25
|
private fips;
|
|
26
26
|
private fipsIgnoreError;
|
|
27
27
|
private fipsConfig;
|
|
28
|
-
execute(): Promise<
|
|
28
|
+
execute(): Promise<0 | 1>;
|
|
29
29
|
private getAndroidMetadata;
|
|
30
30
|
private getApiKeyValidator;
|
|
31
31
|
private getFlutterMetadata;
|
|
@@ -15,7 +15,7 @@ export declare class PeSymbolsUploadCommand extends BaseCommand {
|
|
|
15
15
|
private fips;
|
|
16
16
|
private fipsIgnoreError;
|
|
17
17
|
private fipsConfig;
|
|
18
|
-
execute(): Promise<
|
|
18
|
+
execute(): Promise<0 | 1>;
|
|
19
19
|
private getApiKeyValidator;
|
|
20
20
|
private getGitDataPayload;
|
|
21
21
|
private getGitMetadata;
|
|
@@ -2,4 +2,4 @@ import { ReactNativeCodepushCommand } from './codepush';
|
|
|
2
2
|
import { ReactNativeInjectDebugIdCommand } from './injectDebugId';
|
|
3
3
|
import { ReactNativeUploadCommand } from './upload';
|
|
4
4
|
import { ReactNativeXcodeCommand } from './xcode';
|
|
5
|
-
export declare const commands: (typeof
|
|
5
|
+
export declare const commands: (typeof ReactNativeCodepushCommand | typeof ReactNativeUploadCommand | typeof ReactNativeXcodeCommand | typeof ReactNativeInjectDebugIdCommand)[];
|
|
@@ -20,7 +20,7 @@ export declare class ReactNativeUploadCommand extends BaseCommand {
|
|
|
20
20
|
private fips;
|
|
21
21
|
private fipsIgnoreError;
|
|
22
22
|
private fipsConfig;
|
|
23
|
-
execute(): Promise<
|
|
23
|
+
execute(): Promise<0 | 1>;
|
|
24
24
|
private addRepositoryDataToPayloads;
|
|
25
25
|
private getMatchingRNSourcemapFiles;
|
|
26
26
|
private getPayloadsToUpload;
|
|
@@ -16,7 +16,7 @@ export declare class SourcemapsUploadCommand extends BaseCommand {
|
|
|
16
16
|
private fips;
|
|
17
17
|
private fipsIgnoreError;
|
|
18
18
|
private config;
|
|
19
|
-
execute(): Promise<
|
|
19
|
+
execute(): Promise<0 | 1>;
|
|
20
20
|
private addRepositoryDataToPayloads;
|
|
21
21
|
private getMatchingSourcemapFiles;
|
|
22
22
|
private getMinifiedURLAndRelativePath;
|
|
@@ -18,7 +18,7 @@ export declare class UnitySymbolsUploadCommand extends BaseCommand {
|
|
|
18
18
|
private fips;
|
|
19
19
|
private fipsIgnoreError;
|
|
20
20
|
private fipsConfig;
|
|
21
|
-
execute(): Promise<
|
|
21
|
+
execute(): Promise<0 | 1>;
|
|
22
22
|
private getApiKeyValidator;
|
|
23
23
|
private getGitDataPayload;
|
|
24
24
|
private getGitMetadata;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datadog/datadog-ci",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Use Datadog from your CI.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -40,13 +40,13 @@
|
|
|
40
40
|
"prepack": "yarn package:clean-dist"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@datadog/datadog-ci-base": "4.
|
|
44
|
-
"@datadog/datadog-ci-plugin-deployment": "4.
|
|
45
|
-
"@datadog/datadog-ci-plugin-dora": "4.
|
|
46
|
-
"@datadog/datadog-ci-plugin-gate": "4.
|
|
47
|
-
"@datadog/datadog-ci-plugin-sarif": "4.
|
|
48
|
-
"@datadog/datadog-ci-plugin-sbom": "4.
|
|
49
|
-
"@datadog/datadog-ci-plugin-synthetics": "4.
|
|
43
|
+
"@datadog/datadog-ci-base": "4.2.0",
|
|
44
|
+
"@datadog/datadog-ci-plugin-deployment": "4.2.0",
|
|
45
|
+
"@datadog/datadog-ci-plugin-dora": "4.2.0",
|
|
46
|
+
"@datadog/datadog-ci-plugin-gate": "4.2.0",
|
|
47
|
+
"@datadog/datadog-ci-plugin-sarif": "4.2.0",
|
|
48
|
+
"@datadog/datadog-ci-plugin-sbom": "4.2.0",
|
|
49
|
+
"@datadog/datadog-ci-plugin-synthetics": "4.2.0",
|
|
50
50
|
"axios": "^1.12.1",
|
|
51
51
|
"chalk": "3.0.0",
|
|
52
52
|
"clipanion": "^3.2.1",
|