@adobe/helix-deploy 6.2.25 → 6.2.28

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,3 +1,24 @@
1
+ ## [6.2.28](https://github.com/adobe/helix-deploy/compare/v6.2.27...v6.2.28) (2022-04-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update external fixes ([#403](https://github.com/adobe/helix-deploy/issues/403)) ([f628019](https://github.com/adobe/helix-deploy/commit/f6280196f599823b563d9f6f1145806284334bcf))
7
+
8
+ ## [6.2.27](https://github.com/adobe/helix-deploy/compare/v6.2.26...v6.2.27) (2022-04-25)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * update links should link route to alias, not specific version ([#402](https://github.com/adobe/helix-deploy/issues/402)) ([45d7ea3](https://github.com/adobe/helix-deploy/commit/45d7ea31350f7027330a97dd3773404963f85149))
14
+
15
+ ## [6.2.26](https://github.com/adobe/helix-deploy/compare/v6.2.25...v6.2.26) (2022-04-22)
16
+
17
+
18
+ ### Reverts
19
+
20
+ * Revert "fix(aws): link integration to v alias of function (#401)" ([ec6d70b](https://github.com/adobe/helix-deploy/commit/ec6d70bf5735ef3991497a1b13b0c63aaa42ce60)), closes [#401](https://github.com/adobe/helix-deploy/issues/401)
21
+
1
22
  ## [6.2.25](https://github.com/adobe/helix-deploy/compare/v6.2.24...v6.2.25) (2022-04-22)
2
23
 
3
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-deploy",
3
- "version": "6.2.25",
3
+ "version": "6.2.28",
4
4
  "description": "Library and Commandline Tools to build and deploy OpenWhisk Actions",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/adobe/helix-deploy#readme",
@@ -39,15 +39,15 @@
39
39
  "dependencies": {
40
40
  "@adobe/fastly-native-promises": "2.0.7",
41
41
  "@adobe/helix-fetch": "3.0.9",
42
- "@aws-sdk/client-apigatewayv2": "3.72.0",
43
- "@aws-sdk/client-lambda": "3.72.0",
44
- "@aws-sdk/client-s3": "3.72.0",
45
- "@aws-sdk/client-secrets-manager": "3.72.0",
46
- "@aws-sdk/client-ssm": "3.72.0",
42
+ "@aws-sdk/client-apigatewayv2": "3.76.0",
43
+ "@aws-sdk/client-lambda": "3.76.0",
44
+ "@aws-sdk/client-s3": "3.76.0",
45
+ "@aws-sdk/client-secrets-manager": "3.76.0",
46
+ "@aws-sdk/client-ssm": "3.76.0",
47
47
  "@fastly/js-compute": "0.2.4",
48
- "@google-cloud/functions": "1.2.0",
48
+ "@google-cloud/functions": "1.3.0",
49
49
  "@google-cloud/secret-manager": "3.12.0",
50
- "@google-cloud/storage": "5.19.2",
50
+ "@google-cloud/storage": "5.19.3",
51
51
  "@rollup/plugin-alias": "3.1.9",
52
52
  "@rollup/plugin-commonjs": "21.1.0",
53
53
  "@rollup/plugin-json": "4.1.0",
@@ -77,15 +77,15 @@
77
77
  "@adobe/helix-universal-logger": "2.0.7",
78
78
  "@semantic-release/changelog": "6.0.1",
79
79
  "@semantic-release/git": "10.0.1",
80
- "c8": "7.11.0",
80
+ "c8": "7.11.2",
81
81
  "chai": "4.3.6",
82
82
  "chai-http": "4.3.0",
83
83
  "codecov": "3.8.3",
84
- "eslint": "8.13.0",
84
+ "eslint": "8.14.0",
85
85
  "eslint-plugin-header": "3.1.1",
86
86
  "eslint-plugin-import": "2.26.0",
87
87
  "husky": "7.0.4",
88
- "lint-staged": "12.3.8",
88
+ "lint-staged": "12.4.0",
89
89
  "mocha": "9.2.2",
90
90
  "mocha-junit-reporter": "2.0.2",
91
91
  "mocha-multi-reporters": "1.5.1",
@@ -666,6 +666,8 @@ export default class AWSDeployer extends BaseDeployer {
666
666
  Name: functionVersion,
667
667
  }));
668
668
  incrementalVersion = res.FunctionVersion;
669
+ // eslint-disable-next-line prefer-destructuring
670
+ this._accountId = res.AliasArn.split(':')[4];
669
671
  this.log.info(chalk`{green ok}: ${functionName}@${functionVersion} => ${incrementalVersion}`);
670
672
  } catch (e) {
671
673
  this.log.error(chalk`{red error}: Unable to create link to function ${functionName}`);