@adobe/helix-deploy 9.1.15 → 9.2.1
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 +11 -11
- package/src/DevelopmentServer.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [9.2.1](https://github.com/adobe/helix-deploy/compare/v9.2.0...v9.2.1) (2023-08-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external fixes ([2d8aaa4](https://github.com/adobe/helix-deploy/commit/2d8aaa4b3287560cdeb8b990ca48cb520b189080))
|
|
7
|
+
|
|
8
|
+
# [9.2.0](https://github.com/adobe/helix-deploy/compare/v9.1.15...v9.2.0) (2023-08-18)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* support invocation id ([#569](https://github.com/adobe/helix-deploy/issues/569)) ([53a3c89](https://github.com/adobe/helix-deploy/commit/53a3c893ac0d3026d3b129984401e7d12c75c8e1))
|
|
14
|
+
|
|
1
15
|
## [9.1.15](https://github.com/adobe/helix-deploy/compare/v9.1.14...v9.1.15) (2023-08-16)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-deploy",
|
|
3
|
-
"version": "9.1
|
|
3
|
+
"version": "9.2.1",
|
|
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",
|
|
@@ -38,22 +38,22 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@adobe/fastly-native-promises": "3.0.4",
|
|
40
40
|
"@adobe/fetch": "4.0.13",
|
|
41
|
-
"@aws-sdk/client-apigatewayv2": "3.
|
|
42
|
-
"@aws-sdk/client-lambda": "3.
|
|
43
|
-
"@aws-sdk/client-s3": "3.
|
|
44
|
-
"@aws-sdk/client-secrets-manager": "3.
|
|
45
|
-
"@aws-sdk/client-ssm": "3.
|
|
46
|
-
"@aws-sdk/client-sts": "3.
|
|
47
|
-
"@fastly/js-compute": "3.
|
|
41
|
+
"@aws-sdk/client-apigatewayv2": "3.395.0",
|
|
42
|
+
"@aws-sdk/client-lambda": "3.395.0",
|
|
43
|
+
"@aws-sdk/client-s3": "3.395.0",
|
|
44
|
+
"@aws-sdk/client-secrets-manager": "3.395.0",
|
|
45
|
+
"@aws-sdk/client-ssm": "3.395.0",
|
|
46
|
+
"@aws-sdk/client-sts": "3.395.0",
|
|
47
|
+
"@fastly/js-compute": "3.2.1",
|
|
48
48
|
"@google-cloud/functions": "3.0.0",
|
|
49
49
|
"@google-cloud/secret-manager": "5.0.0",
|
|
50
50
|
"@google-cloud/storage": "7.0.1",
|
|
51
51
|
"@rollup/plugin-alias": "5.0.0",
|
|
52
52
|
"@rollup/plugin-commonjs": "25.0.4",
|
|
53
53
|
"@rollup/plugin-json": "6.0.0",
|
|
54
|
-
"@rollup/plugin-node-resolve": "15.
|
|
54
|
+
"@rollup/plugin-node-resolve": "15.2.0",
|
|
55
55
|
"@rollup/plugin-terser": "0.4.3",
|
|
56
|
-
"archiver": "5.3.
|
|
56
|
+
"archiver": "5.3.2",
|
|
57
57
|
"chalk-template": "1.1.0",
|
|
58
58
|
"constants-browserify": "1.0.0",
|
|
59
59
|
"dotenv": "16.3.1",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"mocha": "10.2.0",
|
|
82
82
|
"mocha-junit-reporter": "2.2.1",
|
|
83
83
|
"mocha-multi-reporters": "1.5.1",
|
|
84
|
-
"nock": "13.3.
|
|
84
|
+
"nock": "13.3.3",
|
|
85
85
|
"semantic-release": "21.0.7",
|
|
86
86
|
"yauzl": "2.10.0"
|
|
87
87
|
},
|
package/src/DevelopmentServer.js
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
10
|
* governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
|
+
import crypto from 'crypto';
|
|
12
13
|
import fse from 'fs-extra';
|
|
13
14
|
import path from 'path';
|
|
14
15
|
import express from 'express';
|
|
@@ -161,6 +162,7 @@ export default class DevelopmentServer {
|
|
|
161
162
|
rawQueryString,
|
|
162
163
|
};
|
|
163
164
|
const context = {
|
|
165
|
+
awsRequestId: crypto.randomUUID(),
|
|
164
166
|
invokedFunctionArn: `arn:aws:lambda:${region}:${accountId}:function:${config.name}:${config.version}`,
|
|
165
167
|
getRemainingTimeInMillis: () => 60000,
|
|
166
168
|
};
|