From 8d68b54a7265ec1acd5b9ac6bb23c61e4e8e65f2 Mon Sep 17 00:00:00 2001 From: monkut Date: Fri, 15 Sep 2023 16:14:09 +0900 Subject: [PATCH] Prepare CHANGELOG/VERSION for 0.58.0 release (#1271) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ✏️ update version 0.57.0 -> 0.58.0 ✏️ update CHANGELOG.md with issues addressed in 0.58.0 * :wrench: attempt to fix "AttributeError: 'String' object has no attribute 'update'" pip/pipenv error. * :wrench: attempt to fix "AttributeError: 'String' object has no attribute 'update'" pip/pipenv error" -> Upgrade pip/pipenv * :wrench: attempt to fix "AttributeError: 'String' object has no attribute 'update'" pip/pipenv error" -> Upgrade pip in Makefile * :wrench: attempt to fix "AttributeError: 'String' object has no attribute 'update'" pip/pipenv error" -> Set pipenv<2023.8.19 * :pencil: add python 3.11 support issue to CHANGELOG * :fire: remove unnecessary update pip/pipenv section * :fire: remove `pipenv` from Pipfile (as recommended by pipenv dev team (https://github.com/pypa/pipenv/issues/5927) --------- Co-authored-by: shane --- CHANGELOG.md | 10 ++++++++++ Makefile | 4 +++- Pipfile | 1 - zappa/__init__.py | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7484cecb5..6c46376c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Zappa Changelog +## 0.58.0 + +* Add Python 3.11 support (#1262) +* support new ephemeral storage feature in zappa_settings.json (#1120) +* Update permissions (PR #1119) +* Outdated manylinux wheels download logic (#1249) +* cryptography>=35.0, plus pip>=20.3 - downloads wrong cryptography anywheel package (GLIBC_2.18 error) (#1063) +* fix response time improperly configured for micro-seconds. (#1265) +* fix unquote issue with querystring handling. (#1264) + ## 0.57.0 * Python 3.10 support (#1124, #1160) diff --git a/Makefile b/Makefile index 0d201b91e..d84eb89cc 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,9 @@ clean: coverage erase requirements: - pip install pipenv>2021.11.15 + pip install pip --upgrade + pip install "pipenv>2021.11.15" + pipenv lock pipenv sync --dev diff --git a/Pipfile b/Pipfile index e1a35d0e1..f8d05fbd9 100644 --- a/Pipfile +++ b/Pipfile @@ -14,7 +14,6 @@ Flask = "*" isort = "*" mock = "*" mypy = "*" -pipenv = ">2021.11.15" packaging = "*" pytest = "*" pytest-cov = "*" diff --git a/zappa/__init__.py b/zappa/__init__.py index 402cdaab5..ced860fba 100644 --- a/zappa/__init__.py +++ b/zappa/__init__.py @@ -30,4 +30,4 @@ def running_in_docker() -> bool: ) raise RuntimeError(err_msg) -__version__ = "0.57.0" +__version__ = "0.58.0"