Skip to content

Commit

Permalink
Merge pull request #2022 from Miserlou/release/0.50.0
Browse files Browse the repository at this point in the history
Release 0.50.0
  • Loading branch information
mcrowson committed Feb 19, 2020
2 parents 60f6b86 + 898cd1b commit f4e846f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
@@ -1,13 +1,24 @@
# 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
* Added support for new AWS Regions
* 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
Expand Down
1 change: 0 additions & 1 deletion requirements.in
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion test_requirements.txt
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions 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]
Expand All @@ -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'

0 comments on commit f4e846f

Please sign in to comment.