Skip to content

Commit 5ef6c4e

Browse files
🔖 Version 0.17.0
1 parent f1106dd commit 5ef6c4e

File tree

2 files changed

+44
-6
lines changed

2 files changed

+44
-6
lines changed

‎CHANGELOG.md‎

Lines changed: 43 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,65 @@
1+
# 0.17.0
2+
3+
* Remove 3.6 reference from frameworks docs by @aminalaee in https://github.com/jordaneremieff/mangum/pull/278
4+
* Add new blog post to external links by @aminalaee in https://github.com/jordaneremieff/mangum/pull/279
5+
* Add exclude_headers parameter by @aminalaee in https://github.com/jordaneremieff/mangum/pull/280
6+
7+
# 0.16.0
8+
9+
* Link to deployment tutorial by @simonw in https://github.com/jordaneremieff/mangum/pull/274
10+
* Added text_mime_types argument by @georgebv in https://github.com/jordaneremieff/mangum/pull/277
11+
12+
# 0.15.1
13+
14+
* Mention that Django works fine too by @WhyNotHugo in https://github.com/jordaneremieff/mangum/pull/261
15+
* Add vnd.oai.openapi to mime type list that are not base64 encoded by @khamaileon in https://github.com/jordaneremieff/mangum/pull/271
16+
17+
# 0.15.0
18+
19+
* Relax type annotations, refactor custom handler inferences, naming by @jordaneremieff in https://github.com/jordaneremieff/mangum/pull/259
20+
21+
# 0.14.1
22+
23+
* Remove references to Python 3.6, update setup.py. by @jordaneremieff in https://github.com/jordaneremieff/mangum/pull/246
24+
25+
## 0.14.0
26+
27+
* Removing Websocket from docs by @aminalaee in https://github.com/jordaneremieff/mangum/pull/241
28+
* Replace abstract handlers, customer handlers, type annotations, refactoring. by @jordaneremieff in https://github.com/jordaneremieff/mangum/pull/242
29+
30+
## 0.13.0
31+
32+
* Remove WebSocket support and misc cleanup/removals by @jordaneremieff in https://github.com/jordaneremieff/mangum/pull/234
33+
* Replace awslambdaric-stubs with new types, refactor import style. by @jordaneremieff in https://github.com/jordaneremieff/mangum/pull/235
34+
* Improve logging by @aminalaee in https://github.com/jordaneremieff/mangum/pull/230
35+
36+
## 0.12.4
37+
38+
* HTTP Gateway V2: Remove use of obsolete multiValueHeaders by @IlyaSukhanov in https://github.com/jordaneremieff/mangum/pull/216
39+
* 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
40+
* Added explicit python3.9 and 3.10 support by @relsunkaev in https://github.com/jordaneremieff/mangum/pull/224
41+
* Fix aws_api_gateway handler not accepting combined headers and multiValueHeaders by @Feriixu in https://github.com/jordaneremieff/mangum/pull/229
42+
143
## 0.12.3
244

345
* Fix unhandled `api_gateway_base_path` in `AwsHttpGateway`. [#200](https://github.com/jordaneremieff/mangum/pull/204). Thanks [xpayn](https://github.com/xpayn)!
446

5-
647
## 0.12.2
748

849
* Exclude `tests/` directory from package. [#200](https://github.com/jordaneremieff/mangum/pull/200). Thanks [bradsbrown](https://github.com/bradsbrown)!
950

10-
1151
## 0.12.1
1252

1353
* Make `boto3` optional [#197](https://github.com/jordaneremieff/mangum/pull/197).
1454

15-
1655
## 0.12.0
1756

1857
* Reintroduce WebSocket support [#190](https://github.com/jordaneremieff/mangum/pull/190). Thanks [eduardovra](https://github.com/eduardovra)!
1958

2059
* 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)!
2160

2261
* Refactor handlers to be separate from core logic [#170](https://github.com/jordaneremieff/mangum/pull/170). Thanks [four43](https://github.com/four43)!
23-
24-
62+
2563
## 0.11.0
2664

2765
* Remove deprecated `enable_lifespan` parameter [#109](https://github.com/jordaneremieff/mangum/issues/109).

‎setup.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def get_long_description():
77

88
setup(
99
name="mangum",
10-
version="0.16.0",
10+
version="0.17.0",
1111
packages=find_packages(exclude=["tests*"]),
1212
license="MIT",
1313
url="https://github.com/jordaneremieff/mangum",

0 commit comments

Comments
 (0)