@@ -3,15 +3,10 @@ Changelog
33
44.. note ::
55
6- The ReactPy team manages their short and long term plans with `GitHub Projects
7- <https://github.com/orgs/reactive-python/projects/1> `__. If you have questions about what
8- the team are working on, or have feedback on how issues should be prioritized, feel
9- free to :discussion-type: `open up a discussion <question> `.
10-
11- All notable changes to this project will be recorded in this document. The style of
12- which is based on `Keep a Changelog <https://keepachangelog.com/ >`__. The versioning
13- scheme for the project adheres to `Semantic Versioning <https://semver.org/ >`__. For
14- more info, see the :ref: `Contributor Guide <Creating a Changelog Entry >`.
6+ All notable changes to this project will be recorded in this document. The style of
7+ which is based on `Keep a Changelog <https://keepachangelog.com/ >`__. The versioning
8+ scheme for the project adheres to `Semantic Versioning <https://semver.org/ >`__. For
9+ more info, see the :ref: `Contributor Guide <Creating a Changelog Entry >`.
1510
1611
1712.. INSTRUCTIONS FOR CHANGELOG CONTRIBUTORS
@@ -25,15 +20,18 @@ Unreleased
2520
2621**Fixed **
2722
28- - :pull: `1118 ` - `module_from_template ` is broken with a recent release of `requests `
29- - :pull: `1131 ` - `module_from_template ` did not work when using Flask backend
23+ - :pull: `1118 ` - ``module_from_template `` is broken with a recent release of ``requests ``
24+ - :pull: `1131 ` - ``module_from_template `` did not work when using Flask backend
25+ - :pull: `1200 ` - Fixed ``UnicodeDecodeError `` when using ``reactpy.web.export ``
26+ - :pull: `1224 ` - Fixes needless unmounting of JavaScript components during each ReactPy render.
27+ - :pull: `1126 ` - Fixed missing ``event["target"]["checked"] `` on checkbox inputs
3028
3129**Added **
3230
33- - :pull: `1165 ` - Allow concurrent renders of discrete component tree - enable this
34- experimental feature by setting `REACTPY_ASYNC_RENDERING=true `. This should improve
35- the overall responsiveness of your app, particularly when handling larger renders
36- that would otherwise block faster renders from being processed .
31+ - :pull: `1165 ` - Allow concurrently rendering discrete component trees - enable this
32+ experimental feature by setting `` REACTPY_ASYNC_RENDERING=true `` . This improves
33+ the overall responsiveness of your app in situations where larger renders would
34+ otherwise block smaller renders from executing .
3735
3836**Changed **
3937
@@ -44,12 +42,15 @@ Unreleased
4442 fragment to conditionally render an element by writing
4543 ``something if condition else html._() ``. Now you can simply write
4644 ``something if condition else None ``.
45+ - :pull: `1210 ` - Move hooks from ``reactpy.backend.hooks `` into ``reactpy.core.hooks ``.
4746
4847**Deprecated **
4948
5049- :pull: `1171 ` - The ``Stop `` exception. Recent releases of ``anyio `` have made this
5150 exception difficult to use since it now raises an ``ExceptionGroup ``. This exception
5251 was primarily used for internal testing purposes and so is now deprecated.
52+ - :pull: `1210 ` - Deprecate ``reactpy.backend.hooks `` since the hooks have been moved into
53+ ``reactpy.core.hooks ``.
5354
5455
5556v1.0.2
0 commit comments