@itentialopensource/adapter-infoblox 1.15.4 → 1.15.6
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/CALLS.md +1 -1
- package/CHANGELOG.md +8 -0
- package/adapter.js +1 -1
- package/package.json +7 -7
- package/report/adapterInfo.json +1 -1
- package/test/unit/adapterTestUnit.js +3 -3
- package/refs?service=git-upload-pack +0 -0
package/CALLS.md
CHANGED
|
@@ -227,7 +227,7 @@ Specific adapter calls are built based on the API of the Infoblox. The Adapter B
|
|
|
227
227
|
<td style="padding:15px">Yes</td>
|
|
228
228
|
</tr>
|
|
229
229
|
<tr>
|
|
230
|
-
<td style="padding:15px">createHostRecord2(hostName,
|
|
230
|
+
<td style="padding:15px">createHostRecord2(hostName, comment, IPAddress, callback)</td>
|
|
231
231
|
<td style="padding:15px">createHostRecord2</td>
|
|
232
232
|
<td style="padding:15px">{base_path}/{version}/record:host/{pathv1}?{query}</td>
|
|
233
233
|
<td style="padding:15px">Yes</td>
|
package/CHANGELOG.md
CHANGED
package/adapter.js
CHANGED
|
@@ -998,7 +998,7 @@ class Infoblox extends AdapterBaseCl {
|
|
|
998
998
|
* @param {getCallback} callback - a callback function to return the result
|
|
999
999
|
* (entities) or the error
|
|
1000
1000
|
*/
|
|
1001
|
-
createHostRecord2(hostName,
|
|
1001
|
+
createHostRecord2(hostName, comment, IPAddress, callback) {
|
|
1002
1002
|
const meth = 'adapter-createHostRecord2';
|
|
1003
1003
|
const origin = `${this.id}-${meth}`;
|
|
1004
1004
|
log.trace(origin);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-infoblox",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.6",
|
|
4
4
|
"description": "Itential Infoblox Adapter",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"systemName": "Infoblox",
|
|
@@ -57,22 +57,22 @@
|
|
|
57
57
|
"author": "Itential",
|
|
58
58
|
"homepage": "https://gitlab.com/itentialopensource/adapters/adapter-infoblox#readme",
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@itentialopensource/adapter-utils": "^5.
|
|
61
|
-
"acorn": "^8.
|
|
60
|
+
"@itentialopensource/adapter-utils": "^5.10.1",
|
|
61
|
+
"acorn": "^8.14.0",
|
|
62
62
|
"ajv": "^8.17.1",
|
|
63
|
-
"axios": "^1.7.
|
|
63
|
+
"axios": "^1.7.9",
|
|
64
64
|
"commander": "^11.0.0",
|
|
65
65
|
"dns-lookup-promise": "^1.0.4",
|
|
66
66
|
"fs-extra": "^11.2.0",
|
|
67
67
|
"json-query": "^2.2.2",
|
|
68
|
-
"mocha": "^10.
|
|
68
|
+
"mocha": "^10.8.2",
|
|
69
69
|
"mocha-param": "^2.0.1",
|
|
70
|
-
"mongodb": "^4.
|
|
70
|
+
"mongodb": "^4.17.2",
|
|
71
71
|
"ping": "^0.4.4",
|
|
72
72
|
"prompts": "^2.4.2",
|
|
73
73
|
"readline-sync": "^1.4.10",
|
|
74
74
|
"semver": "^7.6.3",
|
|
75
|
-
"winston": "^3.
|
|
75
|
+
"winston": "^3.17.0"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"chai": "^4.3.7",
|
package/report/adapterInfo.json
CHANGED
|
@@ -319,15 +319,15 @@ describe('[unit] Infoblox Adapter Test', () => {
|
|
|
319
319
|
assert.notEqual(null, packageDotJson.dependencies);
|
|
320
320
|
assert.notEqual('', packageDotJson.dependencies);
|
|
321
321
|
assert.equal('^8.17.1', packageDotJson.dependencies.ajv);
|
|
322
|
-
assert.equal('^1.7.
|
|
322
|
+
assert.equal('^1.7.9', packageDotJson.dependencies.axios);
|
|
323
323
|
assert.equal('^11.0.0', packageDotJson.dependencies.commander);
|
|
324
324
|
assert.equal('^11.2.0', packageDotJson.dependencies['fs-extra']);
|
|
325
|
-
assert.equal('^10.
|
|
325
|
+
assert.equal('^10.8.2', packageDotJson.dependencies.mocha);
|
|
326
326
|
assert.equal('^2.0.1', packageDotJson.dependencies['mocha-param']);
|
|
327
327
|
assert.equal('^0.4.4', packageDotJson.dependencies.ping);
|
|
328
328
|
assert.equal('^1.4.10', packageDotJson.dependencies['readline-sync']);
|
|
329
329
|
assert.equal('^7.6.3', packageDotJson.dependencies.semver);
|
|
330
|
-
assert.equal('^3.
|
|
330
|
+
assert.equal('^3.17.0', packageDotJson.dependencies.winston);
|
|
331
331
|
done();
|
|
332
332
|
} catch (error) {
|
|
333
333
|
log.error(`Test Failure: ${error}`);
|
|
Binary file
|