@itentialopensource/adapter-aws_cloudformation 0.2.2 → 0.2.4

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 CHANGED
@@ -1,5 +1,13 @@
1
1
 
2
- ## 0.2.2 [11-21-2023]
2
+ ## 0.2.4 [12-26-2023]
3
+
4
+ * update axios and metadata
5
+
6
+ See merge request itentialopensource/adapters/cloud/adapter-aws_cloudformation!8
7
+
8
+ ---
9
+
10
+ ## 0.2.3 [12-14-2023]
3
11
 
4
12
  * Patch/update package
5
13
 
@@ -7,3 +15,10 @@ See merge request itentialopensource/adapters/cloud/adapter-aws_cloudformation!7
7
15
 
8
16
  ---
9
17
 
18
+ ## 0.2.2 [11-21-2023]
19
+
20
+ * Patch/update package
21
+
22
+ See merge request itentialopensource/adapters/cloud/adapter-aws_cloudformation!7
23
+
24
+ ---
package/metadata.json CHANGED
@@ -11,11 +11,11 @@
11
11
  "2022.1.x",
12
12
  "2023.1.x"
13
13
  ],
14
- "method": "REST API",
14
+ "method": "REST",
15
15
  "type": "Adapter",
16
- "example": "",
17
16
  "domains": [],
18
17
  "tags": [],
18
+ "useCases": [],
19
19
  "deprecated": {
20
20
  "isDeprecated": false
21
21
  },
@@ -23,13 +23,15 @@
23
23
  "documentation": {
24
24
  "storeLink": "",
25
25
  "npmLink": "https://www.npmjs.com/package/@itentialopensource/adapter-aws_cloudformation",
26
- "repoLink": "https://gitlab.com/itentialopensource/adapters/cloud/adapter-aws_cloudformation.git",
27
- "docLink": "https://docs.itential.com/opensource/docs/aws-cloudformation",
26
+ "repoLink": "https://gitlab.com/itentialopensource/adapters/cloud/adapter-aws_cloudformation",
27
+ "docLink": "https://docs.itential.com/opensource/docs/amazon-aws-cloud-formation",
28
+ "demoLinks": [],
29
+ "trainingLinks": [],
28
30
  "faqLink": "https://docs.itential.com/opensource/docs/troubleshooting-an-adapter",
29
31
  "contributeLink": "https://gitlab.com/itentialopensource/adapters/contributing-guide",
30
32
  "issueLink": "https://itential.atlassian.net/servicedesk/customer/portals",
31
- "webLink": "https://www.itential.com/adapters/aws-cloudformation/",
32
- "vendorLink": "",
33
+ "webLink": "https://www.itential.com/adapters/aws-cloud-formation/",
34
+ "vendorLink": "https://aws.amazon.com/",
33
35
  "productLink": "",
34
36
  "apiLinks": []
35
37
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-aws_cloudformation",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "This adapter integrates with system described as: Aws_cloudformation.",
5
5
  "main": "adapter.js",
6
6
  "wizardVersion": "2.44.7",
@@ -55,11 +55,11 @@
55
55
  "author": "Itential",
56
56
  "homepage": "https://gitlab.com/itentialopensource/adapters/cloud/adapter-aws_cloudformation#readme",
57
57
  "dependencies": {
58
- "@itentialopensource/adapter-utils": "^5.3.0",
58
+ "@itentialopensource/adapter-utils": "^5.3.2",
59
59
  "acorn": "^8.10.0",
60
60
  "ajv": "^8.12.0",
61
61
  "aws4": "^1.9.0",
62
- "axios": "^1.4.0",
62
+ "axios": "^1.6.2",
63
63
  "commander": "^11.0.0",
64
64
  "dns-lookup-promise": "^1.0.4",
65
65
  "fs-extra": "^11.1.1",
Binary file
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.2.1",
2
+ "version": "0.2.3",
3
3
  "configLines": 13218,
4
4
  "scriptLines": 1783,
5
5
  "codeLines": 10736,
@@ -316,7 +316,7 @@ describe('[unit] AwsCloudFormation 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.4.0', packageDotJson.dependencies.axios);
319
+ assert.equal('^1.6.2', 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.2.0', packageDotJson.dependencies.mocha);