Skip to content

Commit

Permalink
Merge commit 'f1bb416b7da6b350abe9865ce2699bbbf2086de1' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 15, 2022
2 parents fae24ad + f1bb416 commit e57c42d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,3 @@ jobs:

- name: Publish packages
run: ./scripts/publish-release.sh
continue-on-error: true

- name: Save npm logs
uses: actions/upload-artifact@v2
with:
name: npm-logs
path: /home/runner/.npm/_logs/
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [0.11.1] - 2022-01-15

### Fixed

- Fix for cloudfront invalidation dynamic routing paths ([#258](https://github.com/milliHQ/terraform-aws-next-js/pull/258))

## [0.11.0] - 2022-01-13

### Added
Expand All @@ -10,11 +16,11 @@

### Changed

- TTL for `Cache-Control` header is set to `0` (no cache) when the header is not sent from origin ([#241](https://github.com/milliHQ/terraform-aws-next-js/pull/241), [#236](https://github.com/milliHQ/terraform-aws-next-js/issues/236), [#254](https://github.com/milliHQ/terraform-aws-next-js/pull/254))
- TTL for `Cache-Control` header is set to `0` (no cache) when the header is not sent from origin ([#241](https://github.com/milliHQ/terraform-aws-next-js/pull/241), [#236](https://github.com/milliHQ/terraform-aws-next-js/issues/236))

### Fixed

- Static routes were falsely generated when running on Windows ([#246](https://github.com/milliHQ/terraform-aws-next-js/issues/246))
- Static routes were falsely generated when running on Windows ([#246](https://github.com/milliHQ/terraform-aws-next-js/issues/246), [#254](https://github.com/milliHQ/terraform-aws-next-js/pull/254))

## [0.10.2] (November 29, 2021)

Expand Down
2 changes: 1 addition & 1 deletion modules/proxy/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

variable "proxy_module_version" {
type = string
default = "0.11.0"
default = "0.11.1"
}

variable "lambda_default_runtime" {
Expand Down
2 changes: 1 addition & 1 deletion modules/statics-deploy/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ variable "static_files_archive" {

variable "deploy_trigger_module_version" {
type = string
default = "0.11.0"
default = "0.11.1"
}

variable "expire_static_assets" {
Expand Down
1 change: 1 addition & 0 deletions scripts/publish-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ if [[ -z "$NPM_TOKEN" ]];then
exit 0;
fi

echo "registry=https://registry.npmjs.org/" >> ~/.npmrc
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc

if [[ $(git describe --exact-match 2> /dev/null || :) =~ "packages-v" ]];then
Expand Down

0 comments on commit e57c42d

Please sign in to comment.