Skip to content

Commit

Permalink
Merge commit '9f50631f997e8642d1573ce0389b2a2189530050' into release-…
Browse files Browse the repository at this point in the history
…v0.10.x
  • Loading branch information
github-actions[bot] committed Nov 29, 2021
2 parents be7851d + 9f50631 commit 2d3a2cf
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.10.2 (November 29, 2021)

Bugfix release that ensures compatibility with the `v12.0.0` version of the [Terraform Next.js Image Optimization module for AWS](https://github.com/milliHQ/terraform-aws-next-js-image-optimization).

- `create_image_optimization` breaks because of breaking change in the newest 12.0.0 release ([#243](https://github.com/milliHQ/terraform-aws-next-js/issues/243), [#244](https://github.com/milliHQ/terraform-aws-next-js/pull/244))

## 0.10.1 (October 23, 2021)

This release ensures that static generated routes with dynamic parts (e.g. `/test/[...slug]`) are invalidated correctly when running terraform apply.
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ locals {
_cloudfront_origins = {
static_content = merge(local.cloudfront_origin_static_content, { create = true })
next_image = merge(
var.create_image_optimization ? module.next_image[0].cloudfront_origin_image_optimizer : null, {
var.create_image_optimization ? module.next_image[0].cloudfront_origin : null, {
create = var.create_image_optimization
})
}
Expand Down
2 changes: 1 addition & 1 deletion modules/proxy/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

variable "proxy_module_version" {
type = string
default = "0.10.1"
default = "0.10.2"
}

variable "lambda_default_runtime" {
Expand Down
2 changes: 1 addition & 1 deletion modules/statics-deploy/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ variable "static_files_archive" {

variable "deploy_trigger_module_version" {
type = string
default = "0.10.1"
default = "0.10.2"
}

variable "expire_static_assets" {
Expand Down

0 comments on commit 2d3a2cf

Please sign in to comment.