You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- :pull:`1267` - Added ``shutdown_timeout`` parameter to the ``reactpy.use_async_effect`` hook.
28
-
- :pull:`1278` - ``reactpy.utils.html_to_vdom`` has been upgraded to handle more complex scenarios without causing ReactJS rendering errors.
29
28
30
29
**Changed**
31
30
@@ -39,7 +38,8 @@ Unreleased
39
38
- :pull:`1113` - Renamed ``reactpy.config.REACTPY_DEBUG_MODE`` to ``reactpy.config.REACTPY_DEBUG``.
40
39
- :pull:`1113` - ``@reactpy/client`` now exports ``React`` and ``ReactDOM``.
41
40
- :pull:`1263` - ReactPy no longer auto-converts ``snake_case`` props to ``camelCase``. It is now the responsibility of the user to ensure that props are in the correct format.
42
-
- :pull:`1278` - ``reactpy.utils.vdom_to_html`` will now retain the user's original casing for element ``data-*`` and ``aria-*`` attributes.
41
+
- :pull:`1278` - ``reactpy.utils.reactpy_to_string`` will now retain the user's original casing for ``data-*`` and ``aria-*`` attributes.
42
+
- :pull:`1278` - ``reactpy.utils.string_to_reactpy`` has been upgraded to handle more complex scenarios without causing ReactJS rendering errors.
43
43
44
44
**Removed**
45
45
@@ -50,6 +50,8 @@ Unreleased
50
50
- :pull:`1113` - Removed ``reactpy.run``. See the documentation for the new method to run ReactPy applications.
51
51
- :pull:`1113` - Removed ``reactpy.backend.*``. See the documentation for the new method to run ReactPy applications.
52
52
- :pull:`1113` - Removed ``reactpy.core.types`` module. Use ``reactpy.types`` instead.
53
+
- :pull:`1278` - Removed ``reactpy.utils.html_to_vdom``. Use ``reactpy.utils.string_to_reactpy`` instead.
54
+
- :pull:`1278` - Removed ``reactpy.utils.vdom_to_html``. Use ``reactpy.utils.reactpy_to_string`` instead.
53
55
- :pull:`1113` - All backend related installation extras (such as ``pip install reactpy[starlette]``) have been removed.
54
56
- :pull:`1113` - Removed deprecated function ``module_from_template``.
0 commit comments