Skip to content

Releases: sst/open-next

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

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