Releases: RJPearson94/terraform-aws-open-next
v3.6.0
What's Changed
- Allow configuring of realtime_log_config by @heftyzauk in #62
Thanks to @heftyzauk for addressing this issue
Full Changelog: v3.5.1...v3.6.0
v3.5.1
v3.5.0
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
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
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
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
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
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
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
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
- @Maddog2050 made their first contribution in #36.
Full Changelog: v3.0.2...v3.0.3