@itentialopensource/adapter-apic 0.16.3 → 1.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/CHANGELOG.md CHANGED
@@ -1,4 +1,20 @@
1
1
 
2
+ ## 1.0.0 [04-13-2026]
3
+
4
+ * Security Fixes Requiring Node >= 20.19.x made at 2026.04.13_09:26AM
5
+
6
+ See merge request itentialopensource/adapters/adapter-apic!47
7
+
8
+ ---
9
+
10
+ ## 0.16.4 [03-23-2026]
11
+
12
+ * Changes made at 2026.03.23_12:34PM
13
+
14
+ See merge request itentialopensource/adapters/adapter-apic!46
15
+
16
+ ---
17
+
2
18
  ## 0.16.3 [03-04-2026]
3
19
 
4
20
  * Changes made at 2026.03.04_09:54AM
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-apic",
3
- "version": "0.16.3",
3
+ "version": "1.0.0",
4
4
  "description": " Cisco Application Policy Infrastructure Controller (Cisco APIC) is the unifying point of automation and management for the Application Centric Infrastructure (ACI) fabric.",
5
5
  "main": "adapter.js",
6
6
  "systemName": "Cisco APIC",
@@ -39,8 +39,8 @@
39
39
  ],
40
40
  "license": "SEE LICENSE IN LICENSE",
41
41
  "engines": {
42
- "node": ">= 18.18.0",
43
- "npm": ">= 9.8.1"
42
+ "node": "20.19.0",
43
+ "npm": "10.8.2"
44
44
  },
45
45
  "repository": {
46
46
  "type": "git",
@@ -49,14 +49,14 @@
49
49
  "author": "Itential",
50
50
  "homepage": "https://gitlab.com/itentialopensource/adapters/adapter-apic#readme",
51
51
  "dependencies": {
52
- "@itentialopensource/adapter-utils": "6.1.15",
52
+ "@itentialopensource/adapter-utils": "6.1.17",
53
53
  "acorn": "8.14.1",
54
54
  "ajv": "8.18.0",
55
- "axios": "1.13.6",
55
+ "axios": "1.15.0",
56
56
  "commander": "11.1.0",
57
- "fs-extra": "11.3.3",
57
+ "fs-extra": "11.3.4",
58
58
  "json-query": "2.2.2",
59
- "mocha": "11.3.0",
59
+ "mocha": "12.0.0-beta-10",
60
60
  "mocha-param": "2.0.1",
61
61
  "mongodb": "4.17.2",
62
62
  "ping": "0.4.4",
@@ -280,10 +280,10 @@ describe('[unit] Apic Adapter Test', () => {
280
280
  assert.notEqual(null, packageDotJson.dependencies);
281
281
  assert.notEqual('', packageDotJson.dependencies);
282
282
  assert.equal('8.18.0', packageDotJson.dependencies.ajv);
283
- assert.equal('1.13.6', packageDotJson.dependencies.axios);
283
+ assert.equal('1.15.0', packageDotJson.dependencies.axios);
284
284
  assert.equal('11.1.0', packageDotJson.dependencies.commander);
285
- assert.equal('11.3.3', packageDotJson.dependencies['fs-extra']);
286
- assert.equal('11.3.0', packageDotJson.dependencies.mocha);
285
+ assert.equal('11.3.4', packageDotJson.dependencies['fs-extra']);
286
+ assert.equal('12.0.0-beta-10', packageDotJson.dependencies.mocha);
287
287
  assert.equal('2.0.1', packageDotJson.dependencies['mocha-param']);
288
288
  assert.equal('0.4.4', packageDotJson.dependencies.ping);
289
289
  assert.equal('1.4.10', packageDotJson.dependencies['readline-sync']);