Skip to content

Commit 5b41a15

Browse files
committed
Release v1.2.0
1 parent 60f56c4 commit 5b41a15

File tree

141 files changed

+37978
-18608
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+37978
-18608
lines changed

.editorconfig

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
root = true
2+
3+
# base settings
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
# hidden files
13+
[.*]
14+
end_of_line = lf
15+
16+
# by extensions
17+
[*.sh]
18+
end_of_line = lf
19+
[*.bat]
20+
end_of_line = crlf
21+
[*.md]
22+
trim_trailing_whitespace = false
23+
indent_size = 4
24+
[*.{yml,yaml}]
25+
indent_size = 4
26+
[{Makefile,go.mod,go.sum,*.go}]
27+
indent_style = tab
28+
indent_size = 4
29+
30+
# by unique files
31+
[package{,-lock}.json]
32+
end_of_line = lf

.eslintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
**/node_modules/**
2+
**/cdk.out/**
3+
*.js
4+
*.d.ts

.gitattributes

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Declare files that will always have LF or CRLF line endings on checkout.
5+
*.sln text eol=crlf
6+
*.bat text eol=crlf
7+
*.sh text eol=lf
8+
9+
# Denote all files that are truly binary and should not be modified.
10+
*.png binary
11+
*.jpg binary
12+
13+
# Exclude from git archive
14+
.gitkeep export-ignore

.gitignore

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1+
*.d.ts
12
*.js
23
!jest.config.js
3-
*.d.ts
44
node_modules
5+
.DS_Store
56

67
# CDK asset staging directory
78
.cdk.staging
89
cdk.out
9-
cdk.context.json
1010

1111
# Parcel default cache directory
1212
.parcel-cache
13+
14+
# CDK context
15+
cdk.context.json
16+

.vscode/extensions.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"recommendations": [
3+
"esbenp.prettier-vscode",
4+
"amazonwebservices.aws-toolkit-vscode",
5+
"editorconfig.editorconfig",
6+
"dbaeumer.vscode-eslint",
7+
"eamodio.gitlens"
8+
]
9+
}

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.2.0] - 2021-10-26
9+
10+
### BREAKING CHANGES
11+
12+
- Re-organize applications into usecases directory. Now we use npm workspaces to build.
13+
14+
### Added
15+
16+
- **guest-apiapp-sample** add Serverless API application sample (NodeJS and Python)
17+
- **guest-webapp-sample** add SSL(R53+CF+ACM+ALB) implementation sample
18+
- **guest-webapp-sample** add Canary(CloudWatch Synthetics) sample
19+
- **guest-webapp-sample** add CloudWatch Dashboard sample
20+
- add documents (HowTo and deployment to controltower)
21+
22+
### Changed
23+
24+
- Update CDK version to 1.129.0 and its dependencies.
25+
- **guest-webapp-sample** generalize ECS sample. now we don't use aws-ecs-patterns.
26+
- **guest-webapp-sample** re-organize KMS keys
27+
- **base-ct-guest** **base-standalone** refine notification settings for SecurityHub
28+
829
## [1.1.1] - 2021-06-07
930

1031
### Changed

0 commit comments

Comments
 (0)