@itentialopensource/adapter-apic 0.9.1 → 0.9.3

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.9.3 [03-11-2024]
3
+
4
+ * Changes made at 2024.03.11_16:21PM
5
+
6
+ See merge request itentialopensource/adapters/security/adapter-apic!11
7
+
8
+ ---
9
+
10
+ ## 0.9.2 [02-27-2024]
11
+
12
+ * Changes made at 2024.02.27_11:57AM
13
+
14
+ See merge request itentialopensource/adapters/security/adapter-apic!10
15
+
16
+ ---
17
+
2
18
  ## 0.9.1 [12-24-2023]
3
19
 
4
20
  * update axios and metadata
package/metadata.json CHANGED
@@ -14,16 +14,23 @@
14
14
  "method": "REST",
15
15
  "type": "Adapter",
16
16
  "domains": [
17
- "Security (SASE)",
18
- "Network Services"
17
+ "Security (SASE)"
19
18
  ],
20
19
  "tags": [
21
- "Firewall",
22
- "Security Rule Management"
20
+ "Security Policy Management",
21
+ "Configuration & Compliance",
22
+ "Network Infrastructure Changes",
23
+ "Software Upgrades & Device Maintenance"
23
24
  ],
24
25
  "useCases": [
25
- "Add, update, manage and remove Security Policies and Rules",
26
- "Automate Security Rule Validation"
26
+ "Security Group updates",
27
+ "Security Rule Removal",
28
+ "Security Rule Creation",
29
+ "Run network compliance checks and remediation",
30
+ "Determine configuration drift",
31
+ "Device Onboarding",
32
+ "Software Upgrade",
33
+ "Firewall Configuration backup or restore"
27
34
  ],
28
35
  "deprecated": {
29
36
  "isDeprecated": false
@@ -55,4 +62,4 @@
55
62
  "transformationProjects": [],
56
63
  "exampleProjects": []
57
64
  }
58
- }
65
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-apic",
3
- "version": "0.9.1",
3
+ "version": "0.9.3",
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",
@@ -55,15 +55,15 @@
55
55
  "author": "Itential",
56
56
  "homepage": "https://gitlab.com/itentialopensource/adapters/security/adapter-apic#readme",
57
57
  "dependencies": {
58
- "@itentialopensource/adapter-utils": "^5.3.2",
58
+ "@itentialopensource/adapter-utils": "^5.3.8",
59
59
  "acorn": "^8.10.0",
60
60
  "ajv": "^8.12.0",
61
- "axios": "^1.6.2",
61
+ "axios": "^1.6.7",
62
62
  "commander": "^11.0.0",
63
63
  "dns-lookup-promise": "^1.0.4",
64
64
  "fs-extra": "^11.1.1",
65
65
  "json-query": "^2.2.2",
66
- "mocha": "^10.2.0",
66
+ "mocha": "^10.3.0",
67
67
  "mocha-param": "^2.0.1",
68
68
  "mongodb": "^4.16.0",
69
69
  "nyc": "^15.1.0",
Binary file
@@ -316,10 +316,10 @@ describe('[unit] Apic 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);