Bug fix release
This commit is contained in:
parent
3fd4a9640a
commit
7810018f25
@ -1,5 +1,8 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.8.2
|
||||||
|
- Bug fix release to allow empty stack configs again
|
||||||
|
|
||||||
## 0.8.1
|
## 0.8.1
|
||||||
- Work around for bug in Go AWS SDK to pick up cli credentials, see https://github.com/aws/aws-sdk-go/issues/934
|
- Work around for bug in Go AWS SDK to pick up cli credentials, see https://github.com/aws/aws-sdk-go/issues/934
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ import logging
|
|||||||
|
|
||||||
__author__ = "Stefan Reimer"
|
__author__ = "Stefan Reimer"
|
||||||
__email__ = "stefan@zero-downtimet.net"
|
__email__ = "stefan@zero-downtimet.net"
|
||||||
__version__ = "0.8.1"
|
__version__ = "0.8.2"
|
||||||
|
|
||||||
|
|
||||||
# Set up logging to ``/dev/null`` like a library is supposed to.
|
# Set up logging to ``/dev/null`` like a library is supposed to.
|
||||||
|
@ -240,7 +240,7 @@ def _sops_loader(path):
|
|||||||
config_raw = f.read()
|
config_raw = f.read()
|
||||||
data = yaml.safe_load(config_raw)
|
data = yaml.safe_load(config_raw)
|
||||||
|
|
||||||
if 'sops' in data:
|
if data and 'sops' in data:
|
||||||
try:
|
try:
|
||||||
result = subprocess.run([
|
result = subprocess.run([
|
||||||
'sops',
|
'sops',
|
||||||
|
Loading…
Reference in New Issue
Block a user