Skip to content

Releases: opennextjs/opennextjs-aws

v1.3.1

18 May 22:08
322c44f
Compare
Choose a tag to compare

Changes

  • 4bd2009: server: support ArrayBuffer response

v1.3.0

17 May 17:27
669f7f3
Compare
Choose a tag to compare

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
b737de5
Compare
Choose a tag to compare

Changes

  • 54ce502: Set __NEXT_PRIVATE_PREBUNDLED_REACT to use prebundled React

v1.2.0

04 May 18:21
2085dac
Compare
Choose a tag to compare

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
292ab48
Compare
Choose a tag to compare

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
c140daf
Compare
Choose a tag to compare

Changes

  • a7a279a: Document deployment options
  • aaf4e71: Fix server function handler import path building on Windows

v0.9.3

12 Apr 19:20
fce3edf
Compare
Choose a tag to compare

Changes

  • a574834: Support API Gateway REST API event
  • 81dbb69: Support Next.js apps without "public" folder

v0.9.2

12 Apr 16:33
220dd1e
Compare
Choose a tag to compare

Changes

  • ea0ab0c: Fix requesting public files returns 404
  • 0f56b91: Add strict checking to detect public file request

v0.9.1

12 Apr 14:58
58aaaed
Compare
Choose a tag to compare

Changes

  • 0dadccb: Set default NODE_ENV to production

v0.9.0

11 Apr 21:00
db0cbb3
Compare
Choose a tag to compare

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.

Changes

  • 787c1b2: Support Next.js 404 pages
  • 6395849: Fix "Cannot find package 'next'"