Skip to content

Commit bad1685

Browse files
Merge commit 'e1b28dd15f5ddba6fd919f88d6c64f32b6b18276' into release
2 parents c0a605d + e1b28dd commit bad1685

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
## [1.0.0-canary.4] - 2022-06-07
6+
7+
- Correctly increase version number of new packages
8+
59
## [1.0.0-canary.3] - 2022-06-07
610

711
- Fixes deployments without Lambdas ([#325](https://github.com/milliHQ/terraform-aws-next-js/pull/325))

README.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ module "cloudfront_cert" {
156156
157157
module "tf_next" {
158158
source = "milliHQ/next-js/aws"
159-
version = "1.0.0-canary.2"
159+
version = "1.0.0-canary.3"
160160
161161
cloudfront_aliases = local.aliases
162162
cloudfront_acm_certificate_arn = module.cloudfront_cert.acm_certificate_arn
@@ -169,10 +169,6 @@ module "tf_next" {
169169
providers = {
170170
aws.global_region = aws.global_region
171171
}
172-
173-
# Uncomment when using in the cloned monorepo for tf-next development
174-
# source = "../.."
175-
debug_use_local_packages = true
176172
}
177173
178174
#########

examples/atomic-deployments/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ module "tf_next" {
119119

120120
# Uncomment when using in the cloned monorepo for tf-next development
121121
# source = "../.."
122-
debug_use_local_packages = true
122+
# debug_use_local_packages = true
123123
}
124124

125125
#########

modules/api/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ variable "tf_next_module_root" {
44

55
variable "api_component_version" {
66
type = string
7-
default = "0.12.2"
7+
default = "1.0.0-canary.4"
88
}
99

1010
##########

modules/cloudfront-proxy-config/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
variable "proxy_config_module_version" {
66
type = string
7-
default = "0.12.2"
7+
default = "1.0.0-canary.4"
88
}
99

1010
variable "lambda_runtime" {

modules/deploy-controller/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ variable "tf_next_module_root" {
44

55
variable "deploy_controller_component_version" {
66
type = string
7-
default = "0.12.2"
7+
default = "1.0.0-canary.4"
88
}
99

1010
#####################

modules/proxy/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
variable "proxy_module_version" {
66
type = string
7-
default = "1.0.0-canary.3"
7+
default = "1.0.0-canary.4"
88
}
99

1010
variable "lambda_default_runtime" {

modules/statics-deploy/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
variable "deploy_trigger_module_version" {
22
type = string
3-
default = "1.0.0-canary.3"
3+
default = "1.0.0-canary.4"
44
}
55

66
variable "cloudfront_id" {

0 commit comments

Comments
 (0)