Skip to content

Commit 1f246eb

Browse files
committedJan 29, 2022
Merge commit 'c88afde432cb393a02f468d4c06b62817a9b3041' into release
2 parents eda842d + c88afde commit 1f246eb

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed
 

‎CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [Unreleased]
44

5+
## [12.0.6] - 2022-01-29
6+
7+
- Bump node-fetch from 2.6.6 to 2.6.7 ([#106](https://github.com/milliHQ/terraform-aws-next-js-image-optimization/pull/106))
8+
- Uses Image Optimizer module of [Next.js 12.0.6](https://github.com/vercel/next.js/releases/tag/v12.0.6) ([#103](https://github.com/milliHQ/terraform-aws-next-js-image-optimization/pull/103))
9+
510
## [12.0.5] - 2022-01-22
611

712
- Uses Image Optimizer module of [Next.js 12.0.5](https://github.com/vercel/next.js/releases/tag/v12.0.5) ([#96](https://github.com/milliHQ/terraform-aws-next-js-image-optimization/pull/96))

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Then rebuild and redeploy your Next.js application to make use of the changed co
140140
| next\_image\_domains | Allowed origin domains that can be used for fetching images. | `list(string)` | `[]` | no |
141141
| next\_image\_formats | If the Accept head matches more than one of the configured formats, the first match in the array is used. Therefore, the array order matters. If there is no match, the Image Optimization API will fallback to the original image's format. | `list(string)` | <pre>[<br> "image/webp"<br>]</pre> | no |
142142
| next\_image\_image\_sizes | Allowed image sizes that should be used for image optimization. | `list(number)` | `null` | no |
143-
| next\_image\_version | Next.js version from where you want to use the image optimizer from. Supports semver ranges. | `string` | `"12.0.5"` | no |
143+
| next\_image\_version | Next.js version from where you want to use the image optimizer from. Supports semver ranges. | `string` | `"12.0.6"` | no |
144144
| source\_bucket\_id | When your static files are deployed to a Bucket (e.g. with Terraform Next.js) the optimizer can pull the source from the bucket rather than over the internet. | `string` | `null` | no |
145145
| tags | Tag metadata to label AWS resources that support tags. | `map(string)` | `{}` | no |
146146

‎variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
variable "next_image_version" {
55
description = "Next.js version from where you want to use the image optimizer from. Supports semver ranges."
66
type = string
7-
default = "12.0.5"
7+
default = "12.0.6"
88
}
99

1010
variable "next_image_base_origin" {

0 commit comments

Comments
 (0)