Skip to content

Commit f88dea1

Browse files
authored
Fix chunked encoding option name (#3440)
* Fix chunked encoding option name * Changelog
1 parent f5b2b6d commit f88dea1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/pwa-kit-runtime/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
- Added Hybrid Proxy support for local and ODS hybrid development [#3409] (https://github.com/SalesforceCommerceCloud/pwa-kit/pull/3409)
44
- Add extensibility hooks for SLAS private client proxy with `onSLASPrivateProxyReq` and `onSLASPrivateProxyRes` callbacks [#3411](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/3411)
55
- Remove exception when transfer-encoding: chunked [#3439](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/3439)
6+
- Fix chunked encoding option name [#3440](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/3440)
67

78
## v3.13.0 (Sep 25, 2025)
89

packages/pwa-kit-runtime/src/ssr/server/build-remote-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1280,7 +1280,7 @@ export const RemoteServerFactory = {
12801280
new ApiGatewayV1Adapter({
12811281
// Preserve the original aws-serverless-express behavior
12821282
lowercaseRequestHeaders: true,
1283-
throwOnChunkedTransfer: false
1283+
throwOnChunkedTransferEncoding: false
12841284
})
12851285
)
12861286
.build()

0 commit comments

Comments
 (0)