Skip to content

Releases: opennextjs/opennextjs-aws

v1.3.6

26 May 19:14
7f085fa
Compare
Choose a tag to compare

Changes

  • 33460c3: server: Fix react dependencies resolution

v1.3.5

24 May 13:02
b687b16
Compare
Choose a tag to compare

Changes

  • 19d9f95: server: use require() to resolve next/package.json

v1.3.4

24 May 01:09
1b9a136
Compare
Choose a tag to compare

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

Changes

  • c353984: server: handle duplicate API Gateway REST API query string

v1.3.2

22 May 22:09
f5ab15b
Compare
Choose a tag to compare

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
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