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
Copy file name to clipboardexpand all lines: docs/source/about/changelog.rst
+29
Original file line number
Diff line number
Diff line change
@@ -15,17 +15,44 @@ Changelog
15
15
Unreleased
16
16
----------
17
17
18
+
**Added**
19
+
- :pull:`1113` - Added ``reactpy.ReactPy`` that can be used to run ReactPy in standalone mode.
20
+
- :pull:`1113` - Added ``reactpy.ReactPyMiddleware`` that can be used to run ReactPy with any ASGI compatible framework.
21
+
- :pull:`1113` - Added ``reactpy.jinja.Component`` that can be used alongside ``ReactPyMiddleware`` to embed several ReactPy components into your existing application.
- :pull:`1113` - Added support for Python 3.12 and 3.13.
24
+
18
25
**Changed**
19
26
20
27
- :pull:`1251` - Substitute client-side usage of ``react`` with ``preact``.
21
28
- :pull:`1239` - Script elements no longer support behaving like effects. They now strictly behave like plain HTML script elements.
29
+
- :pull:`1255` - The ``reactpy.html`` module has been modified to allow for auto-creation of any HTML nodes. For example, you can create a ``<data-table>`` element by calling ``html.data_table()``.
30
+
- :pull:`1256` - Change ``set_state`` comparison method to check equality with ``==`` more consistently.
31
+
- :pull:`1257` - Add support for rendering ``@component`` children within ``vdom_to_html``.
32
+
- :pull:`1113` - Renamed the ``use_location`` hook's ``search`` attribute to ``query_string``.
33
+
- :pull:`1113` - Renamed the ``use_location`` hook's ``pathname`` attribute to ``path``.
34
+
- :pull:`1113` - Renamed ``reactpy.config.REACTPY_DEBUG_MODE`` to ``reactpy.config.REACTPY_DEBUG``.
35
+
36
+
**Removed**
37
+
38
+
- :pull:`1255` - Removed the ability to import ``reactpy.html.*`` elements directly. You must now call ``html.*`` to access the elements.
0 commit comments