@itentialopensource/adapter-etsi_sol002 0.9.0 → 0.9.2
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/package.json +4 -4
- package/test/unit/adapterTestUnit.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
## 0.9.2 [02-23-2026]
|
|
3
|
+
|
|
4
|
+
* Changes made at 2026.02.22_16:03PM
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/adapter-etsi_sol002!33
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 0.9.1 [02-17-2026]
|
|
11
|
+
|
|
12
|
+
* Changes made at 2026.02.16_18:43PM
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/adapter-etsi_sol002!32
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
2
18
|
## 0.9.0 [02-13-2026]
|
|
3
19
|
|
|
4
20
|
* minor/auto-migrate/20260213-111410
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-etsi_sol002",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"description": "This adapter integrates with system described as: ETSI sol002",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"wizardVersion": "3.12.1",
|
|
@@ -49,12 +49,12 @@
|
|
|
49
49
|
"author": "Itential",
|
|
50
50
|
"homepage": "https://gitlab.com/itentialopensource/adapters/adapter-etsi_sol002#readme",
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@itentialopensource/adapter-utils": "6.1.
|
|
52
|
+
"@itentialopensource/adapter-utils": "6.1.15",
|
|
53
53
|
"acorn": "8.14.1",
|
|
54
|
-
"ajv": "8.
|
|
54
|
+
"ajv": "8.18.0",
|
|
55
55
|
"axios": "1.13.5",
|
|
56
56
|
"commander": "11.1.0",
|
|
57
|
-
"fs-extra": "11.3.
|
|
57
|
+
"fs-extra": "11.3.3",
|
|
58
58
|
"json-query": "2.2.2",
|
|
59
59
|
"mocha": "11.3.0",
|
|
60
60
|
"mocha-param": "2.0.1",
|
|
@@ -279,10 +279,10 @@ describe('[unit] Etsi_sol002 Adapter Test', () => {
|
|
|
279
279
|
assert.notEqual(undefined, packageDotJson.dependencies);
|
|
280
280
|
assert.notEqual(null, packageDotJson.dependencies);
|
|
281
281
|
assert.notEqual('', packageDotJson.dependencies);
|
|
282
|
-
assert.equal('8.
|
|
282
|
+
assert.equal('8.18.0', packageDotJson.dependencies.ajv);
|
|
283
283
|
assert.equal('1.13.5', packageDotJson.dependencies.axios);
|
|
284
284
|
assert.equal('11.1.0', packageDotJson.dependencies.commander);
|
|
285
|
-
assert.equal('11.3.
|
|
285
|
+
assert.equal('11.3.3', packageDotJson.dependencies['fs-extra']);
|
|
286
286
|
assert.equal('11.3.0', packageDotJson.dependencies.mocha);
|
|
287
287
|
assert.equal('2.0.1', packageDotJson.dependencies['mocha-param']);
|
|
288
288
|
assert.equal('0.4.4', packageDotJson.dependencies.ping);
|