Skip to content

Commit 218a6b4

Browse files
authored
Version 0.24.0 (#1983)
1 parent e05b632 commit 218a6b4

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

docs/release-notes.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 0.24.0
2+
3+
February 6, 2023
4+
5+
### Added
6+
* Allow `StaticFiles` to follow symlinks [#1683](https://github.com/encode/starlette/pull/1683).
7+
* Allow `Request.form()` as a context manager [#1903](https://github.com/encode/starlette/pull/1903).
8+
* Add `size` attribute to `UploadFile` [#1405](https://github.com/encode/starlette/pull/1405).
9+
* Add `env_prefix` argument to `Config` [#1990](https://github.com/encode/starlette/pull/1990).
10+
* Add template context processors [#1904](https://github.com/encode/starlette/pull/1904).
11+
* Support `str` and `datetime` on `expires` parameter on the `Response.set_cookie` method [#1908](https://github.com/encode/starlette/pull/1908).
12+
13+
### Changed
14+
* Lazily build the middleware stack [#2017](https://github.com/encode/starlette/pull/2017).
15+
* Make the `file` argument required on `UploadFile` [#1413](https://github.com/encode/starlette/pull/1413).
16+
* Use debug extension instead of custom response template extension [#1991](https://github.com/encode/starlette/pull/1991).
17+
18+
### Fixed
19+
* Fix url parsing of ipv6 urls on `URL.replace` [#1965](https://github.com/encode/starlette/pull/1965).
20+
121
## 0.23.1
222

323
December 9, 2022

starlette/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.23.1"
1+
__version__ = "0.24.0"

0 commit comments

Comments
 (0)