Skip to content

Commit

Permalink
Release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ohmurayu committed Oct 26, 2021
1 parent 60f56c4 commit 5b41a15
Show file tree
Hide file tree
Showing 141 changed files with 37,978 additions and 18,608 deletions.
32 changes: 32 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
root = true

# base settings
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

# hidden files
[.*]
end_of_line = lf

# by extensions
[*.sh]
end_of_line = lf
[*.bat]
end_of_line = crlf
[*.md]
trim_trailing_whitespace = false
indent_size = 4
[*.{yml,yaml}]
indent_size = 4
[{Makefile,go.mod,go.sum,*.go}]
indent_style = tab
indent_size = 4

# by unique files
[package{,-lock}.json]
end_of_line = lf
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
**/node_modules/**
**/cdk.out/**
*.js
*.d.ts
14 changes: 14 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto

# Declare files that will always have LF or CRLF line endings on checkout.
*.sln text eol=crlf
*.bat text eol=crlf
*.sh text eol=lf

# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary

# Exclude from git archive
.gitkeep export-ignore
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
*.d.ts
*.js
!jest.config.js
*.d.ts
node_modules
.DS_Store

# CDK asset staging directory
.cdk.staging
cdk.out
cdk.context.json

# Parcel default cache directory
.parcel-cache

# CDK context
cdk.context.json

9 changes: 9 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"recommendations": [
"esbenp.prettier-vscode",
"amazonwebservices.aws-toolkit-vscode",
"editorconfig.editorconfig",
"dbaeumer.vscode-eslint",
"eamodio.gitlens"
]
}
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.0] - 2021-10-26

### BREAKING CHANGES

- Re-organize applications into usecases directory. Now we use npm workspaces to build.

### Added

- **guest-apiapp-sample** add Serverless API application sample (NodeJS and Python)
- **guest-webapp-sample** add SSL(R53+CF+ACM+ALB) implementation sample
- **guest-webapp-sample** add Canary(CloudWatch Synthetics) sample
- **guest-webapp-sample** add CloudWatch Dashboard sample
- add documents (HowTo and deployment to controltower)

### Changed

- Update CDK version to 1.129.0 and its dependencies.
- **guest-webapp-sample** generalize ECS sample. now we don't use aws-ecs-patterns.
- **guest-webapp-sample** re-organize KMS keys
- **base-ct-guest** **base-standalone** refine notification settings for SecurityHub

## [1.1.1] - 2021-06-07

### Changed
Expand Down
Loading

0 comments on commit 5b41a15

Please sign in to comment.