Skip to content

Commit 739321d

Browse files
authored
Version 0.47.0 (#2947)
1 parent af1c709 commit 739321d

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

docs/release-notes.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,30 @@
22
toc_depth: 2
33
---
44

5+
## 0.47.0 (May 29, 2025)
6+
7+
#### Added
8+
9+
* Add support for ASGI `pathsend` extension [#2671](https://github.com/encode/starlette/pull/2671).
10+
* Add `partitioned` attribute to `Response.set_cookie` [#2501](https://github.com/encode/starlette/pull/2501).
11+
12+
#### Changed
13+
14+
* Change `methods` parameter type from `list[str]` to `Collection[str]`
15+
[#2903](https://github.com/encode/starlette/pull/2903).
16+
* Replace `import typing` by `from typing import ...` in the whole codebase
17+
[#2867](https://github.com/encode/starlette/pull/2867).
18+
19+
#### Fixed
20+
21+
* Mark `ExceptionMiddleware.http_exception` as async to prevent thread creation
22+
[#2922](https://github.com/encode/starlette/pull/2922).
23+
524
## 0.46.2 (April 13, 2025)
625

726
#### Fixed
827

9-
* Prevents reraising of exception from BaseHttpMiddleware [#2911](https://github.com/encode/starlette/pull/2911)
28+
* Prevents reraising of exception from BaseHttpMiddleware [#2911](https://github.com/encode/starlette/pull/2911).
1029
* Use correct index on backwards compatible logic in `TemplateResponse` [#2909](https://github.com/encode/starlette/pull/2909).
1130

1231
## 0.46.1 (March 8, 2025)

starlette/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.46.2"
1+
__version__ = "0.47.0"

0 commit comments

Comments
 (0)