@adobe/helix-deploy 6.2.50 → 7.0.0
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 +12 -0
- package/package.json +13 -14
- package/src/BaseConfig.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [7.0.0](https://github.com/adobe/helix-deploy/compare/v6.2.50...v7.0.0) (2022-08-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** use node 16 by default ([e6fe94b](https://github.com/adobe/helix-deploy/commit/e6fe94b97010dc4e63e456e5b0e1625030d54c94))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* **deps:** node 16 is default version when deploying functions
|
|
12
|
+
|
|
1
13
|
## [6.2.50](https://github.com/adobe/helix-deploy/compare/v6.2.49...v6.2.50) (2022-07-23)
|
|
2
14
|
|
|
3
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-deploy",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
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",
|
|
@@ -23,8 +23,7 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"lint": "eslint .",
|
|
25
25
|
"test": "c8 mocha -i -g Integration",
|
|
26
|
-
"
|
|
27
|
-
"integration-ci": "c8 mocha -g Integration && codecov",
|
|
26
|
+
"integration-ci": "c8 mocha -g Integration",
|
|
28
27
|
"semantic-release": "semantic-release",
|
|
29
28
|
"prepare": "husky install"
|
|
30
29
|
},
|
|
@@ -39,15 +38,15 @@
|
|
|
39
38
|
"dependencies": {
|
|
40
39
|
"@adobe/fastly-native-promises": "2.0.9",
|
|
41
40
|
"@adobe/helix-fetch": "3.1.1",
|
|
42
|
-
"@aws-sdk/client-apigatewayv2": "3.
|
|
43
|
-
"@aws-sdk/client-lambda": "3.
|
|
44
|
-
"@aws-sdk/client-s3": "3.
|
|
45
|
-
"@aws-sdk/client-secrets-manager": "3.
|
|
46
|
-
"@aws-sdk/client-ssm": "3.
|
|
47
|
-
"@fastly/js-compute": "0.
|
|
41
|
+
"@aws-sdk/client-apigatewayv2": "3.141.0",
|
|
42
|
+
"@aws-sdk/client-lambda": "3.141.0",
|
|
43
|
+
"@aws-sdk/client-s3": "3.141.0",
|
|
44
|
+
"@aws-sdk/client-secrets-manager": "3.141.0",
|
|
45
|
+
"@aws-sdk/client-ssm": "3.141.0",
|
|
46
|
+
"@fastly/js-compute": "0.4.0",
|
|
48
47
|
"@google-cloud/functions": "2.2.0",
|
|
49
48
|
"@google-cloud/secret-manager": "4.0.0",
|
|
50
|
-
"@google-cloud/storage": "6.
|
|
49
|
+
"@google-cloud/storage": "6.3.0",
|
|
51
50
|
"@rollup/plugin-alias": "3.1.9",
|
|
52
51
|
"@rollup/plugin-commonjs": "22.0.1",
|
|
53
52
|
"@rollup/plugin-json": "4.1.0",
|
|
@@ -60,14 +59,14 @@
|
|
|
60
59
|
"form-data": "4.0.0",
|
|
61
60
|
"fs-extra": "10.1.0",
|
|
62
61
|
"get-stream": "6.0.1",
|
|
63
|
-
"isomorphic-git": "1.19.
|
|
62
|
+
"isomorphic-git": "1.19.1",
|
|
64
63
|
"openwhisk": "3.21.6",
|
|
65
64
|
"proxyquire": "2.1.3",
|
|
66
|
-
"rollup": "2.77.
|
|
65
|
+
"rollup": "2.77.2",
|
|
67
66
|
"rollup-plugin-terser": "7.0.2",
|
|
68
67
|
"semver": "7.3.7",
|
|
69
68
|
"tar": "6.1.11",
|
|
70
|
-
"webpack": "5.
|
|
69
|
+
"webpack": "5.74.0",
|
|
71
70
|
"yargs": "17.5.1"
|
|
72
71
|
},
|
|
73
72
|
"devDependencies": {
|
|
@@ -81,7 +80,7 @@
|
|
|
81
80
|
"chai": "4.3.6",
|
|
82
81
|
"chai-http": "4.3.0",
|
|
83
82
|
"codecov": "3.8.3",
|
|
84
|
-
"eslint": "8.
|
|
83
|
+
"eslint": "8.21.0",
|
|
85
84
|
"eslint-plugin-header": "3.1.1",
|
|
86
85
|
"eslint-plugin-import": "2.26.0",
|
|
87
86
|
"husky": "8.0.1",
|
package/src/BaseConfig.js
CHANGED
|
@@ -753,7 +753,7 @@ export default class BaseConfig {
|
|
|
753
753
|
})
|
|
754
754
|
.option('node-version', {
|
|
755
755
|
description: 'Specifies the node.js version to use in the serverless runtime',
|
|
756
|
-
default: '
|
|
756
|
+
default: '16',
|
|
757
757
|
})
|
|
758
758
|
.option('web-secure', {
|
|
759
759
|
description: 'Annotates the action with require-whisk-auth. leave empty to generate random token.',
|