Skip to content

Commit f657fb5

Browse files
merge commit
2 parents b6f35f6 + 215a063 commit f657fb5

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.github/dependabot.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Reenable dependabot after repo transfer
2+
# https://github.com/dependabot/dependabot-core/issues/1923
13
version: 2
24
updates:
35
- package-ecosystem: 'npm'

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 11.1.1 (September 02, 2021)
4+
5+
The upgrade to Next.js 11.1.1 fixes a potential vulnerability which allowed an XSS-attack.
6+
For more information see the [Security Advisory](https://github.com/vercel/next.js/security/advisories/GHSA-9gr3-7897-pp7m).
7+
8+
- Uses Image Optimizer module of [Next.js 11.1.1](https://github.com/vercel/next.js/releases/tag/v11.1.1) ([#64](https://github.com/milliHQ/terraform-aws-next-js-image-optimization/pull/64))
9+
310
## 11.1.0 (August 30, 2021)
411

512
⚠️ **Namespace changed** ⚠️

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Then rebuild and redeploy your Next.js application to make use of the changed co
152152
| next\_image\_device\_sizes | Allowed device sizes that should be used for image optimization. | `list(number)` | `null` | no |
153153
| next\_image\_domains | Allowed origin domains that can be used for fetching images. | `list(string)` | `[]` | no |
154154
| next\_image\_image\_sizes | Allowed image sizes that should be used for image optimization. | `list(number)` | `null` | no |
155-
| next\_image\_version | Next.js version from where you want to use the image optimizer from. Supports semver ranges. | `string` | `"11.1.0"` | no |
155+
| next\_image\_version | Next.js version from where you want to use the image optimizer from. Supports semver ranges. | `string` | `"11.1.1"` | no |
156156
| 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 |
157157
| tags | Tag metadata to label AWS resources that support tags. | `map(string)` | `{}` | no |
158158

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 = "11.1.0"
7+
default = "11.1.1"
88
}
99

1010
variable "next_image_domains" {

0 commit comments

Comments
 (0)