Skip to content

Commit e6df4f2

Browse files
committed
v1.0.0-canary.4
1 parent 862260f commit e6df4f2

File tree

16 files changed

+23
-21
lines changed

16 files changed

+23
-21
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [1.0.0-canary.4] - 2022-06-07
6+
57
- Correctly increase version number of new packages
68

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

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 = "1.0.0-canary.3"
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 = "1.0.0-canary.3"
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 = "1.0.0-canary.3"
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" {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dealmore/terraform-aws-nextjs-ws",
3-
"version": "1.0.0-canary.3",
3+
"version": "1.0.0-canary.4",
44
"private": true,
55
"license": "Apache-2.0",
66
"workspaces": [

packages/api/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "@millihq/terraform-next-api",
3-
"version": "1.0.0-canary.3",
3+
"version": "1.0.0-canary.4",
44
"scripts": {
55
"generate:schema": "openapi-typescript schema.yaml --output schema.ts --prettier-config ../../.prettier.config.js",
66
"build": "ncc-zip build -f handler --license third-party-licenses.txt src/handler.ts",
77
"prepack": "cp dist/third-party-licenses.txt ../../LICENSE ./",
88
"postpack": "rm ./LICENSE ./third-party-licenses.txt"
99
},
1010
"dependencies": {
11-
"@millihq/tfn-dynamodb-actions": "1.0.0-canary.3",
11+
"@millihq/tfn-dynamodb-actions": "1.0.0-canary.4",
1212
"aws-sdk": "*",
1313
"class-validator": "^0.13.2",
1414
"lambda-api": "^0.11.2"

packages/deploy-controller/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@millihq/terraform-next-deploy-controller",
3-
"version": "1.0.0-canary.3",
3+
"version": "1.0.0-canary.4",
44
"description": "Deployment controller component of Terraform Next.js module for AWS",
55
"main": "index.js",
66
"license": "Apache-2.0",
@@ -16,7 +16,7 @@
1616
"postpack": "rm ./LICENSE ./third-party-licenses.txt"
1717
},
1818
"dependencies": {
19-
"@millihq/tfn-dynamodb-actions": "1.0.0-canary.3",
19+
"@millihq/tfn-dynamodb-actions": "1.0.0-canary.4",
2020
"aws-sdk": "*"
2121
},
2222
"devDependencies": {

packages/deploy-trigger/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@millihq/terraform-next-deploy-trigger",
3-
"version": "1.0.0-canary.3",
3+
"version": "1.0.0-canary.4",
44
"description": "Deploy trigger component of Terraform Next.js module for AWS",
55
"main": "index.js",
66
"license": "Apache-2.0",
@@ -18,7 +18,7 @@
1818
"dependencies": {
1919
"@aws-cdk/aws-apigatewayv2-alpha": "2.25.0-alpha.0",
2020
"@aws-cdk/aws-apigatewayv2-integrations-alpha": "2.25.0-alpha.0",
21-
"@millihq/tfn-dynamodb-actions": "1.0.0-canary.3",
21+
"@millihq/tfn-dynamodb-actions": "1.0.0-canary.4",
2222
"aws-cdk-lib": "2.25.0",
2323
"constructs": "^10.0.130",
2424
"mime-types": "^2.1.33"

packages/dynamodb-actions/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@millihq/tfn-dynamodb-actions",
3-
"version": "1.0.0-canary.3",
3+
"version": "1.0.0-canary.4",
44
"private": true,
55
"main": "src/index.ts",
66
"dependencies": {

packages/node-bridge/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@millihq/terraform-next-node-bridge",
3-
"version": "1.0.0-canary.3",
3+
"version": "1.0.0-canary.4",
44
"license": "Apache-2.0",
55
"repository": {
66
"type": "git",

packages/proxy-config/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@millihq/terraform-next-proxy-config",
3-
"version": "1.0.0-canary.3",
3+
"version": "1.0.0-canary.4",
44
"description": "Proxy config component of Terraform Next.js module for AWS",
55
"main": "index.js",
66
"license": "Apache-2.0",
@@ -16,7 +16,7 @@
1616
"postpack": "rm ./LICENSE ./third-party-licenses.txt"
1717
},
1818
"dependencies": {
19-
"@millihq/tfn-dynamodb-actions": "1.0.0-canary.3",
19+
"@millihq/tfn-dynamodb-actions": "1.0.0-canary.4",
2020
"aws-sdk": "*"
2121
},
2222
"devDependencies": {

packages/proxy/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@millihq/terraform-next-proxy",
3-
"version": "1.0.0-canary.3",
3+
"version": "1.0.0-canary.4",
44
"description": "Proxy component of Terraform Next.js module for AWS",
55
"main": "index.js",
66
"license": "Apache-2.0",

packages/runtime/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@millihq/tf-next-runtime",
3-
"version": "1.0.0-canary.3",
3+
"version": "1.0.0-canary.4",
44
"license": "Apache-2.0",
55
"main": "./dist/index",
66
"homepage": "https://registry.terraform.io/modules/milliHQ/next-js/aws",

packages/tf-next/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tf-next",
3-
"version": "1.0.0-canary.3",
3+
"version": "1.0.0-canary.4",
44
"description": "CLI build tool for AWS Next.js Terraform module.",
55
"homepage": "https://registry.terraform.io/modules/milliHQ/next-js/aws",
66
"main": "index.js",
@@ -22,7 +22,7 @@
2222
"@aws-crypto/sha256-js": "^2.0.1",
2323
"@aws-sdk/credential-provider-node": "3.100.0",
2424
"@aws-sdk/signature-v4": "^3.78.0",
25-
"@millihq/tf-next-runtime": "1.0.0-canary.3",
25+
"@millihq/tf-next-runtime": "1.0.0-canary.4",
2626
"@vercel/build-utils": "2.12.1",
2727
"@vercel/frameworks": "^0.0.15",
2828
"@vercel/routing-utils": "^1.10.1",
@@ -46,7 +46,7 @@
4646
},
4747
"devDependencies": {
4848
"@aws-sdk/types": "^3.78.0",
49-
"@millihq/terraform-next-api": "1.0.0-canary.3",
49+
"@millihq/terraform-next-api": "1.0.0-canary.4",
5050
"@tsconfig/node14": "1.0.1",
5151
"@types/archiver": "^5.1.0",
5252
"@types/fs-extra": "^9.0.1",

0 commit comments

Comments
 (0)