Releases: opennextjs/opennextjs-aws
Releases · opennextjs/opennextjs-aws
v1.3.5
24 May 13:02
Compare
Sorry, something went wrong.
No results found
Changes
19d9f95 : server: use require() to resolve next/package.json
v1.3.4
24 May 01:09
Compare
Sorry, something went wrong.
No results found
Changes
7a4b8d0 : warmer: use debugger for logging
33dab58 : server: do not override default alias for older Next.js versions
v1.3.3
23 May 03:03
Compare
Sorry, something went wrong.
No results found
Changes
c353984 : server: handle duplicate API Gateway REST API query string
v1.3.2
22 May 22:09
Compare
Sorry, something went wrong.
No results found
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
18 May 22:08
Compare
Sorry, something went wrong.
No results found
Changes
4bd2009 : server: support ArrayBuffer response
v1.3.0
17 May 17:27
Compare
Sorry, something went wrong.
No results found
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
05 May 20:04
Compare
Sorry, something went wrong.
No results found
Changes
54ce502 : Set __NEXT_PRIVATE_PREBUNDLED_REACT to use prebundled React
v1.2.0
04 May 18:21
Compare
Sorry, something went wrong.
No results found
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
22 Apr 05:40
Compare
Sorry, something went wrong.
No results found
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
17 Apr 18:03
Compare
Sorry, something went wrong.
No results found
Changes
a7a279a : Document deployment options
aaf4e71 : Fix server function handler import path building on Windows