From 2229577019cb3ee613c6a5cd721eb929498f8cb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Miguel=20Neves?= Date: Tue, 18 Feb 2020 20:51:21 +0000 Subject: [PATCH 1/2] release 0.50.0 --- requirements.in | 1 - test_requirements.txt | 1 - zappa/__init__.py | 4 ++-- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/requirements.in b/requirements.in index 32a33153d..f0fd42dbf 100644 --- a/requirements.in +++ b/requirements.in @@ -4,7 +4,6 @@ durationpy hjson jmespath kappa==0.6.0 -lambda-packages>=0.20.0 pip>=9.0.1 python-dateutil<2.7.0 python-slugify diff --git a/test_requirements.txt b/test_requirements.txt index 832bac33f..3f4cd9ba0 100644 --- a/test_requirements.txt +++ b/test_requirements.txt @@ -29,7 +29,6 @@ itsdangerous==1.1.0 # via flask jinja2==2.11.1 # via flask jmespath==0.9.4 kappa==0.6.0 -lambda-packages==0.20.0 markupsafe==1.1.1 # via jinja2 mccabe==0.6.1 # via flake8 mock==4.0.1 diff --git a/zappa/__init__.py b/zappa/__init__.py index 373ea2374..855eda9df 100644 --- a/zappa/__init__.py +++ b/zappa/__init__.py @@ -1,6 +1,6 @@ import sys -SUPPORTED_VERSIONS = [(2, 7), (3, 6), (3, 7), (3, 8)] +SUPPORTED_VERSIONS = [(3, 6), (3, 7), (3, 8)] python_major_version = sys.version_info[0] python_minor_version = sys.version_info[1] @@ -11,4 +11,4 @@ 'Zappa (and AWS Lambda) support the following versions of Python: {}'.format(formatted_supported_versions) raise RuntimeError(err_msg) -__version__ = '0.49.0' +__version__ = '0.50.0' From 898cd1bf6957746e203c998635cd5faa1e796264 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Miguel=20Neves?= Date: Tue, 18 Feb 2020 21:00:48 +0000 Subject: [PATCH 2/2] update Changelog --- CHANGELOG.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89ca45e2d..c60ff496e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Zappa Changelog +## 0.50.0 +* Updated manylinux to support manylinux1/manylinux2010/manylinux2014 packages +* Fixed issue with duplicated cookie headers in API Gateway +* Various maintenance updates to the README file +* Remove old python 2.7 code (not all yet) +* Use pip-tools to manage dependencies (and remove pinned dependencies from the package) +* Add option for concurrency limit +* Use safe_load with YAML +* Support for ABI3 binary packages (particularly cryptography) +* Remove dependency on lambda-packages + ## 0.49.0 * Added support for Python 3.8 * Fixed boto3 reporting of long names @@ -7,7 +18,7 @@ * Minor bug and README fixes ## 0.48.2 -* Last version with Python 2 support. +* Last version with Python 2.7 support. * Fix for invalid values of HTTP_HOST and others (introduced in 0.48.0) ## 0.48.1