Releases: opennextjs/opennextjs-aws
Releases · opennextjs/opennextjs-aws
v1.3.4
Changes
- 7a4b8d0: warmer: use debugger for logging
- 33dab58: server: do not override default alias for older Next.js versions
v1.3.3
Changes
- c353984: server: handle duplicate API Gateway REST API query string
v1.3.2
Changes
- b701d51: server: handle API Gateway REST API event without multiValueHeaders
- e330412: server: use node_modules React for Pages and prebundled for App
v1.3.1
Changes
- 4bd2009: server: support ArrayBuffer response
v1.3.0
Support for Server Warming
In short, you can keep 50 server functions active for $0.96/month.
The open-next build
now creates a warmer-function
bundle inside the .open-next
directory. By hooking this function to an EventBridge scheduler, your server function can be kept warm and avoid cold starts.
Read more about how warming works and the associated cost
Changes
- d03a8c5: Add ability to warm server function
v1.2.1
Changes
- 54ce502: Set
__NEXT_PRIVATE_PREBUNDLED_REACT
to use prebundled React
v1.2.0
Geolocation support
You can now access detailed geolocation information about the user inside your middleware.
export function middleware(request: NextRequest) {
request.geo.country;
request.geo.city;
request.geo.timeZone;
});
Read more about it
Changes
- 935544a: Add support for NextRequest geolocation
- 0a4b952: Store public file posix path on Windows
v1.1.0
Changes
- 7fb6116: Add option to minimize server bundle size
- 43d2370: Set "x-forwarded-host" as NextServer "host"
- fe6740b: Example: add NextAuth example
v1.0.0
Changes
- a7a279a: Document deployment options
- aaf4e71: Fix server function handler import path building on Windows
v0.9.3
Changes
- a574834: Support API Gateway REST API event
- 81dbb69: Support Next.js apps without "public" folder