Skip to content

Commit 31b4045

Browse files
committed
add changelog
1 parent 3209467 commit 31b4045

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

Diff for: .gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ src/reactpy/static/*
1515

1616
# --- Python ---
1717
.hatch
18-
.venv
18+
.venv*
1919
venv
2020
MANIFEST
2121
build

Diff for: docs/source/about/changelog.rst

+11
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,31 @@ Changelog
1515
Unreleased
1616
----------
1717

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.ReactPyMiddleware`` that can be used to run ReactPy with any ASGI compatible framework.
22+
- :pull:`1113` - Added ``uvicorn`` and ``jinja`` installation extras (for example ``pip install reactpy[uvicorn,jinja]``).
23+
1824
**Changed**
1925

2026
- :pull:`1251` - Substitute client-side usage of ``react`` with ``preact``.
2127
- :pull:`1239` - Script elements no longer support behaving like effects. They now strictly behave like plain HTML script elements.
2228
- :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()``.
2329
- :pull:`1256` - Change ``set_state`` comparison method to check equality with ``==`` more consistently.
2430
- :pull:`1257` - Add support for rendering ``@component`` children within ``vdom_to_html``.
31+
- :pull:`1113` - Renamed the ``use_location`` hook's ``search`` attribute to ``query_string``.
2532

2633
**Removed**
2734

2835
- :pull:`1255` - Removed the ability to import ``reactpy.html.*`` elements directly. You must now call ``html.*`` to access the elements.
2936
- :pull:`1255` - Removed ``reactpy.sample`` module.
3037
- :pull:`1255` - Removed ``reactpy.svg`` module. Contents previously within ``reactpy.svg.*`` can now be accessed via ``html.svg.*``.
3138
- :pull:`1255` - Removed ``reactpy.html._`` function. Use ``html.fragment`` instead.
39+
- :pull:`1113` - Removed ``reactpy.run``. See the documentation for the new method to run ReactPy applications.
40+
- :pull:`1113` - Removed ``reactpy.backend.*``. See the documentation for the new method to run ReactPy applications.
41+
- :pull:`1113` - All backend related installation extras (such as ``pip install reactpy[starlette]``) have been removed.
42+
- :pull:`1113` - Removed deprecated function ``module_from_template``.
3243

3344
**Fixed**
3445

0 commit comments

Comments
 (0)