Releases: opennextjs/opennextjs-aws
v1.3.1
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
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;
});
Changes
v1.1.0
v1.0.0
v0.9.3
v0.9.2
v0.9.1
v0.9.0
404 Page Support
The server function now has the capability to serve out 404 pages in both regional and edge mode.
In this release, we have implemented significant improvements in the way the server function handles requests for 404 pages and requests for files in your /public
folder. These requests had to be handled differently depending on whether the server function is deployed as regional or edge. Read more about it here.