We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f6c4e commit 58c2ac6Copy full SHA for 58c2ac6
2 files changed
docs/source/about/changelog.rst
@@ -59,6 +59,7 @@ Unreleased
59
- :pull:`1281` - ``reactpy.core.vdom._EllipsisRepr`` has been moved to ``reactpy.types.EllipsisRepr``.
60
- :pull:`1281` - ``reactpy.types.VdomDictConstructor`` has been renamed to ``reactpy.types.VdomConstructor``.
61
- :pull:`1312` - ``REACTPY_ASYNC_RENDERING`` can now de-duplicate and cascade renders where necessary.
62
+- :pull:`1312` - ``REACTPY_ASYNC_RENDERING`` is now defaulted to ``True`` for up to 40x performance improvements.
63
64
**Deprecated**
65
src/reactpy/config.py
@@ -85,7 +85,7 @@ def boolean(value: str | bool | int) -> bool:
85
86
REACTPY_ASYNC_RENDERING = Option(
87
"REACTPY_ASYNC_RENDERING",
88
- default=False,
+ default=True,
89
mutable=True,
90
validator=boolean,
91
)
0 commit comments