Skip to content

3.3.2 Version Bump #171

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

Merged
merged 2 commits into from
Aug 14, 2023
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,8 @@ Using the following categories, list your changes in this order:

- Support for IDOM within the Django

[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.3.1...HEAD
[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.3.2...HEAD
[3.3.2]: https://github.com/reactive-python/reactpy-django/compare/3.3.1...3.3.2
[3.3.1]: https://github.com/reactive-python/reactpy-django/compare/3.3.0...3.3.1
[3.3.0]: https://github.com/reactive-python/reactpy-django/compare/3.2.1...3.3.0
[3.2.1]: https://github.com/reactive-python/reactpy-django/compare/3.2.0...3.2.1
Expand Down
10 changes: 5 additions & 5 deletions src/reactpy_django/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from reactpy_django import checks, components, decorators, hooks, types, utils
from reactpy_django.websocket.paths import REACTPY_WEBSOCKET_PATH

__version__ = "3.3.1"
__version__ = "3.3.2"
__all__ = [
"REACTPY_WEBSOCKET_PATH",
"hooks",
Expand All @@ -15,9 +15,9 @@
"utils",
"checks",
]
# Built-in asyncio event loops can create `assert f is self._write_fut` exceptions
# while we are using our backhaul thread with Uvicorn, so we use this patch to fix this.
# This also resolves jittery rendering behaviors within Daphne. Can be demonstrated
# using our "Renders Per Second" test page.

# Fixes bugs with REACTPY_BACKHAUL_THREAD + built-in asyncio event loops.
# Previously, Uvicorn could generate `assert f is self._write_fut` exceptions, and Daphne
# had jittery rendering behaviors. Demonstrated using our "Renders Per Second" test page.
with contextlib.suppress(ValueError):
nest_asyncio.apply()