@itentialopensource/adapter-docker 0.7.2 → 0.7.4

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 CHANGED
@@ -1,4 +1,20 @@
1
1
 
2
+ ## 0.7.4 [03-11-2024]
3
+
4
+ * Changes made at 2024.03.11_15:39PM
5
+
6
+ See merge request itentialopensource/adapters/cloud/adapter-docker!14
7
+
8
+ ---
9
+
10
+ ## 0.7.3 [02-28-2024]
11
+
12
+ * Changes made at 2024.02.28_11:56AM
13
+
14
+ See merge request itentialopensource/adapters/cloud/adapter-docker!13
15
+
16
+ ---
17
+
2
18
  ## 0.7.2 [12-26-2023]
3
19
 
4
20
  * update axios and metadata
package/metadata.json CHANGED
@@ -17,19 +17,26 @@
17
17
  "Cloud"
18
18
  ],
19
19
  "tags": [
20
- "Cloud Networking",
21
- "Configuration Management",
22
- "Virtual Compute"
20
+ "Cloud Infrastructure Changes",
21
+ "Hybrid & Multi Cloud Orchestration",
22
+ "Configuration & Compliance",
23
+ "Software Upgrades & Device Maintenance"
23
24
  ],
24
25
  "useCases": [
25
- "Add or remove Virtual Machine Images",
26
- "Instantiate, manage, remove Virtual Machine Instances",
27
- "Deploy Virtual Services and Functions",
28
- "Determine available Cloud Resources",
29
- "Assign resources to Virtual Machine Instances",
30
- "Add or remove Virtual Networks",
31
- "Management of Cloud Network Assignments",
32
- "Management of Cloud Storage"
26
+ "VNet or VPC deploy/management",
27
+ "Connect VPC and VNet",
28
+ "Connect router to transit gateway",
29
+ "Route across GCP & Azure",
30
+ "Connect sites across cloud platforms",
31
+ "Router configuration backup or restore",
32
+ "Run network compliance checks and remediation",
33
+ "Determine configuration drift",
34
+ "Golden Configuration",
35
+ "Port Turn-up",
36
+ "Assign Network & IP",
37
+ "Cloud Managed Networks",
38
+ "Software Upgrade",
39
+ "Device Onboarding"
33
40
  ],
34
41
  "deprecated": {
35
42
  "isDeprecated": false
@@ -61,4 +68,4 @@
61
68
  "transformationProjects": [],
62
69
  "exampleProjects": []
63
70
  }
64
- }
71
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-docker",
3
- "version": "0.7.2",
3
+ "version": "0.7.4",
4
4
  "description": "This adapter integrates with system Docker",
5
5
  "main": "adapter.js",
6
6
  "systemName": "Docker Engine",
@@ -54,15 +54,15 @@
54
54
  "author": "Itential",
55
55
  "homepage": "https://gitlab.com/itentialopensource/adapters/cloud/adapter-docker#readme",
56
56
  "dependencies": {
57
- "@itentialopensource/adapter-utils": "^5.3.0",
57
+ "@itentialopensource/adapter-utils": "^5.3.8",
58
58
  "acorn": "^8.10.0",
59
59
  "ajv": "^8.12.0",
60
- "axios": "^1.6.2",
60
+ "axios": "^1.6.7",
61
61
  "commander": "^11.0.0",
62
62
  "dns-lookup-promise": "^1.0.4",
63
63
  "fs-extra": "^11.1.1",
64
64
  "json-query": "^2.2.2",
65
- "mocha": "^10.2.0",
65
+ "mocha": "^10.3.0",
66
66
  "mocha-param": "^2.0.1",
67
67
  "mongodb": "^4.16.0",
68
68
  "nyc": "^15.1.0",
Binary file
@@ -316,10 +316,10 @@ describe('[unit] Docker 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.2', packageDotJson.dependencies.axios);
319
+ assert.equal('^1.6.7', 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
- assert.equal('^10.2.0', packageDotJson.dependencies.mocha);
322
+ assert.equal('^10.3.0', packageDotJson.dependencies.mocha);
323
323
  assert.equal('^2.0.1', packageDotJson.dependencies['mocha-param']);
324
324
  assert.equal('^15.1.0', packageDotJson.dependencies.nyc);
325
325
  assert.equal('^0.4.4', packageDotJson.dependencies.ping);