@adobe/helix-deploy 9.0.35 → 9.0.36

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.0.36](https://github.com/adobe/helix-deploy/compare/v9.0.35...v9.0.36) (2023-05-31)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * suffix should not contain the query string ([#547](https://github.com/adobe/helix-deploy/issues/547)) ([b0715e4](https://github.com/adobe/helix-deploy/commit/b0715e4e889eba914b886bfb4c1460226656ec87))
7
+
1
8
  ## [9.0.35](https://github.com/adobe/helix-deploy/compare/v9.0.34...v9.0.35) (2023-05-27)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-deploy",
3
- "version": "9.0.35",
3
+ "version": "9.0.36",
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",
@@ -148,7 +148,7 @@ export default class DevelopmentServer {
148
148
  body: req.rawBody,
149
149
  headers: req.headers,
150
150
  pathParameters: {
151
- path: req.originalUrl.substring(1),
151
+ path: rawPath.substring(1),
152
152
  },
153
153
  requestContext: {
154
154
  domainName: req.hostname,