Skip to content

Commit 4c2d289

Browse files
Release 2.4.0
1 parent 38f5a27 commit 4c2d289

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Microdot change log
22

3+
**Release 2.4.0** - 2025-11-08
4+
5+
- SSE: Add support for the retry command and keepalive comments ([commit](https://github.com/miguelgrinberg/microdot/commit/d0808efa6b32e00992596f1bb3d4c3a372df2168))
6+
- Ignore `expires` and `max_age` arguments if passed to `Response.delete_cookie` [#323](https://github.com/miguelgrinberg/microdot/issues/323) ([commit](https://github.com/miguelgrinberg/microdot/commit/d61785b2e8d18438e5031de9c49e61642e5cfb3f))
7+
- Ignore "muted" errors during request creation ([commit](https://github.com/miguelgrinberg/microdot/commit/ce9de6e37a6323664eb7666b817932f371f1e099))
8+
- Add package version to `microdot/__init__.py` file [#312](https://github.com/miguelgrinberg/microdot/issues/312) ([commit](https://github.com/miguelgrinberg/microdot/commit/38f5a27b33c7968fc7414b67742e034e2b9a09ca))
9+
310
**Release 2.3.5** - 2025-10-18
411

512
- Always encode ASGI response bodies to bytes ([commit](https://github.com/miguelgrinberg/microdot/commit/f70c524fb0bdc8c5fef2223c82f5e339445bc5fa))

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "microdot"
3-
version = "2.3.6.dev0"
3+
version = "2.4.0"
44
authors = [
55
{ name = "Miguel Grinberg", email = "[email protected]" },
66
]

src/microdot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from microdot.microdot import Microdot, Request, Response, abort, redirect, \
22
send_file, URLPattern, AsyncBytesIO, iscoroutine # noqa: F401
33

4-
__version__ = '2.3.6.dev0'
4+
__version__ = '2.4.0'

0 commit comments

Comments
 (0)