diff --git a/.changeset/apigw-streaming-wrapper.md b/.changeset/apigw-streaming-wrapper.md deleted file mode 100644 index 29a2749af..000000000 --- a/.changeset/apigw-streaming-wrapper.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@opennextjs/aws": minor ---- - -Add `aws-apigw-streaming` wrapper for API Gateway response streaming - -A new built-in streaming wrapper for fronting the server function with an API Gateway REST API in `ResponseTransferMode: STREAM` (now [supported by AWS](https://aws.amazon.com/about-aws/whats-new/2025/11/api-gateway-response-streaming-rest-apis/)), rather than a Lambda Function URL. Unlike `aws-lambda-streaming`, it omits the Function-URL-only `application/vnd.awslambda.http-integration-response` content type and never compresses the body (API Gateway streaming does not support content encoding). Pairs with `aws-apigw-v1` (REST) or `aws-apigw-v2` (HTTP) converters. diff --git a/.changeset/fix-cache-interceptor-index-route.md b/.changeset/fix-cache-interceptor-index-route.md deleted file mode 100644 index 173c09a37..000000000 --- a/.changeset/fix-cache-interceptor-index-route.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@opennextjs/aws": patch ---- - -Fix cache interception for index routes by normalizing the route path to `/` while reading the generated cache asset from `/index`. diff --git a/examples/app-pages-router/CHANGELOG.md b/examples/app-pages-router/CHANGELOG.md index cee1afe70..f8ee3b458 100644 --- a/examples/app-pages-router/CHANGELOG.md +++ b/examples/app-pages-router/CHANGELOG.md @@ -1,5 +1,12 @@ # app-pages-router +## 0.1.64 + +### Patch Changes + +- Updated dependencies [[`f4faa3bba504a21f827f057f2337951a08828ffd`](https://github.com/opennextjs/opennextjs-aws/commit/f4faa3bba504a21f827f057f2337951a08828ffd), [`8a2ebf2d83026493da1cd708222155f40ec373ed`](https://github.com/opennextjs/opennextjs-aws/commit/8a2ebf2d83026493da1cd708222155f40ec373ed)]: + - @opennextjs/aws@4.1.0 + ## 0.1.63 ### Patch Changes diff --git a/examples/app-pages-router/package.json b/examples/app-pages-router/package.json index 7b0258b8d..cb4efffee 100644 --- a/examples/app-pages-router/package.json +++ b/examples/app-pages-router/package.json @@ -1,6 +1,6 @@ { "name": "app-pages-router", - "version": "0.1.63", + "version": "0.1.64", "private": true, "scripts": { "openbuild": "node ../../packages/open-next/dist/index.js build --build-command \"npx turbo build\"", diff --git a/packages/open-next/CHANGELOG.md b/packages/open-next/CHANGELOG.md index 3ed37409a..745a3fc08 100644 --- a/packages/open-next/CHANGELOG.md +++ b/packages/open-next/CHANGELOG.md @@ -1,5 +1,17 @@ # open-next +## 4.1.0 + +### Minor Changes + +- [#1181](https://github.com/opennextjs/opennextjs-aws/pull/1181) [`f4faa3bba504a21f827f057f2337951a08828ffd`](https://github.com/opennextjs/opennextjs-aws/commit/f4faa3bba504a21f827f057f2337951a08828ffd) Thanks [@osama-rizk](https://github.com/osama-rizk)! - Add `aws-apigw-streaming` wrapper for API Gateway response streaming + + A new built-in streaming wrapper for fronting the server function with an API Gateway REST API in `ResponseTransferMode: STREAM` (now [supported by AWS](https://aws.amazon.com/about-aws/whats-new/2025/11/api-gateway-response-streaming-rest-apis/)), rather than a Lambda Function URL. Unlike `aws-lambda-streaming`, it omits the Function-URL-only `application/vnd.awslambda.http-integration-response` content type and never compresses the body (API Gateway streaming does not support content encoding). Pairs with `aws-apigw-v1` (REST) or `aws-apigw-v2` (HTTP) converters. + +### Patch Changes + +- [#1189](https://github.com/opennextjs/opennextjs-aws/pull/1189) [`8a2ebf2d83026493da1cd708222155f40ec373ed`](https://github.com/opennextjs/opennextjs-aws/commit/8a2ebf2d83026493da1cd708222155f40ec373ed) Thanks [@gaauwe](https://github.com/gaauwe)! - Fix cache interception for index routes by normalizing the route path to `/` while reading the generated cache asset from `/index`. + ## 4.0.3 ### Patch Changes diff --git a/packages/open-next/package.json b/packages/open-next/package.json index 1f36b307a..d9fea417d 100644 --- a/packages/open-next/package.json +++ b/packages/open-next/package.json @@ -3,7 +3,7 @@ "access": "public" }, "name": "@opennextjs/aws", - "version": "4.0.3", + "version": "4.1.0", "bin": { "open-next": "./dist/index.js" },