Skip to content

Releases: opennextjs/opennextjs-aws

v3.2.1

31 Oct 09:39
467172b
Compare
Choose a tag to compare

Changes

v3.2.0

25 Oct 15:41
c8f6026
Compare
Choose a tag to compare

Breaking Changes

  • For people importing from OpenNext in their custom wrapper, all the overrides can now be found under @opennextjs/aws/overrides
  • There is a new install option available for every function in your open-next.config.ts including the image optimization function. For image optimization it replace the old arch option with the new install options. Here is an example to install sharp for x64 :
imageOptimization: {
  install: {
    packages: ["[email protected]"],
    arch: "x64"
  }
},

Changes

v3.1.6

15 Oct 21:55
5d03b5d
Compare
Choose a tag to compare

Changes

  • ad513ef - remove extra binary in bin specification

v3.1.5

15 Oct 15:57
7bcb7b7
Compare
Choose a tag to compare

Changes

v3.1.4

08 Oct 11:25
be9afda
Compare
Choose a tag to compare

Changes

  • b5bfb5d: Fix response binary content handling - Thanks Adrien Lacroix
  • 6b894df: lazily initialize lite client
  • 8b576d9: fix content-length incorrectly set in proxyRequest - Thanks Matthew Benton
  • 9fceedb: fix: fix basePath support for API routes - Thanks Soc Sieng
  • 5cdbc9f: Update vulnerable path-to-regexp dependency - Thanks Nathan Hardy
  • 50703a3:
    • Fix cloudflare env
    • Fix an issue with cookies and the node wrapper
    • Fix some issue with cookies being not properly set when set both in the routing layer and the route itself
    • Added option for headers priority

v3.1.3

22 Sep 18:56
388b4e7
Compare
Choose a tag to compare

Changes

  • 4ec9265: fix middleware and headers matcher not working properly with i18n
  • 4894974: Improve config validation
  • 55a6bcc: fix incremental cache for next 15

v3.1.2

05 Sep 14:50
f38372e
Compare
Choose a tag to compare

Changes

  • 1b87222: patch asyncStorage for ISR and fetch
  • a7540fd: fix wrong locale in middleware
  • b8bd2f0: fix __import_unsupported being undefined

v3.1.1

26 Aug 17:39
92432af
Compare
Choose a tag to compare

Changes

  • 85af1ce: Fix node crashing when used without stream
  • 2094c9b: fix issue with fetch cache for new page

v3.1.0

22 Aug 09:41
7886117
Compare
Choose a tag to compare

Breaking Change

  • If you use a custom converter or custom wrapper InternalResult body is now a ReadableStream instead of a string
  • External middleware when used with the new enableCacheInterception will need to have the correct permission (and environment variable) to access the incremental and tag cache as well as the queue (By default S3, DynamoDb, SQS )

Changes

  • b88ae13: Replace InternalResult body from string to ReadableStream
  • 0558bf6: Add an optional external cache. More info here
  • c8d692b: fix missing polyfill URLPattern
  • 1b91708: fix 404 when basePath is set
  • 8ddb621: fix lambda streaming hanging after return

v3.0.8

20 Jul 09:03
780bbc9
Compare
Choose a tag to compare

Changes