Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ Don't forget to remove deprecated code on each major release!

## [Unreleased]

- Nothing (yet)!

## [5.1.1] - 2024-12-02

### Fixed

- Fixed regression in v5.1.0 where components would sometimes not output debug messages when `settings.py:DEBUG` is enabled.
Expand Down Expand Up @@ -521,7 +525,8 @@ Don't forget to remove deprecated code on each major release!

- Support for IDOM within the Django

[Unreleased]: https://github.com/reactive-python/reactpy-django/compare/5.1.0...HEAD
[Unreleased]: https://github.com/reactive-python/reactpy-django/compare/5.1.1...HEAD
[5.1.1]: https://github.com/reactive-python/reactpy-django/compare/5.1.0...5.1.1
[5.1.0]: https://github.com/reactive-python/reactpy-django/compare/5.0.0...5.1.0
[5.0.0]: https://github.com/reactive-python/reactpy-django/compare/4.0.0...5.0.0
[4.0.0]: https://github.com/reactive-python/reactpy-django/compare/3.8.1...4.0.0
Expand Down
Binary file modified docs/src/assets/img/add-interactivity.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/reactpy_django/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
)
from reactpy_django.websocket.paths import REACTPY_WEBSOCKET_ROUTE

__version__ = "5.1.0"
__version__ = "5.1.1"
__all__ = [
"REACTPY_WEBSOCKET_ROUTE",
"components",
Expand Down
Loading