diff --git a/CHANGELOG.md b/CHANGELOG.md index 5127e666..f8f06d0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/reactpy_django/__init__.py b/src/reactpy_django/__init__.py index 44e04bc1..fc3940e8 100644 --- a/src/reactpy_django/__init__.py +++ b/src/reactpy_django/__init__.py @@ -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", @@ -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()