@datadog/datadog-ci 3.22.1 → 4.0.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 +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/package.json +7 -12
package/README.md
CHANGED
|
@@ -300,7 +300,7 @@ docker build --tag datadog-ci .
|
|
|
300
300
|
Optionally, you can use the `VERSION` build argument to build an image for a specific version:
|
|
301
301
|
|
|
302
302
|
```sh
|
|
303
|
-
docker build --build-arg "VERSION=v3.9.0" --
|
|
303
|
+
docker build --build-arg "VERSION=v3.9.0" --tag datadog-ci .
|
|
304
304
|
```
|
|
305
305
|
|
|
306
306
|
## Migration guide
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
export * as gitMetadata from '@datadog/datadog-ci-base/commands/git-metadata';
|
|
2
|
-
export * as synthetics from '@datadog/datadog-ci-plugin-synthetics';
|
|
3
2
|
export * as utils from '@datadog/datadog-ci-base/helpers/utils';
|
|
4
3
|
export { cliVersion as version } from '@datadog/datadog-ci-base/version';
|
package/dist/index.js
CHANGED
|
@@ -23,9 +23,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.version = exports.utils = exports.
|
|
26
|
+
exports.version = exports.utils = exports.gitMetadata = void 0;
|
|
27
27
|
exports.gitMetadata = __importStar(require("@datadog/datadog-ci-base/commands/git-metadata"));
|
|
28
|
-
exports.synthetics = __importStar(require("@datadog/datadog-ci-plugin-synthetics"));
|
|
29
28
|
exports.utils = __importStar(require("@datadog/datadog-ci-base/helpers/utils"));
|
|
30
29
|
var version_1 = require("@datadog/datadog-ci-base/version");
|
|
31
30
|
Object.defineProperty(exports, "version", { enumerable: true, get: function () { return version_1.cliVersion; } });
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,8FAA6E;AAC7E,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,8FAA6E;AAC7E,gFAA+D;AAC/D,4DAAsE;AAA9D,kGAAA,UAAU,OAAW"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datadog/datadog-ci",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Use Datadog from your CI.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -40,17 +40,12 @@
|
|
|
40
40
|
"prepack": "yarn package:clean-dist"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@datadog/datadog-ci-base": "
|
|
44
|
-
"@datadog/datadog-ci-plugin-
|
|
45
|
-
"@datadog/datadog-ci-plugin-
|
|
46
|
-
"@datadog/datadog-ci-plugin-
|
|
47
|
-
"@datadog/datadog-ci-plugin-
|
|
48
|
-
"@datadog/datadog-ci-plugin-
|
|
49
|
-
"@datadog/datadog-ci-plugin-lambda": "3.22.1",
|
|
50
|
-
"@datadog/datadog-ci-plugin-sarif": "3.22.1",
|
|
51
|
-
"@datadog/datadog-ci-plugin-sbom": "3.22.1",
|
|
52
|
-
"@datadog/datadog-ci-plugin-stepfunctions": "3.22.1",
|
|
53
|
-
"@datadog/datadog-ci-plugin-synthetics": "3.22.1",
|
|
43
|
+
"@datadog/datadog-ci-base": "4.0.0",
|
|
44
|
+
"@datadog/datadog-ci-plugin-deployment": "4.0.0",
|
|
45
|
+
"@datadog/datadog-ci-plugin-dora": "4.0.0",
|
|
46
|
+
"@datadog/datadog-ci-plugin-gate": "4.0.0",
|
|
47
|
+
"@datadog/datadog-ci-plugin-sarif": "4.0.0",
|
|
48
|
+
"@datadog/datadog-ci-plugin-sbom": "4.0.0",
|
|
54
49
|
"axios": "^1.12.1",
|
|
55
50
|
"chalk": "3.0.0",
|
|
56
51
|
"clipanion": "^3.2.1",
|