@itentialopensource/adapter-netbox_v33 2.1.8 → 2.1.9

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.9 [08-07-2024]
3
+
4
+ * Changes made at 2024.08.06_19:11PM
5
+
6
+ See merge request itentialopensource/adapters/adapter-netbox_v33!14
7
+
8
+ ---
9
+
2
10
  ## 2.1.8 [07-23-2024]
3
11
 
4
12
  * add timeout to fix unit
package/TAB2.md CHANGED
@@ -311,7 +311,7 @@ Sample Properties can be used to help you configure the adapter in the Itential
311
311
  }
312
312
  }
313
313
  ```
314
- ### [Swagger](https://gitlab.com/itentialopensource/adapters/inventory/adapter-netbox_v33/-/blob/master/report/adapter-openapi.json)
314
+ ### [Swagger](https://gitlab.com/itentialopensource/adapters/adapter-netbox_v33/-/blob/master/report/adapter-openapi.json)
315
315
 
316
- ## [Generic Adapter Information](https://gitlab.com/itentialopensource/adapters/inventory/adapter-netbox_v33/-/blob/master/README.md)
316
+ ## [Generic Adapter Information](https://gitlab.com/itentialopensource/adapters/adapter-netbox_v33/-/blob/master/README.md)
317
317
 
@@ -0,0 +1,9 @@
1
+ {
2
+ "ComplianceEntries": [
3
+ {
4
+ "name": "Compliance Summary",
5
+ "numInvalidProjects": 0,
6
+ "numValidProjects": 0
7
+ }
8
+ ]
9
+ }
@@ -0,0 +1,5 @@
1
+ ---------------------------------------------------------------------------------------------
2
+ **** Project Compliance Summary ****
3
+ 0 project(s) are not valid
4
+ 0 project(s) are valid
5
+ ---------------------------------------------------------------------------------------------
package/metadata.json CHANGED
@@ -108,5 +108,6 @@
108
108
  ],
109
109
  "transformationProjects": [],
110
110
  "exampleProjects": []
111
- }
111
+ },
112
+ "supportLevel": "community"
112
113
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-netbox_v33",
3
- "version": "2.1.8",
3
+ "version": "2.1.9",
4
4
  "description": "This adapter integrates with system described as: Netbox v3.3",
5
5
  "main": "adapter.js",
6
6
  "wizardVersion": "2.44.7",
@@ -52,22 +52,22 @@
52
52
  "author": "Itential",
53
53
  "homepage": "https://gitlab.com/itentialopensource/adapters/adapter-netbox_v33#readme",
54
54
  "dependencies": {
55
- "@itentialopensource/adapter-utils": "^5.3.10",
56
- "acorn": "^8.10.0",
57
- "ajv": "^8.12.0",
58
- "axios": "^1.6.8",
55
+ "@itentialopensource/adapter-utils": "^5.6.0",
56
+ "acorn": "^8.12.1",
57
+ "ajv": "^8.17.1",
58
+ "axios": "^1.7.2",
59
59
  "commander": "^11.0.0",
60
60
  "dns-lookup-promise": "^1.0.4",
61
- "fs-extra": "^11.1.1",
61
+ "fs-extra": "^11.2.0",
62
62
  "json-query": "^2.2.2",
63
- "mocha": "^10.3.0",
63
+ "mocha": "^10.7.0",
64
64
  "mocha-param": "^2.0.1",
65
65
  "mongodb": "^4.16.0",
66
66
  "ping": "^0.4.4",
67
67
  "prompts": "^2.4.2",
68
68
  "readline-sync": "^1.4.10",
69
- "semver": "^7.5.3",
70
- "winston": "^3.9.0"
69
+ "semver": "^7.6.3",
70
+ "winston": "^3.13.1"
71
71
  },
72
72
  "devDependencies": {
73
73
  "chai": "^4.3.7",
Binary file
@@ -314,16 +314,16 @@ describe('[unit] Netbox_v33 Adapter Test', () => {
314
314
  assert.notEqual(undefined, packageDotJson.dependencies);
315
315
  assert.notEqual(null, packageDotJson.dependencies);
316
316
  assert.notEqual('', packageDotJson.dependencies);
317
- assert.equal('^8.12.0', packageDotJson.dependencies.ajv);
318
- assert.equal('^1.6.8', packageDotJson.dependencies.axios);
317
+ assert.equal('^8.17.1', packageDotJson.dependencies.ajv);
318
+ assert.equal('^1.7.2', packageDotJson.dependencies.axios);
319
319
  assert.equal('^11.0.0', packageDotJson.dependencies.commander);
320
- assert.equal('^11.1.1', packageDotJson.dependencies['fs-extra']);
321
- assert.equal('^10.3.0', packageDotJson.dependencies.mocha);
320
+ assert.equal('^11.2.0', packageDotJson.dependencies['fs-extra']);
321
+ assert.equal('^10.7.0', packageDotJson.dependencies.mocha);
322
322
  assert.equal('^2.0.1', packageDotJson.dependencies['mocha-param']);
323
323
  assert.equal('^0.4.4', packageDotJson.dependencies.ping);
324
324
  assert.equal('^1.4.10', packageDotJson.dependencies['readline-sync']);
325
- assert.equal('^7.5.3', packageDotJson.dependencies.semver);
326
- assert.equal('^3.9.0', packageDotJson.dependencies.winston);
325
+ assert.equal('^7.6.3', packageDotJson.dependencies.semver);
326
+ assert.equal('^3.13.1', packageDotJson.dependencies.winston);
327
327
  done();
328
328
  } catch (error) {
329
329
  log.error(`Test Failure: ${error}`);