@datadog/datadog-ci 2.0.0 → 2.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/dist/commands/lambda/__tests__/functions/commons.test.js +0 -21
- package/dist/commands/lambda/__tests__/functions/commons.test.js.map +1 -1
- package/dist/commands/lambda/__tests__/functions/uninstrument.test.js +1 -0
- package/dist/commands/lambda/__tests__/functions/uninstrument.test.js.map +1 -1
- package/dist/commands/lambda/__tests__/instrument.test.js +113 -59
- package/dist/commands/lambda/__tests__/instrument.test.js.map +1 -1
- package/dist/commands/lambda/__tests__/uninstrument.test.js +40 -16
- package/dist/commands/lambda/__tests__/uninstrument.test.js.map +1 -1
- package/dist/commands/lambda/constants.d.ts +1 -0
- package/dist/commands/lambda/constants.js +3 -2
- package/dist/commands/lambda/constants.js.map +1 -1
- package/dist/commands/lambda/functions/commons.d.ts +3 -1
- package/dist/commands/lambda/functions/commons.js +43 -10
- package/dist/commands/lambda/functions/commons.js.map +1 -1
- package/dist/commands/lambda/instrument.d.ts +1 -0
- package/dist/commands/lambda/instrument.js +98 -50
- package/dist/commands/lambda/instrument.js.map +1 -1
- package/dist/commands/lambda/interfaces.d.ts +1 -0
- package/dist/commands/lambda/prompt.d.ts +1 -0
- package/dist/commands/lambda/prompt.js +32 -9
- package/dist/commands/lambda/prompt.js.map +1 -1
- package/dist/commands/lambda/renderer.d.ts +366 -0
- package/dist/commands/lambda/renderer.js +450 -0
- package/dist/commands/lambda/renderer.js.map +1 -0
- package/dist/commands/lambda/uninstrument.d.ts +1 -0
- package/dist/commands/lambda/uninstrument.js +76 -30
- package/dist/commands/lambda/uninstrument.js.map +1 -1
- package/dist/commands/metric/__tests__/metric.test.js +1 -1
- package/dist/commands/metric/__tests__/metric.test.js.map +1 -1
- package/dist/commands/react-native/__tests__/xcode.test.js +20 -0
- package/dist/commands/react-native/__tests__/xcode.test.js.map +1 -1
- package/dist/commands/react-native/utils.d.ts +1 -0
- package/dist/commands/react-native/utils.js +17 -0
- package/dist/commands/react-native/utils.js.map +1 -0
- package/dist/commands/react-native/xcode.d.ts +1 -1
- package/dist/commands/react-native/xcode.js +15 -2
- package/dist/commands/react-native/xcode.js.map +1 -1
- package/dist/commands/synthetics/__tests__/fixtures.d.ts +1 -1
- package/dist/commands/synthetics/__tests__/fixtures.js +3 -0
- package/dist/commands/synthetics/__tests__/fixtures.js.map +1 -1
- package/dist/commands/synthetics/command.js +5 -1
- package/dist/commands/synthetics/command.js.map +1 -1
- package/dist/commands/synthetics/reporters/default.js +8 -2
- package/dist/commands/synthetics/reporters/default.js.map +1 -1
- package/dist/commands/synthetics/tunnel/crypto.d.ts +1 -1
- package/dist/commands/synthetics/tunnel/crypto.js.map +1 -1
- package/dist/commands/synthetics/tunnel/tunnel.js +1 -1
- package/dist/commands/synthetics/tunnel/tunnel.js.map +1 -1
- package/dist/commands/tag/__tests__/tag.test.js +1 -1
- package/dist/commands/tag/__tests__/tag.test.js.map +1 -1
- package/dist/helpers/__tests__/ci.test.js +12 -1
- package/dist/helpers/__tests__/ci.test.js.map +1 -1
- package/dist/helpers/__tests__/validation.test.js +2 -0
- package/dist/helpers/__tests__/validation.test.js.map +1 -1
- package/dist/helpers/ci.js +14 -4
- package/dist/helpers/ci.js.map +1 -1
- package/dist/helpers/validation.d.ts +10 -1
- package/dist/helpers/validation.js +12 -0
- package/dist/helpers/validation.js.map +1 -1
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datadog/datadog-ci",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Run datadog actions from the CI.",
|
|
5
5
|
"repository": "https://github.com/DataDog/datadog-ci",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -65,14 +65,14 @@
|
|
|
65
65
|
"form-data": "3.0.0",
|
|
66
66
|
"fuzzy": "^0.1.3",
|
|
67
67
|
"glob": "7.1.4",
|
|
68
|
-
"inquirer": "8.2.
|
|
68
|
+
"inquirer": "^8.2.5",
|
|
69
69
|
"inquirer-checkbox-plus-prompt": "^1.0.1",
|
|
70
70
|
"js-yaml": "3.13.1",
|
|
71
71
|
"ora": "5.4.1",
|
|
72
72
|
"proxy-agent": "5.0.0",
|
|
73
73
|
"rimraf": "^3.0.2",
|
|
74
74
|
"semver": "^7.3.7",
|
|
75
|
-
"simple-git": "3.
|
|
75
|
+
"simple-git": "3.15.0",
|
|
76
76
|
"ssh2": "1.9.0",
|
|
77
77
|
"ssh2-streams": "0.4.10",
|
|
78
78
|
"sshpk": "1.16.1",
|
|
@@ -91,18 +91,18 @@
|
|
|
91
91
|
"@types/inquirer": "8.1.3",
|
|
92
92
|
"@types/jest": "28.1.3",
|
|
93
93
|
"@types/js-yaml": "^4.0.5",
|
|
94
|
-
"@types/node": "
|
|
94
|
+
"@types/node": "14.18.34",
|
|
95
95
|
"@types/rimraf": "^3.0.2",
|
|
96
96
|
"@types/semver": "^7.3.12",
|
|
97
|
-
"@types/ssh2": "
|
|
98
|
-
"@types/ssh2-streams": "0.1.
|
|
97
|
+
"@types/ssh2": "1.11.6",
|
|
98
|
+
"@types/ssh2-streams": "0.1.9",
|
|
99
99
|
"@types/sshpk": "1.10.5",
|
|
100
100
|
"@types/tiny-async-pool": "1.0.0",
|
|
101
101
|
"@types/ws": "7.2.9",
|
|
102
102
|
"@types/xml2js": "0.4.9",
|
|
103
103
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
104
104
|
"@typescript-eslint/parser": "^4.33.0",
|
|
105
|
-
"dd-trace": "3.
|
|
105
|
+
"dd-trace": "3.9.0",
|
|
106
106
|
"eslint": "^7.32.0",
|
|
107
107
|
"eslint-config-prettier": "^8.5.0",
|
|
108
108
|
"eslint-import-resolver-typescript": "2.7.0",
|