From 1e3ceeb88b2e387e6ee2db90f7805ed99d39a1d5 Mon Sep 17 00:00:00 2001 From: John Pignata Date: Sun, 31 Dec 2017 10:41:31 -0500 Subject: [PATCH] Add CHANGELOG --- CHANGELOG.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..fbfadca --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,24 @@ +## 0.2.0 (2017-12-31) + +### Features + +- Added **--cluster** global flag to allow running commands against other + clusters rather than the default. If omitted, the default **fargate** cluster + is used. ([#2][issue-2]) +- lb create, service create, and task run now accept an optional **--subnet-id** + flag to place resources in different VPCs and subnets rather than the + defaults. If omitted, resources will be placed within the default subnets + within the default VPC. ([#2][issue-2]) +- lb create, service create, and task run now accept an optional + **--security-group-id** flag to allow applying more restrictive security + groups to load balancers, services, and tasks. This flag can be passed + multiple times to apply multiple security groups. If omitted, a permissive + security group will be applied. + +### Bug Fixes + +- Resolved crashes with certificates missing resource records. Certificates that + fail to be issued immediately after request would cause crashes in lb info and + lb list as the resource record was never generated. + +[issue-2]: https://github.com/jpignata/fargate/issues/2