Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.7.1 #760

Merged
merged 3 commits into from
Aug 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
## Upcoming release
- Fixing AMI lookup Key error on 'Name'

## 1.7.1 (2020-08-17)
- Fixing AMI lookup Key error on 'Name'
- hooks: lambda: allow uploading pre-built payloads [GH-#564]
- Ensure that base64 lookup codec encodes the bytes object as a string [GH-742]
- Use CloudFormation Change Sets for `stacker diff`
- Locked stacks still have requirements [GH-746]
- change diff to use CFN change sets instead of comparing template dicts [GH-744]
- Add YAML environment file support [GH-740]
- fix `stack.set_outputs` not being called by diff if stack did not change [GH-754]
- Fix python 2.7/3.5 dependency issue
- add cf notification arns [GH-756]

## 1.7.0 (2019-04-07)

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from setuptools import setup, find_packages

VERSION = "1.7.0"
VERSION = "1.7.1"

src_dir = os.path.dirname(__file__)

Expand All @@ -19,6 +19,8 @@
"python-dateutil>=2.0,<3.0",
"MarkupSafe<2.0", # 2.0 dropped python 2.7, 3.5 support - temporary
"more-itertools<6.0.0", # 6.0.0 dropped python 2.7 support - temporary
"rsa==4.5", # 4.6 dropped python 2.7 support - temporary
"python-jose<3.2.0", # 3.2.0 dropped python 2.7 support - temporary
]

setup_requires = ['pytest-runner']
Expand Down
2 changes: 1 addition & 1 deletion stacker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from __future__ import division
from __future__ import absolute_import

__version__ = "1.7.0"
__version__ = "1.7.1"