Add 0.6.0 CHANGES
This commit is contained in:
parent
9fc7a550db
commit
31ea1665af
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.6.0
|
||||||
|
- Implemented Piped mode again
|
||||||
|
Allows all stack references to be supplied via injected parameters
|
||||||
|
Tries to automatically resolve injected paramteres by inspecting matching outputs from othe running stacks at provision time
|
||||||
|
- minor bugfixing
|
||||||
|
|
||||||
## 0.5.2
|
## 0.5.2
|
||||||
- Remove tox dependency during build
|
- Remove tox dependency during build
|
||||||
- Introduce drone.io support
|
- Introduce drone.io support
|
||||||
|
@ -2,7 +2,7 @@ import logging
|
|||||||
|
|
||||||
__author__ = "Stefan Reimer"
|
__author__ = "Stefan Reimer"
|
||||||
__email__ = "stefan@zero-downtimet.net"
|
__email__ = "stefan@zero-downtimet.net"
|
||||||
__version__ = "0.5.2"
|
__version__ = "0.6.0"
|
||||||
|
|
||||||
|
|
||||||
# Set up logging to ``/dev/null`` like a library is supposed to.
|
# Set up logging to ``/dev/null`` like a library is supposed to.
|
||||||
|
@ -297,7 +297,7 @@ class Stack(object):
|
|||||||
logger.info('{} {} Parameter {}={}'.format(self.region, self.stackname, p, value))
|
logger.info('{} {} Parameter {}={}'.format(self.region, self.stackname, p, value))
|
||||||
else:
|
else:
|
||||||
# If we have a Default defined in the CFN skip, as AWS will use it
|
# If we have a Default defined in the CFN skip, as AWS will use it
|
||||||
if not 'Default' in self.cfn_data['Parameters'][p]:
|
if 'Default' not in self.cfn_data['Parameters'][p]:
|
||||||
_errors.append(p)
|
_errors.append(p)
|
||||||
|
|
||||||
if _errors:
|
if _errors:
|
||||||
|
Loading…
Reference in New Issue
Block a user