Skip to content

Commit f4e846f

Browse files
authored
Merge pull request #2022 from Miserlou/release/0.50.0
Release 0.50.0
2 parents 60f6b86 + 898cd1b commit f4e846f

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
11
# Zappa Changelog
22

3+
## 0.50.0
4+
* Updated manylinux to support manylinux1/manylinux2010/manylinux2014 packages
5+
* Fixed issue with duplicated cookie headers in API Gateway
6+
* Various maintenance updates to the README file
7+
* Remove old python 2.7 code (not all yet)
8+
* Use pip-tools to manage dependencies (and remove pinned dependencies from the package)
9+
* Add option for concurrency limit
10+
* Use safe_load with YAML
11+
* Support for ABI3 binary packages (particularly cryptography)
12+
* Remove dependency on lambda-packages
13+
314
## 0.49.0
415
* Added support for Python 3.8
516
* Fixed boto3 reporting of long names
617
* Added support for new AWS Regions
718
* Minor bug and README fixes
819

920
## 0.48.2
10-
* Last version with Python 2 support.
21+
* Last version with Python 2.7 support.
1122
* Fix for invalid values of HTTP_HOST and others (introduced in 0.48.0)
1223

1324
## 0.48.1

requirements.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ durationpy
44
hjson
55
jmespath
66
kappa==0.6.0
7-
lambda-packages>=0.20.0
87
pip>=9.0.1
98
python-dateutil<2.7.0
109
python-slugify

test_requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ itsdangerous==1.1.0 # via flask
2929
jinja2==2.11.1 # via flask
3030
jmespath==0.9.4
3131
kappa==0.6.0
32-
lambda-packages==0.20.0
3332
markupsafe==1.1.1 # via jinja2
3433
mccabe==0.6.1 # via flake8
3534
mock==4.0.1

zappa/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
22

3-
SUPPORTED_VERSIONS = [(2, 7), (3, 6), (3, 7), (3, 8)]
3+
SUPPORTED_VERSIONS = [(3, 6), (3, 7), (3, 8)]
44

55
python_major_version = sys.version_info[0]
66
python_minor_version = sys.version_info[1]
@@ -11,4 +11,4 @@
1111
'Zappa (and AWS Lambda) support the following versions of Python: {}'.format(formatted_supported_versions)
1212
raise RuntimeError(err_msg)
1313

14-
__version__ = '0.49.0'
14+
__version__ = '0.50.0'

0 commit comments

Comments
 (0)