Skip to content

Releases: RJPearson94/terraform-aws-open-next

v3.6.0

24 May 17:19
Compare
Choose a tag to compare

What's Changed

Thanks to @heftyzauk for addressing this issue

Full Changelog: v3.5.1...v3.6.0

v3.5.1

21 Apr 23:18
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.5.0...v3.5.1

v3.5.0

27 Mar 23:52
Compare
Choose a tag to compare

What's Changed

  • feat: ensure lambda_iam role name work when they exceed 64 characters by @jamesone in #56
  • feat: ensure bucket name work when they exceed 64 characters
  • feat: ensure sqs queue name work when they exceed 80 characters

New Contributors

Full Changelog: v3.4.2...v3.5.0

v3.4.2

22 Mar 18:43
Compare
Choose a tag to compare

fix: update BUCKET_KEY_PREFIX to use origin_asset_path for correct image reference
This ensures that the module follows the expected behavior outlined for the image module https://nextjs.org/docs/api-reference/next.config.js/basepath#images (This may be a breaking change for some use cases however, it now follows the expected next.js behavior)

Full Changelog: v3.4.1...v3.4.2

v3.4.1

22 Mar 11:25
Compare
Choose a tag to compare

What's Changed

  • Fix missing auth lambda create, update and delete timeouts by @Maddog2050 in #52

Full Changelog: v3.4.0...v3.4.1

v3.4.0

09 Mar 21:05
Compare
Choose a tag to compare

What's Changed

  • fix: custom_headers_config for_each check by @Maddog2050 in #47
  • fix: Sigv4 mismatch with query params by @Maddog2050 in #48
  • feat: add the ability to configure x-ray tracing for functions

A massive thank you to @Maddog2050 for both of these PRs. It is greatly appreciated.

Full Changelog: v3.3.0...v3.4.0

v3.3.0

18 Feb 00:12
Compare
Choose a tag to compare

What's Changed

  • fix: correct URI handling in auth lambda for proper request path formation by @Maddog2050 in #43
  • feat: Add feature to enable the use of CloudFront response headers by @Maddog2050 in #41

A massive thank you to @Maddog2050 for both of these PRs. It is greatly appreciated.

Full Changelog: v3.2.0...v3.3.0

v3.2.0

08 Feb 17:05
Compare
Choose a tag to compare

Add origin timeout settings and brotli and gzip support for CloudFront configurations

To globally configure origin timeouts, you can use the following

origin_timeouts = {
    keepalive_timeout = 60
    read_timeout = 60
    connection_attempts = 3
    connection_timeout = 10
}

This can be overridden per function.

To enable brotli and gzip support, you can use the following

distribution = {
    cache_policy = {
      enable_accept_encoding_brotli = true
      enable_accept_encoding_gzip = true
    }
}

Full Changelog: v3.1.0...v3.2.0

v3.1.0

19 Nov 15:27
Compare
Choose a tag to compare

feat: add the ability to configure lambda layers on server functions, warmer, revalidation, and image optimization.

Set the default lambda runtime to node 20 for edge functions

v3.0.3

11 Oct 17:27
Compare
Choose a tag to compare

What's Changed

  • Fix revalidation_function reporting a state change by @Maddog2050 in #36
  • Move s3 assets below server functions and additional origin. The default route has been configured to remain the last route in each zone. This fixes issue #37

New Contributors

Full Changelog: v3.0.2...v3.0.3