Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.17.5 #1381

Merged
merged 3 commits into from Feb 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,16 @@
# Change Log

### 0.17.5 - 2022-02-16

### Fixed

- Fix case where url is fragmented in httptools protocol (#1263) 2/16/22
- Fix WSGI middleware not to explode quadratically in the case of a larger body (#1329) 2/16/16
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for merging #1329!
But hey... while I did start working on it a while ago, that wasn't 5 years ago 🤔

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/hide
I wasn't born at that time 🐢 !

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just since we're here - I don't think we really need dates against individual PRs.
The release date is what matters.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

agreed!


### Changed

- Send HTTP 400 response for invalid request (#1352) 2/11/22

### 0.17.4 - 2022-02-04

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion uvicorn/__init__.py
@@ -1,5 +1,5 @@
from uvicorn.config import Config
from uvicorn.main import Server, main, run

__version__ = "0.17.4"
__version__ = "0.17.5"
__all__ = ["main", "run", "Config", "Server"]