@itentialopensource/adapter-netbox_v33 2.1.0 → 2.1.1
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,12 @@
|
|
|
1
1
|
|
|
2
|
+
## 2.1.1 [02-26-2024]
|
|
3
|
+
|
|
4
|
+
* Changes made at 2024.02.26_13:36PM
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/inventory/adapter-netbox_v33!5
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
2
10
|
## 2.1.0 [12-29-2023]
|
|
3
11
|
|
|
4
12
|
* Adapter Engine has been updated and the changes are being migrated to the adapter
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-netbox_v33",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "This adapter integrates with system described as: Netbox v3.3",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"wizardVersion": "2.44.7",
|
|
@@ -53,15 +53,15 @@
|
|
|
53
53
|
"author": "Itential",
|
|
54
54
|
"homepage": "https://gitlab.com/itentialopensource/adapters/inventory/adapter-netbox_v33#readme",
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@itentialopensource/adapter-utils": "^5.3.
|
|
56
|
+
"@itentialopensource/adapter-utils": "^5.3.8",
|
|
57
57
|
"acorn": "^8.10.0",
|
|
58
58
|
"ajv": "^8.12.0",
|
|
59
|
-
"axios": "^1.6.
|
|
59
|
+
"axios": "^1.6.7",
|
|
60
60
|
"commander": "^11.0.0",
|
|
61
61
|
"dns-lookup-promise": "^1.0.4",
|
|
62
62
|
"fs-extra": "^11.1.1",
|
|
63
63
|
"json-query": "^2.2.2",
|
|
64
|
-
"mocha": "^10.
|
|
64
|
+
"mocha": "^10.3.0",
|
|
65
65
|
"mocha-param": "^2.0.1",
|
|
66
66
|
"mongodb": "^4.16.0",
|
|
67
67
|
"nyc": "^15.1.0",
|
|
Binary file
|
|
@@ -316,10 +316,10 @@ describe('[unit] Netbox_v33 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.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);
|