@itentialopensource/adapter-checkpoint_management 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 +16 -0
- package/metadata.json +13 -6
- package/package.json +2 -2
- package/refs?service=git-upload-pack +0 -0
- package/test/unit/adapterTestUnit.js +1 -1
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:22PM
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/security/adapter-checkpoint_management!18
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 0.9.2 [02-27-2024]
|
|
11
|
+
|
|
12
|
+
* Changes made at 2024.02.27_11:58AM
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/security/adapter-checkpoint_management!17
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
2
18
|
## 0.9.1 [02-20-2024]
|
|
3
19
|
|
|
4
20
|
* update broker calls
|
package/metadata.json
CHANGED
|
@@ -18,16 +18,23 @@
|
|
|
18
18
|
"method": "REST",
|
|
19
19
|
"type": "Adapter",
|
|
20
20
|
"domains": [
|
|
21
|
-
"
|
|
22
|
-
"SD-WAN (SASE)"
|
|
21
|
+
"Security (SASE)"
|
|
23
22
|
],
|
|
24
23
|
"tags": [
|
|
25
|
-
"
|
|
26
|
-
"
|
|
24
|
+
"Security Policy Management",
|
|
25
|
+
"Configuration & Compliance",
|
|
26
|
+
"Network Infrastructure Changes",
|
|
27
|
+
"Software Upgrades & Device Maintenance"
|
|
27
28
|
],
|
|
28
29
|
"useCases": [
|
|
29
|
-
"
|
|
30
|
-
"
|
|
30
|
+
"Security Group updates",
|
|
31
|
+
"Security Rule Removal",
|
|
32
|
+
"Security Rule Creation",
|
|
33
|
+
"Run network compliance checks and remediation",
|
|
34
|
+
"Determine configuration drift",
|
|
35
|
+
"Device Onboarding",
|
|
36
|
+
"Software Upgrade",
|
|
37
|
+
"Firewall Configuration backup or restore"
|
|
31
38
|
],
|
|
32
39
|
"deprecated": {
|
|
33
40
|
"isDeprecated": false
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-checkpoint_management",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"description": "This adapter integrates with system described as: checkpointManagementApi.",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"systemName": "Checkpoint Management",
|
|
@@ -63,7 +63,7 @@
|
|
|
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.
|
|
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
|
|
@@ -319,7 +319,7 @@ describe('[unit] Checkpoint_Management Adapter Test', () => {
|
|
|
319
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.
|
|
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);
|