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

Version 0.24.0 #1983

Merged
merged 11 commits into from Feb 6, 2023
17 changes: 17 additions & 0 deletions docs/release-notes.md
@@ -1,3 +1,20 @@
## 0.24.0

February 7, 2023
Kludex marked this conversation as resolved.
Show resolved Hide resolved

### Added
* Allow `StaticFiles` to follow symlinks [#1683](https://github.com/encode/starlette/pull/1683).
* Allow `Request.form()` as a context manager [#1903](https://github.com/encode/starlette/pull/1903).
Kludex marked this conversation as resolved.
Show resolved Hide resolved
Kludex marked this conversation as resolved.
Show resolved Hide resolved
* Lazily build the middleware stack [#2017](https://github.com/encode/starlette/pull/2017).
* Make the `file` argument required on `UploadFile` [#1413](https://github.com/encode/starlette/pull/1413).
* Add `env_prefix` argument to `Config` [#1990](https://github.com/encode/starlette/pull/1990).
* Add template context processors [#1904](https://github.com/encode/starlette/pull/1904).
* Support `str` and `datetime` on `expires` parameter on the `Response.set_cookie` method [#1908](https://github.com/encode/starlette/pull/1908).
* Support debug extension instead of custom response template extension [#1991](https://github.com/encode/starlette/pull/1991).

Kludex marked this conversation as resolved.
Show resolved Hide resolved
### Fixed
* Fix url parsing of ipv6 urls on `URL.replace` [#1965](https://github.com/encode/starlette/pull/1965).
Kludex marked this conversation as resolved.
Show resolved Hide resolved

## 0.23.1

December 9, 2022
Expand Down
2 changes: 1 addition & 1 deletion starlette/__init__.py
@@ -1 +1 @@
__version__ = "0.23.1"
__version__ = "0.24.0"