@adobe/helix-deploy 10.3.0 → 10.3.2

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,17 @@
1
+ ## [10.3.2](https://github.com/adobe/helix-deploy/compare/v10.3.1...v10.3.2) (2024-01-27)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update external fixes ([cab6c74](https://github.com/adobe/helix-deploy/commit/cab6c74e2069753affcae8d7828b3f4f2a856218))
7
+
8
+ ## [10.3.1](https://github.com/adobe/helix-deploy/compare/v10.3.0...v10.3.1) (2024-01-26)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * do not stop query string at question mark ([#653](https://github.com/adobe/helix-deploy/issues/653)) ([ba3e666](https://github.com/adobe/helix-deploy/commit/ba3e66603074e892415539fda50cb193a4ef19f3))
14
+
1
15
  # [10.3.0](https://github.com/adobe/helix-deploy/compare/v10.2.1...v10.3.0) (2024-01-22)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-deploy",
3
- "version": "10.3.0",
3
+ "version": "10.3.2",
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,14 +39,14 @@
39
39
  "dependencies": {
40
40
  "@adobe/fastly-native-promises": "3.0.6",
41
41
  "@adobe/fetch": "4.1.1",
42
- "@adobe/helix-shared-process-queue": "3.0.0",
43
- "@aws-sdk/client-apigatewayv2": "3.496.0",
44
- "@aws-sdk/client-lambda": "3.496.0",
45
- "@aws-sdk/client-s3": "3.496.0",
46
- "@aws-sdk/client-secrets-manager": "3.496.0",
47
- "@aws-sdk/client-ssm": "3.496.0",
48
- "@aws-sdk/client-sts": "3.496.0",
49
- "@fastly/js-compute": "3.8.1",
42
+ "@adobe/helix-shared-process-queue": "3.0.1",
43
+ "@aws-sdk/client-apigatewayv2": "3.501.0",
44
+ "@aws-sdk/client-lambda": "3.501.0",
45
+ "@aws-sdk/client-s3": "3.501.0",
46
+ "@aws-sdk/client-secrets-manager": "3.501.0",
47
+ "@aws-sdk/client-ssm": "3.501.0",
48
+ "@aws-sdk/client-sts": "3.501.0",
49
+ "@fastly/js-compute": "3.8.2",
50
50
  "@google-cloud/functions": "3.0.1",
51
51
  "@google-cloud/secret-manager": "5.0.1",
52
52
  "@google-cloud/storage": "7.7.0",
@@ -58,7 +58,7 @@
58
58
  "archiver": "6.0.1",
59
59
  "chalk-template": "1.1.0",
60
60
  "constants-browserify": "1.0.0",
61
- "dotenv": "16.3.2",
61
+ "dotenv": "16.4.1",
62
62
  "express": "4.18.2",
63
63
  "form-data": "4.0.0",
64
64
  "fs-extra": "11.2.0",
@@ -66,12 +66,12 @@
66
66
  "openwhisk": "3.21.8",
67
67
  "semver": "7.5.4",
68
68
  "tar": "6.2.0",
69
- "webpack": "5.89.0",
69
+ "webpack": "5.90.0",
70
70
  "yargs": "17.7.2"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@adobe/eslint-config-helix": "2.0.5",
74
- "@adobe/helix-shared-wrap": "2.0.0",
74
+ "@adobe/helix-shared-wrap": "2.0.1",
75
75
  "@adobe/helix-status": "10.0.11",
76
76
  "@semantic-release/changelog": "6.0.3",
77
77
  "@semantic-release/git": "10.0.1",
@@ -150,7 +150,8 @@ export default class DevelopmentServer {
150
150
  },
151
151
  });
152
152
  this._handler = async (req, res) => {
153
- const [rawPath, rawQueryString = ''] = req.originalUrl.split('?');
153
+ const [rawPath, ...rest] = req.originalUrl.split('?');
154
+ const rawQueryString = rest.join('?');
154
155
  const method = req.headers['x-http-method'] || req.method;
155
156
  const event = {
156
157
  body: req.rawBody,