@itentialopensource/adapter-openstack_cinder 0.3.1 → 0.3.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 +8 -0
- package/TAB2.md +2 -2
- package/metadata.json +5 -2
- package/package.json +3 -3
- package/refs?service=git-upload-pack +0 -0
- package/test/unit/adapterTestUnit.js +2 -2
package/CHANGELOG.md
CHANGED
package/TAB2.md
CHANGED
|
@@ -327,7 +327,7 @@ Sample Properties can be used to help you configure the adapter in the Itential
|
|
|
327
327
|
}
|
|
328
328
|
}
|
|
329
329
|
```
|
|
330
|
-
### [Swagger](https://gitlab.com/itentialopensource/adapters/
|
|
330
|
+
### [Swagger](https://gitlab.com/itentialopensource/adapters/adapter-openstack_cinder/-/blob/master/report/adapter-openapi.json)
|
|
331
331
|
|
|
332
|
-
## [Generic Adapter Information](https://gitlab.com/itentialopensource/adapters/
|
|
332
|
+
## [Generic Adapter Information](https://gitlab.com/itentialopensource/adapters/adapter-openstack_cinder/-/blob/master/README.md)
|
|
333
333
|
|
package/metadata.json
CHANGED
|
@@ -72,7 +72,9 @@
|
|
|
72
72
|
"link": "https://docs.openstack.org/api-ref/block-storage/v3/index.html",
|
|
73
73
|
"public": true
|
|
74
74
|
}
|
|
75
|
-
]
|
|
75
|
+
],
|
|
76
|
+
"workshopLinks": [],
|
|
77
|
+
"workshopHomePage": "https://www.itential.com/get-started/"
|
|
76
78
|
},
|
|
77
79
|
"assets": [],
|
|
78
80
|
"relatedItems": {
|
|
@@ -83,5 +85,6 @@
|
|
|
83
85
|
"transformationProjects": [],
|
|
84
86
|
"exampleProjects": []
|
|
85
87
|
},
|
|
86
|
-
"supportLevel": "community"
|
|
88
|
+
"supportLevel": "community",
|
|
89
|
+
"techAlliance": false
|
|
87
90
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-openstack_cinder",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "This adapter integrates with system described as: Openstack Block Storage (Cinder) Service",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"systemName": "OpenStack Block Storage (Cinder)",
|
|
@@ -57,12 +57,12 @@
|
|
|
57
57
|
"@itentialopensource/adapter-utils": "^5.6.0",
|
|
58
58
|
"acorn": "^8.12.1",
|
|
59
59
|
"ajv": "^8.17.1",
|
|
60
|
-
"axios": "^1.7.
|
|
60
|
+
"axios": "^1.7.4",
|
|
61
61
|
"commander": "^11.0.0",
|
|
62
62
|
"dns-lookup-promise": "^1.0.4",
|
|
63
63
|
"fs-extra": "^11.2.0",
|
|
64
64
|
"json-query": "^2.2.2",
|
|
65
|
-
"mocha": "^10.7.
|
|
65
|
+
"mocha": "^10.7.3",
|
|
66
66
|
"mocha-param": "^2.0.1",
|
|
67
67
|
"mongodb": "^4.16.0",
|
|
68
68
|
"ping": "^0.4.4",
|
|
Binary file
|
|
@@ -315,10 +315,10 @@ describe('[unit] Openstack_cinder Adapter Test', () => {
|
|
|
315
315
|
assert.notEqual(null, packageDotJson.dependencies);
|
|
316
316
|
assert.notEqual('', packageDotJson.dependencies);
|
|
317
317
|
assert.equal('^8.17.1', packageDotJson.dependencies.ajv);
|
|
318
|
-
assert.equal('^1.7.
|
|
318
|
+
assert.equal('^1.7.4', packageDotJson.dependencies.axios);
|
|
319
319
|
assert.equal('^11.0.0', packageDotJson.dependencies.commander);
|
|
320
320
|
assert.equal('^11.2.0', packageDotJson.dependencies['fs-extra']);
|
|
321
|
-
assert.equal('^10.7.
|
|
321
|
+
assert.equal('^10.7.3', 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']);
|