@adobe/helix-deploy 12.3.8 → 12.3.10
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 +14 -0
- package/package.json +5 -5
- package/src/BaseConfig.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [12.3.10](https://github.com/adobe/helix-deploy/compare/v12.3.9...v12.3.10) (2024-12-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external fixes ([#759](https://github.com/adobe/helix-deploy/issues/759)) ([c05ba75](https://github.com/adobe/helix-deploy/commit/c05ba75d5764b07030916636a95b88758d576bb0))
|
|
7
|
+
|
|
8
|
+
## [12.3.9](https://github.com/adobe/helix-deploy/compare/v12.3.8...v12.3.9) (2024-12-03)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* change default node version to 22 ([#758](https://github.com/adobe/helix-deploy/issues/758)) ([194fb1d](https://github.com/adobe/helix-deploy/commit/194fb1da566bbf110f10a4bbed3475860d0dba49))
|
|
14
|
+
|
|
1
15
|
## [12.3.8](https://github.com/adobe/helix-deploy/compare/v12.3.7...v12.3.8) (2024-11-30)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-deploy",
|
|
3
|
-
"version": "12.3.
|
|
3
|
+
"version": "12.3.10",
|
|
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",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@adobe/helix-shared-process-queue": "3.0.4",
|
|
42
42
|
"@aws-sdk/client-apigatewayv2": "3.699.0",
|
|
43
43
|
"@aws-sdk/client-lambda": "3.699.0",
|
|
44
|
-
"@aws-sdk/client-s3": "3.
|
|
44
|
+
"@aws-sdk/client-s3": "3.703.0",
|
|
45
45
|
"@aws-sdk/client-secrets-manager": "3.699.0",
|
|
46
46
|
"@aws-sdk/client-ssm": "3.699.0",
|
|
47
47
|
"@aws-sdk/client-sts": "3.699.0",
|
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
"@google-cloud/storage": "7.14.0",
|
|
51
51
|
"archiver": "7.0.1",
|
|
52
52
|
"chalk-template": "1.1.0",
|
|
53
|
-
"dotenv": "16.4.
|
|
53
|
+
"dotenv": "16.4.6",
|
|
54
54
|
"escalade": "3.2.0",
|
|
55
55
|
"fs-extra": "11.2.0",
|
|
56
56
|
"isomorphic-git": "1.27.2",
|
|
57
57
|
"openwhisk": "3.21.8",
|
|
58
58
|
"semver": "7.6.3",
|
|
59
|
-
"webpack": "5.
|
|
59
|
+
"webpack": "5.97.0",
|
|
60
60
|
"yargs": "17.7.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"eslint": "8.57.1",
|
|
70
70
|
"husky": "9.1.7",
|
|
71
71
|
"lint-staged": "15.2.10",
|
|
72
|
-
"mocha": "
|
|
72
|
+
"mocha": "11.0.1",
|
|
73
73
|
"mocha-junit-reporter": "2.2.1",
|
|
74
74
|
"mocha-multi-reporters": "1.5.1",
|
|
75
75
|
"nock": "13.5.6",
|
package/src/BaseConfig.js
CHANGED
|
@@ -787,7 +787,7 @@ export default class BaseConfig {
|
|
|
787
787
|
})
|
|
788
788
|
.option('node-version', {
|
|
789
789
|
description: 'Specifies the node.js version to use in the serverless runtime',
|
|
790
|
-
default: '
|
|
790
|
+
default: '22',
|
|
791
791
|
})
|
|
792
792
|
.option('web-secure', {
|
|
793
793
|
description: 'Annotates the action with require-whisk-auth. leave empty to generate random token.',
|