From 5ef6c4e5f58fc3e0bdee3248b8b2409725f055d1 Mon Sep 17 00:00:00 2001 From: Jordan Eremieff Date: Sun, 27 Nov 2022 22:20:23 +1100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Version=200.17.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 48 +++++++++++++++++++++++++++++++++++++++++++----- setup.py | 2 +- 2 files changed, 44 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2ab4505..d6593c60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,18 +1,57 @@ +# 0.17.0 + +* Remove 3.6 reference from frameworks docs by @aminalaee in https://github.com/jordaneremieff/mangum/pull/278 +* Add new blog post to external links by @aminalaee in https://github.com/jordaneremieff/mangum/pull/279 +* Add exclude_headers parameter by @aminalaee in https://github.com/jordaneremieff/mangum/pull/280 + +# 0.16.0 + +* Link to deployment tutorial by @simonw in https://github.com/jordaneremieff/mangum/pull/274 +* Added text_mime_types argument by @georgebv in https://github.com/jordaneremieff/mangum/pull/277 + +# 0.15.1 + +* Mention that Django works fine too by @WhyNotHugo in https://github.com/jordaneremieff/mangum/pull/261 +* Add vnd.oai.openapi to mime type list that are not base64 encoded by @khamaileon in https://github.com/jordaneremieff/mangum/pull/271 + +# 0.15.0 + +* Relax type annotations, refactor custom handler inferences, naming by @jordaneremieff in https://github.com/jordaneremieff/mangum/pull/259 + +# 0.14.1 + +* Remove references to Python 3.6, update setup.py. by @jordaneremieff in https://github.com/jordaneremieff/mangum/pull/246 + +## 0.14.0 + +* Removing Websocket from docs by @aminalaee in https://github.com/jordaneremieff/mangum/pull/241 +* Replace abstract handlers, customer handlers, type annotations, refactoring. by @jordaneremieff in https://github.com/jordaneremieff/mangum/pull/242 + +## 0.13.0 + +* Remove WebSocket support and misc cleanup/removals by @jordaneremieff in https://github.com/jordaneremieff/mangum/pull/234 +* Replace awslambdaric-stubs with new types, refactor import style. by @jordaneremieff in https://github.com/jordaneremieff/mangum/pull/235 +* Improve logging by @aminalaee in https://github.com/jordaneremieff/mangum/pull/230 + +## 0.12.4 + +* HTTP Gateway V2: Remove use of obsolete multiValueHeaders by @IlyaSukhanov in https://github.com/jordaneremieff/mangum/pull/216 +* mypy - Argument "api_gateway_base_path" to "Mangum" has incompatible type "str"; expected "Dict[str, Any]" by @relsunkaev in https://github.com/jordaneremieff/mangum/pull/220 +* Added explicit python3.9 and 3.10 support by @relsunkaev in https://github.com/jordaneremieff/mangum/pull/224 +* Fix aws_api_gateway handler not accepting combined headers and multiValueHeaders by @Feriixu in https://github.com/jordaneremieff/mangum/pull/229 + ## 0.12.3 * Fix unhandled `api_gateway_base_path` in `AwsHttpGateway`. [#200](https://github.com/jordaneremieff/mangum/pull/204). Thanks [xpayn](https://github.com/xpayn)! - ## 0.12.2 * Exclude `tests/` directory from package. [#200](https://github.com/jordaneremieff/mangum/pull/200). Thanks [bradsbrown](https://github.com/bradsbrown)! - ## 0.12.1 * Make `boto3` optional [#197](https://github.com/jordaneremieff/mangum/pull/197). - ## 0.12.0 * Reintroduce WebSocket support [#190](https://github.com/jordaneremieff/mangum/pull/190). Thanks [eduardovra](https://github.com/eduardovra)! @@ -20,8 +59,7 @@ * Resolve several issues with ALB/ELB support [#184](https://github.com/jordaneremieff/mangum/pull/184), [#189](https://github.com/jordaneremieff/mangum/pull/189), [#186](https://github.com/jordaneremieff/mangum/pull/186), [#182](https://github.com/jordaneremieff/mangum/pull/182). Thanks [nathanglover](https://github.com/nathanglover) & [jurasofish](https://github.com/jurasofish)! * Refactor handlers to be separate from core logic [#170](https://github.com/jordaneremieff/mangum/pull/170). Thanks [four43](https://github.com/four43)! - - + ## 0.11.0 * Remove deprecated `enable_lifespan` parameter [#109](https://github.com/jordaneremieff/mangum/issues/109). diff --git a/setup.py b/setup.py index 25f30546..1410ed12 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ def get_long_description(): setup( name="mangum", - version="0.16.0", + version="0.17.0", packages=find_packages(exclude=["tests*"]), license="MIT", url="https://github.com/jordaneremieff/mangum",