@adobe/helix-deploy 9.1.15 → 9.2.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 CHANGED
@@ -1,3 +1,10 @@
1
+ # [9.2.0](https://github.com/adobe/helix-deploy/compare/v9.1.15...v9.2.0) (2023-08-18)
2
+
3
+
4
+ ### Features
5
+
6
+ * support invocation id ([#569](https://github.com/adobe/helix-deploy/issues/569)) ([53a3c89](https://github.com/adobe/helix-deploy/commit/53a3c893ac0d3026d3b129984401e7d12c75c8e1))
7
+
1
8
  ## [9.1.15](https://github.com/adobe/helix-deploy/compare/v9.1.14...v9.1.15) (2023-08-16)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-deploy",
3
- "version": "9.1.15",
3
+ "version": "9.2.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",
@@ -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
  };