Skip to content

Commit

Permalink
merge commit
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 5, 2021
2 parents e4e297d + 05da597 commit 419f41d
Show file tree
Hide file tree
Showing 544 changed files with 39 additions and 64,354 deletions.
40 changes: 39 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,44 @@
# Changelog

## 0.8.0 - Unreleased
## 0.8.0 - (April 05, 2021)

This release enables Brotli in addition to gzip as default compression method.

**⚠️ Breaking Changes ⚠️**

Before upgrading make sure that you define a new alias `global_region` for the AWS Provider in the `us-east-1` region.
This provider alias is used to create the Lambda@Edge function that must be created in `us-east-1`.

```diff
# main.tf
provider "aws" {
region = "us-west-2"
}

+ provider "aws" {
+ alias = "global_region"
+ region = "us-east-1"
+ }

module "tf_next" {
source = "dealmore/next-js/aws"

+ providers = {
+ aws.global_region = aws.global_region
+ }
}
```

### Terraform module

- Removes internal AWS provider for `us-east-1` region ([#50](https://github.com/dealmore/terraform-aws-next-js/issues/50), [#101](https://github.com/dealmore/terraform-aws-next-js/pull/101))
- Enable Brotli compression for CloudFront ([#8](https://github.com/dealmore/terraform-aws-next-js/issues/8), [#82](https://github.com/dealmore/terraform-aws-next-js/pull/82))
- Adds `cloudfront_geo_restriction` variable ([#97](https://github.com/dealmore/terraform-aws-next-js/pull/97))
- Use `nodejs14.x` as default runtime for Lambda ([#67](https://github.com/dealmore/terraform-aws-next-js/pull/67), [#80](https://github.com/dealmore/terraform-aws-next-js/issues/80), [#81](https://github.com/dealmore/terraform-aws-next-js/pull/81))

### Deploy trigger (0.3.0)

- CloudFront invalidations for static files (e.g. static prerendered HTML or files from `public/`) are only issues if the eTag of the file changes ([#48](https://github.com/dealmore/terraform-aws-next-js/issues/48), [#91](https://github.com/dealmore/terraform-aws-next-js/pull/91))

### tf-next (0.6.1)

Expand Down
36 changes: 0 additions & 36 deletions package.json

This file was deleted.

36 changes: 0 additions & 36 deletions packages/deploy-trigger/package.json

This file was deleted.

103 changes: 0 additions & 103 deletions packages/deploy-trigger/src/__test__/deploy-trigger.test.ts

This file was deleted.

131 changes: 0 additions & 131 deletions packages/deploy-trigger/src/__test__/get-or-create-manifest.test.ts

This file was deleted.

Loading

0 comments on commit 419f41d

Please sign in to comment.