Skip to content

Commit e6f889b

Browse files
committed
v0.5.0
1 parent 05b125e commit e6f889b

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## 0.5.0 (January 03, 2021)
4+
5+
Happy New Year! 🍾
6+
With this release we bring native support for [redirects](https://nextjs.org/docs/api-reference/next.config.js/redirects) in Next.js.
7+
8+
### Proxy (0.3.0)
9+
10+
- Adds ability to handle redirects ([#10](https://github.com/dealmore/terraform-aws-next-js/issues/10), [#24](https://github.com/dealmore/terraform-aws-next-js/pull/24)).
11+
12+
### tf-next (0.3.0)
13+
14+
- The build tool got a new name, now it is simply `tf-next` instead of `@dealmore/terraform-next-build`.
15+
For backwards compatibility we plan to release new versions to both the old and the new package name until v1.0.
16+
17+
- When running `tf-next build` we now filter out routes with the prefix `_next/static/*` since they are handled directly by CloudFront and will never hit the Proxy.
18+
319
## 0.4.0 (December 30, 2020)
420

521
- Adds [new example](https://github.com/dealmore/terraform-aws-next-js/blob/main/examples/custom-domain) how to use custom domains.

packages/proxy/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Terraform Next.js Proxy module
1+
# Terraform Next.js Proxy component
22

3-
Proxy module for [AWS Next.js Terraform module](https://github.com/dealmore/terraform-aws-next-js).
3+
Proxy component of [Terraform Next.js module for AWS](https://github.com/dealmore/terraform-aws-next-js).
44

55
## License
66

packages/tf-next/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Terraform Next Build
22

3-
CLI build tool for [AWS Next.js Terraform module](https://github.com/dealmore/terraform-aws-next-js).
3+
CLI build tool for [Terraform Next.js module for AWS](https://github.com/dealmore/terraform-aws-next-js).
44

55
## Usage
66

packages/tf-next/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "tf-next",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "CLI build tool for AWS Next.js Terraform module.",
55
"homepage": "https://registry.terraform.io/modules/dealmore/next-js/aws",
66
"main": "index.js",
77
"license": "Apache-2.0",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/dealmore/terraform-next.js.git",
10+
"url": "https://github.com/dealmore/terraform-aws-next-js.git",
1111
"directory": "packages/tf-next"
1212
},
1313
"bin": {

0 commit comments

Comments
 (0)