opennextjs-aws

Open-source Next.js adapter for AWS

MIT License

Stars
3.9K

Bot releases are visible (Hide)

opennextjs-aws - v1.4.0

Published by github-actions[bot] over 1 year ago

Changes

  • 2df80cc: Support invoking OpenNext programmatically
  • 194b389: Print Next.js version in build log
  • ef30f3c: Allow custom build command
  • 34b5298: Export dist folder
opennextjs-aws - v1.3.8

Published by github-actions[bot] over 1 year ago

Changes

  • e16aff7: npm publish root directory
opennextjs-aws - v1.3.7

Published by github-actions[bot] over 1 year ago

Changes

  • 2c2f6b9: server: fix react resolution for group routes
opennextjs-aws - v1.3.6

Published by github-actions[bot] over 1 year ago

Changes

  • 33460c3: server: Fix react dependencies resolution
opennextjs-aws - v1.3.5

Published by github-actions[bot] over 1 year ago

Changes

  • 19d9f95: server: use require() to resolve next/package.json
opennextjs-aws - v1.3.4

Published by github-actions[bot] over 1 year ago

Changes

  • 7a4b8d0: warmer: use debugger for logging
  • 33dab58: server: do not override default alias for older Next.js versions
opennextjs-aws - v1.3.3

Published by github-actions[bot] over 1 year ago

Changes

  • c353984: server: handle duplicate API Gateway REST API query string
opennextjs-aws - v1.3.2

Published by github-actions[bot] over 1 year ago

Changes

  • b701d51: server: handle API Gateway REST API event without multiValueHeaders
  • e330412: server: use node_modules React for Pages and prebundled for App
opennextjs-aws - v1.3.1

Published by github-actions[bot] over 1 year ago

Changes

  • 4bd2009: server: support ArrayBuffer response
opennextjs-aws - v1.3.0

Published by github-actions[bot] over 1 year ago

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
opennextjs-aws - v1.2.1

Published by github-actions[bot] over 1 year ago

Changes

  • 54ce502: Set __NEXT_PRIVATE_PREBUNDLED_REACT to use prebundled React
opennextjs-aws - v1.2.0

Published by github-actions[bot] over 1 year ago

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
opennextjs-aws - v1.1.0

Published by github-actions[bot] over 1 year ago

Changes

  • 7fb6116: Add option to minimize server bundle size
  • 43d2370: Set "x-forwarded-host" as NextServer "host"
  • fe6740b: Example: add NextAuth example
opennextjs-aws - v1.0.0

Published by github-actions[bot] over 1 year ago

Changes

  • a7a279a: Document deployment options
  • aaf4e71: Fix server function handler import path building on Windows
opennextjs-aws - v0.9.3

Published by github-actions[bot] over 1 year ago

Changes

  • a574834: Support API Gateway REST API event
  • 81dbb69: Support Next.js apps without "public" folder
opennextjs-aws - v0.9.2

Published by github-actions[bot] over 1 year ago

Changes

  • ea0ab0c: Fix requesting public files returns 404
  • 0f56b91: Add strict checking to detect public file request
opennextjs-aws - v0.9.1

Published by github-actions[bot] over 1 year ago

Changes

  • 0dadccb: Set default NODE_ENV to production
opennextjs-aws - v0.9.0

Published by github-actions[bot] over 1 year ago

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'"
opennextjs-aws - v0.8.2

Published by github-actions[bot] over 1 year ago

Changes

  • e5b5204: Handle next build error
opennextjs-aws - v0.8.1

Published by github-actions[bot] over 1 year ago

Patch Changes

  • bdd29d1: Fix spawn error on Windows
Related Projects