Skip to content

Commit

Permalink
Merge commit 'e1b28dd15f5ddba6fd919f88d6c64f32b6b18276' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 7, 2022
2 parents c0a605d + e1b28dd commit bad1685
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [1.0.0-canary.4] - 2022-06-07

- Correctly increase version number of new packages

## [1.0.0-canary.3] - 2022-06-07

- Fixes deployments without Lambdas ([#325](https://github.com/milliHQ/terraform-aws-next-js/pull/325))
Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ module "cloudfront_cert" {
module "tf_next" {
source = "milliHQ/next-js/aws"
version = "1.0.0-canary.2"
version = "1.0.0-canary.3"
cloudfront_aliases = local.aliases
cloudfront_acm_certificate_arn = module.cloudfront_cert.acm_certificate_arn
Expand All @@ -169,10 +169,6 @@ module "tf_next" {
providers = {
aws.global_region = aws.global_region
}
# Uncomment when using in the cloned monorepo for tf-next development
# source = "../.."
debug_use_local_packages = true
}
#########
Expand Down
2 changes: 1 addition & 1 deletion examples/atomic-deployments/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ module "tf_next" {

# Uncomment when using in the cloned monorepo for tf-next development
# source = "../.."
debug_use_local_packages = true
# debug_use_local_packages = true
}

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

variable "api_component_version" {
type = string
default = "0.12.2"
default = "1.0.0-canary.4"
}

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

variable "proxy_config_module_version" {
type = string
default = "0.12.2"
default = "1.0.0-canary.4"
}

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

variable "deploy_controller_component_version" {
type = string
default = "0.12.2"
default = "1.0.0-canary.4"
}

#####################
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 = "1.0.0-canary.3"
default = "1.0.0-canary.4"
}

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
@@ -1,6 +1,6 @@
variable "deploy_trigger_module_version" {
type = string
default = "1.0.0-canary.3"
default = "1.0.0-canary.4"
}

variable "cloudfront_id" {
Expand Down

0 comments on commit bad1685

Please sign in to comment.