Skip to content

Commit ea7fde5

Browse files
committed
v0.10.0
1 parent 0711857 commit ea7fde5

File tree

7 files changed

+19
-7
lines changed

7 files changed

+19
-7
lines changed

CHANGELOG.md

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

3+
## 0.10.0 (October 16, 2021)
4+
5+
Beginning with this release we streamline the versioning of the Terraform module with its npm-packages.
6+
So when you use the Terraform module in version [`0.10.0`](https://registry.terraform.io/modules/milliHQ/next-js/aws/) you should also use the [`tf-next@0.10.0`](https://www.npmjs.com/package/tf-next) npm-package for building the Next.js project.
7+
8+
This release also increases the minimum required Terraform version from `0.13` to `0.15`.
9+
10+
- Forward correct `host` header to server-side rendered pages ([#156](https://github.com/milliHQ/terraform-aws-next-js/issues/156), [#161](https://github.com/milliHQ/terraform-aws-next-js/pull/161))
11+
- Adds charset to `Content-Type` header for static routes and files served by S3 ([#214](https://github.com/milliHQ/terraform-aws-next-js/issues/214), [#226](https://github.com/milliHQ/terraform-aws-next-js/pull/226))
12+
- Removes empty provider warning when running Terraform commands ([#155](https://github.com/milliHQ/terraform-aws-next-js/issues/155), [#219](https://github.com/milliHQ/terraform-aws-next-js/pull/219))
13+
- Removes random ids from resource names ([#212](https://github.com/milliHQ/terraform-aws-next-js/issues/212), [#227](https://github.com/milliHQ/terraform-aws-next-js/pull/227))
14+
315
## 0.9.3 (October 09, 2021)
416

517
This release fixes the routing behavior for dynamic routes that are statically generated (served from S3).

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.9.3"
7+
default = "0.10.0"
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.9.3"
7+
default = "0.10.0"
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.9.3",
3+
"version": "0.10.0",
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.9.3",
3+
"version": "0.10.0",
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.9.3",
3+
"version": "0.10.0",
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.9.3",
3+
"version": "0.10.0",
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.9.3",
22+
"@millihq/tf-next-runtime": "0.10.0",
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)