Skip to content

Commit 575cc29

Browse files
committed
v0.10.1
1 parent 2c88646 commit 575cc29

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.10.1 (October 23, 2021)
4+
5+
This release ensures that static generated routes with dynamic parts (e.g. `/test/[...slug]`) are invalidated correctly when running terraform apply.
6+
We also added a new option to define tags exclusively on S3 buckets created by this module.
7+
8+
- Ensure correct invalidation for slug paths ([#140](https://github.com/milliHQ/terraform-aws-next-js/issues/140), [#229](https://github.com/milliHQ/terraform-aws-next-js/pull/229), [#228](https://github.com/milliHQ/terraform-aws-next-js/issues/228))
9+
- Adds new input variable `tags_s3_bucket` ([#216](https://github.com/milliHQ/terraform-aws-next-js/issues/216), [#230](https://github.com/milliHQ/terraform-aws-next-js/pull/230))
10+
311
## 0.10.0 (October 16, 2021)
412

513
Beginning with this release we streamline the versioning of the Terraform module with its npm-packages.

modules/proxy/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
variable "proxy_module_version" {
66
type = string
7-
default = "0.10.0"
7+
default = "0.10.1"
88
}
99

1010
variable "lambda_default_runtime" {

modules/statics-deploy/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ variable "static_files_archive" {
44

55
variable "deploy_trigger_module_version" {
66
type = string
7-
default = "0.10.0"
7+
default = "0.10.1"
88
}
99

1010
variable "expire_static_assets" {

packages/deploy-trigger/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@millihq/terraform-next-deploy-trigger",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "Deploy trigger component of Terraform Next.js module for AWS",
55
"main": "index.js",
66
"license": "Apache-2.0",

packages/proxy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@millihq/terraform-next-proxy",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "Proxy component of Terraform Next.js module for AWS",
55
"main": "index.js",
66
"license": "Apache-2.0",

packages/runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@millihq/tf-next-runtime",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"license": "Apache-2.0",
55
"main": "./dist/index",
66
"homepage": "https://registry.terraform.io/modules/milliHQ/next-js/aws",

packages/tf-next/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tf-next",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "CLI build tool for AWS Next.js Terraform module.",
55
"homepage": "https://registry.terraform.io/modules/milliHQ/next-js/aws",
66
"main": "index.js",
@@ -19,7 +19,7 @@
1919
"postpack": "rm ./LICENSE"
2020
},
2121
"dependencies": {
22-
"@millihq/tf-next-runtime": "0.10.0",
22+
"@millihq/tf-next-runtime": "0.10.1",
2323
"@vercel/build-utils": "2.10.1",
2424
"@vercel/frameworks": "^0.0.15",
2525
"@vercel/routing-utils": "^1.10.1",

0 commit comments

Comments
 (0)