@itentialopensource/adapter-amazon_route53 0.3.7 → 0.3.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 +16 -0
- package/TAB1.md +10 -0
- package/TAB2.md +1477 -0
- package/metadata.json +5 -1
- package/package.json +3 -3
- package/refs?service=git-upload-pack +0 -0
- package/test/unit/adapterTestUnit.js +1 -1
package/metadata.json
CHANGED
|
@@ -58,7 +58,11 @@
|
|
|
58
58
|
"vendorLink": "https://aws.amazon.com/",
|
|
59
59
|
"productLink": "https://aws.amazon.com/route53/",
|
|
60
60
|
"apiLinks": [
|
|
61
|
-
|
|
61
|
+
{
|
|
62
|
+
"title": "Amazon Web Services - Route 53 API",
|
|
63
|
+
"link": "https://docs.aws.amazon.com/Route53/latest/APIReference/Welcome.html",
|
|
64
|
+
"public": true
|
|
65
|
+
}
|
|
62
66
|
]
|
|
63
67
|
},
|
|
64
68
|
"assets": [],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-amazon_route53",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.9",
|
|
4
4
|
"description": "This adapter integrates with system described as: Amazon Route53.",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"systemName": "Amazon AWS Route53",
|
|
@@ -56,10 +56,10 @@
|
|
|
56
56
|
"author": "Itential",
|
|
57
57
|
"homepage": "https://gitlab.com/itentialopensource/adapters/cloud/adapter-amazon_route53#readme",
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@itentialopensource/adapter-utils": "^5.3.
|
|
59
|
+
"@itentialopensource/adapter-utils": "^5.3.10",
|
|
60
60
|
"acorn": "^8.10.0",
|
|
61
61
|
"ajv": "^8.12.0",
|
|
62
|
-
"axios": "^1.6.
|
|
62
|
+
"axios": "^1.6.8",
|
|
63
63
|
"commander": "^11.0.0",
|
|
64
64
|
"dns-lookup-promise": "^1.0.4",
|
|
65
65
|
"fs-extra": "^11.1.1",
|
|
Binary file
|
|
@@ -316,7 +316,7 @@ describe('[unit] Amazon_route53 Adapter Test', () => {
|
|
|
316
316
|
assert.notEqual(null, packageDotJson.dependencies);
|
|
317
317
|
assert.notEqual('', packageDotJson.dependencies);
|
|
318
318
|
assert.equal('^8.12.0', packageDotJson.dependencies.ajv);
|
|
319
|
-
assert.equal('^1.6.
|
|
319
|
+
assert.equal('^1.6.8', packageDotJson.dependencies.axios);
|
|
320
320
|
assert.equal('^11.0.0', packageDotJson.dependencies.commander);
|
|
321
321
|
assert.equal('^11.1.1', packageDotJson.dependencies['fs-extra']);
|
|
322
322
|
assert.equal('^10.3.0', packageDotJson.dependencies.mocha);
|