@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 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, IPAddress, comment, callback)</td>
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
@@ -1,4 +1,12 @@
1
1
 
2
+ ## 1.15.5 [11-19-2024]
3
+
4
+ * change order of params to fix createHostRecord2
5
+
6
+ See merge request itentialopensource/adapters/adapter-infoblox!49
7
+
8
+ ---
9
+
2
10
  ## 1.15.4 [10-15-2024]
3
11
 
4
12
  * Changes made at 2024.10.14_21:30PM
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, IPAddress, comment, callback) {
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.4",
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.9.4",
61
- "acorn": "^8.12.1",
60
+ "@itentialopensource/adapter-utils": "^5.10.1",
61
+ "acorn": "^8.14.0",
62
62
  "ajv": "^8.17.1",
63
- "axios": "^1.7.4",
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.7.3",
68
+ "mocha": "^10.8.2",
69
69
  "mocha-param": "^2.0.1",
70
- "mongodb": "^4.16.0",
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.14.2"
75
+ "winston": "^3.17.0"
76
76
  },
77
77
  "devDependencies": {
78
78
  "chai": "^4.3.7",
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.15.2",
2
+ "version": "1.15.4",
3
3
  "configLines": 23173,
4
4
  "scriptLines": 1783,
5
5
  "codeLines": 29971,
@@ -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.4', packageDotJson.dependencies.axios);
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.7.3', packageDotJson.dependencies.mocha);
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.14.2', packageDotJson.dependencies.winston);
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