@itentialopensource/adapter-gitlab 0.13.3 → 0.13.5
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/CHANGELOG.md +16 -0
- package/TAB1.md +10 -0
- package/TAB2.md +4685 -0
- package/metadata.json +3 -9
- package/package.json +3 -3
- package/refs?service=git-upload-pack +0 -0
- package/test/unit/adapterTestUnit.js +1 -1
package/metadata.json
CHANGED
|
@@ -19,16 +19,10 @@
|
|
|
19
19
|
"CI/CD"
|
|
20
20
|
],
|
|
21
21
|
"tags": [
|
|
22
|
-
"
|
|
23
|
-
"Version Control",
|
|
24
|
-
"Build and Deploy"
|
|
22
|
+
"CI/CD & Self-Service"
|
|
25
23
|
],
|
|
26
24
|
"useCases": [
|
|
27
|
-
"
|
|
28
|
-
"Create, update, manage and remove Projects",
|
|
29
|
-
"Automated Deployment of a new System, Application or Project",
|
|
30
|
-
"Versioning of Infrastructure Configuration",
|
|
31
|
-
"Automation of Network Configuration Changes from Repository"
|
|
25
|
+
"CI/CD Pipeline"
|
|
32
26
|
],
|
|
33
27
|
"deprecated": {
|
|
34
28
|
"isDeprecated": false
|
|
@@ -161,4 +155,4 @@
|
|
|
161
155
|
"transformationProjects": [],
|
|
162
156
|
"exampleProjects": []
|
|
163
157
|
}
|
|
164
|
-
}
|
|
158
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-gitlab",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.5",
|
|
4
4
|
"description": "This adapter integrates with system described as: gitlab.",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"systemName": "Gitlab",
|
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
"author": "Itential",
|
|
56
56
|
"homepage": "https://gitlab.com/itentialopensource/adapters/devops-netops/adapter-gitlab#readme",
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@itentialopensource/adapter-utils": "^5.3.
|
|
58
|
+
"@itentialopensource/adapter-utils": "^5.3.10",
|
|
59
59
|
"acorn": "^8.10.0",
|
|
60
60
|
"ajv": "^8.12.0",
|
|
61
|
-
"axios": "^1.6.
|
|
61
|
+
"axios": "^1.6.8",
|
|
62
62
|
"commander": "^11.0.0",
|
|
63
63
|
"dns-lookup-promise": "^1.0.4",
|
|
64
64
|
"fs-extra": "^11.1.1",
|
|
Binary file
|
|
@@ -316,7 +316,7 @@ describe('[unit] GitLab Adapter Test', () => {
|
|
|
316
316
|
assert.notEqual(null, packageDotJson.dependencies);
|
|
317
317
|
assert.notEqual('', packageDotJson.dependencies);
|
|
318
318
|
assert.equal('^8.12.0', packageDotJson.dependencies.ajv);
|
|
319
|
-
assert.equal('^1.6.
|
|
319
|
+
assert.equal('^1.6.8', packageDotJson.dependencies.axios);
|
|
320
320
|
assert.equal('^11.0.0', packageDotJson.dependencies.commander);
|
|
321
321
|
assert.equal('^11.1.1', packageDotJson.dependencies['fs-extra']);
|
|
322
322
|
assert.equal('^10.3.0', packageDotJson.dependencies.mocha);
|