Changelog#
Note
All notable changes to this project will be recorded in this document. The style of which is based on Keep a Changelog. The versioning scheme for the project adheres to Semantic Versioning. For more info, see the Contributor Guide.
Unreleased#
Fixed
#1118 -
module_from_template
is broken with a recent release ofrequests
#1131 -
module_from_template
did not work when using Flask backend#1200 - Fixed
UnicodeDecodeError
when usingreactpy.web.export
#1224 - Fixes needless unmounting of JavaScript components during each ReactPy render.
#1126 - Fixed missing
event["target"]["checked"]
on checkbox inputs#1191 - Fixed missing static files on sdist Python distribution
Added
#1165 - Allow concurrently rendering discrete component trees - enable this experimental feature by setting
REACTPY_ASYNC_RENDERING=true
. This improves the overall responsiveness of your app in situations where larger renders would otherwise block smaller renders from executing.
Changed
#1171 - Previously
None
, when present in an HTML element, would render as the string"None"
. NowNone
will not render at all. This is consistent with howNone
is handled when returned from components. It also makes it easier to conditionally render elements. For example, previously you would have needed to use a fragment to conditionally render an element by writingsomething if condition else html._()
. Now you can simply writesomething if condition else None
.#1210 - Move hooks from
reactpy.backend.hooks
intoreactpy.core.hooks
.
Deprecated
#1171 - The
Stop
exception. Recent releases ofanyio
have made this exception difficult to use since it now raises anExceptionGroup
. This exception was primarily used for internal testing purposes and so is now deprecated.#1210 - Deprecate
reactpy.backend.hooks
since the hooks have been moved intoreactpy.core.hooks
.
v1.0.2#
Fixed
v1.0.1#
Changed
#1050 - Warn and attempt to fix missing mime types, which can result in
reactpy.run
not working as expected.#1051 - Rename
reactpy.backend.BackendImplementation
toreactpy.backend.BackendType
#1051 - Allow
reactpy.run
to fail in more predictable ways
Fixed
v1.0.0#
released on 2023-03-14
No changes.
v1.0.0-a6#
released on 2023-02-23
Fixed
v1.0.0-a5#
released on 2023-02-21
Fixed
#934 - minor issues with camelCase rewrite CLI utility
v1.0.0-a4#
released on 2023-02-21
Changed
#919 - Reverts #841 as per the conclusion in #916. but preserves the ability to declare attributes with snake_case.
Deprecated
#919 - Declaration of keys via keyword arguments in standard elements. A script has been added to automatically convert old usages where possible.
v1.0.0-a3#
released on 2023-02-02
Fixed
#908 - minor type hint issue with
VdomDictConstructor
Removed
#907 - accidental import of reactpy.testing
v1.0.0-a2#
released on 2023-01-31
Reverted
Fixed
v1.0.0-a1#
released on 2023-01-28
Changed
#841 - Revamped element constructor interface. Now instead of passing a dictionary of attributes to element constructors, attributes are declared using keyword arguments. For example, instead of writing:
html.div({"className": "some-class"}, "some", "text")
You now should write:
html.div("some", "text", class_name="some-class")
Note
All attributes are written using
snake_case
.In conjunction, with these changes, ReactPy now supplies a command line utility that makes a âbest effortâ attempt to automatically convert code to the new API. Usage of this utility is as follows:
reactpy update-html-usages [PATHS]
Where
[PATHS]
is any number of directories or files that should be rewritten.Warning
After running this utility, code comments and formatting may have been altered. Itâs recommended that you run a code formatting tool like Black and manually review and replace any comments that may have been moved.
Fixed
#755 - unification of component and VDOM constructor interfaces. See above.
v0.44.0#
released on 2023-01-27
Deprecated
#876 -
reactpy.widgets.hotswap
. The function has no clear uses outside of some internal applications. For this reason it has been deprecated.
Removed
v0.43.0#
released on 2023-01-09
Deprecated
#870 -
ComponentType.should_render()
. This method was implemented based on reading the React/Preact source code. As it turns out though it seems like itâs mostly a vestige from the fact that both these libraries still support class-based components. The ability for components to not render also caused several bugs.
Fixed
v0.42.0#
released on 2022-12-02
Added
#835 - Ability to customize the
<head>
element of ReactPyâs built-in client.#835 -
vdom_to_html
utility function.#843 - Ability to subscribe to changes that are made to mutable options.
#832 -
del_html_head_body_transform
to remove<html>
,<head>
, and<body>
while preserving children.#699 - Support for form element serialization
Fixed
#582 -
REACTPY_DEBUG_MODE
is now mutable and can be changed at runtime#832 - Fix
html_to_vdom
improperly removing<html>
,<head>
, and<body>
nodes.
Removed
#832 - Removed
reactpy.html.body
as it is currently unusable due to technological limitations, and thus not needed.#840 - remove
REACTPY_FEATURE_INDEX_AS_DEFAULT_KEY
option#835 -
serve_static_files
option from backend configuration
Deprecated
8f3785b - Deprecated
module_from_template
v0.41.0#
released on 2022-11-01
Changed
#823 - The hooks
use_location
anduse_scope
are no longer implementation specific and are now available as top-level imports. Instead of each backend defining these hooks, backends establish aConnectionContext
with this information.#824 - ReactPyâs built-in backend server now expose the following routes:
/_reactpy/assets/<file-path>
/_reactpy/stream/<path>
/_reactpy/modules/<file-path>
/<prefix>/<path>
This should allow the browser to cache static resources. Even if your
url_prefix
is/_reactpy
, your app should still work as expected. Though if youâre usingreactpy-router
, ReactPyâs server routes will always take priority.#824 - Backend implementations now strip any URL prefix in the pathname for
use_location
.#827 -
use_state
now returns a named tuple withvalue
andset_value
fields. This is convenient for adding type annotations if the initial state value is not the same as the values you might pass to the state setter. Where previously you might have to do something like:value: int | None = None value, set_value = use_state(value)
Now you can annotate your state using the
State
class:state: State[int | None] = use_state(None) # access value and setter state.value state.set_value # can still destructure if you need to value, set_value = state
Added
#823 - There is a new
use_connection
hook which returns aConnection
object. ThisConnection
object contains alocation
andscope
, along with acarrier
which is unique to each backend implementation.
v0.40.2#
released on 2022-09-13
Changed
#809 - Avoid the use of JSON patch for diffing models.
v0.40.1#
released on 2022-09-11
Fixed
#806 - Child models after a component fail to render
v0.40.0 (yanked)#
released on 2022-08-13
Fixed
#777 - Fix edge cases where
html_to_vdom
can fail to convert HTML#789 - Conditionally rendered components cannot use contexts
#773 - Use strict equality check for text, numeric, and binary types in hooks
#801 - Accidental mutation of old model causes invalid JSON Patch
Changed
#123 - set default timeout on playwright page for testing
#787 - Track contexts in hooks as state
#787 - remove non-standard
name
argument fromcreate_context
Added
v0.39.0#
released on 2022-06-20
Fixed
#763 -
No module named 'reactpy.server'
fromreactpy.run
#749 - Setting appropriate MIME type for web modules in sanic server implementation
Changed
#763 - renamed various:
reactpy.testing.server -> reactpy.testing.backend
ServerFixture -> BackendFixture
DisplayFixture.server -> DisplayFixture.backend
#765 -
exports_default
parameter is removed frommodule_from_template
.
Added
#765 - ability to specify versions with module templates (e.g.
module_from_template("react@^17.0.0", ...)
).
v0.38.1#
released on 2022-04-15
Fixed
reactive-python/reactpy-jupyter#22 - a missing file extension was causing a problem with WebPack.
v0.38.0#
released on 2022-04-15
No changes.
v0.38.0-a4#
released on 2022-04-15
Added
#733 -
use_debug_value
hook
Changed
#733 - renamed
assert_reactpy_logged
testing util toassert_reactpy_did_log
v0.38.0-a3#
released on 2022-04-15
Changed
#730 - Layout context management is not async
v0.38.0-a2#
released on 2022-04-14
Added
#721 - Implement
use_location()
hook. Navigating to any route below the root of the application will be reflected in thelocation.pathname
. This operates in concert with how ReactPyâs configured routes have changed. This will ultimately work towards resolving #569.
Changed
#721 - The routes ReactPy configures on apps have changed
prefix/_api/modules/* web modules prefix/_api/stream websocket endpoint prefix/* client react app
This means that ReactPyâs client app is available at any route below the configured
url_prefix
besidesprefix/_api
. The_api
route will likely remain a route which is reserved by ReactPy. The route navigated to below theprefix
will be shown inuse_location
.#721 - ReactPyâs client now uses Preact instead of React
#726 - Renamed
reactpy.server
toreactpy.backend
. Other references to âserver implementationsâ have been renamed to âbackend implementationsâ throughout the documentation and code.
Removed
#721 -
redirect_root
server option
v0.38.0-a1#
released on 2022-03-27
Changed
#703 - How ReactPy integrates with servers.
reactpy.run
no longer accepts an app instance to discourage use outside of testing. ReactPyâs server implementations now provideconfigure()
functions instead.reactpy.testing
has been completely reworked in order to support async web drivers#703 -
PerClientStateServer
has been functionally replaced byconfigure
Added
#669 - Access to underlying server requests via contexts
Removed
#669 - Removed
reactpy.widgets.multiview
since basic routing viewuse_scope
is now possible as well as allSharedClientStateServer
implementations.
Fixed
v0.37.2#
released on 2022-03-27
Changed
#701 - The name of
proto
modules totypes
and added a top levelreactpy.types
module
Fixed
#716 - A typo caused ReactPy to use the insecure
ws
web-socket protocol on pages loaded withhttps
instead of the securewss
protocol
v0.37.1#
released on 2022-03-05
No changes.
v0.37.1-a2#
released on 2022-03-02
Fixed:
v0.37.1-a1#
released on 2022-02-28
Fixed:
#684 -
onChange
event for inputs missing key strokes
v0.37.0#
released on 2022-02-27
Added:
Fixed:
#690 - React warning about set state in unmounted component
#688 - Missing reset of schedule_render_later flag
Releases below do not use the âKeep a Changelogâ style guidelines.
v0.36.3#
released on 2022-02-18
Misc bug fixes along with a minor improvement that allows components to return None
to render nothing.
Closed Issues
All child states wiped upon any child key change - #652
Allow NoneType returns within components - #538
Merged Pull Requests
v0.36.2#
released on 2022-02-02
Hot fix for newly introduced DeprecatedOption
:
v0.36.1#
released on 2022-02-02
Includes bug fixes and renames the configuration option REACTPY_WED_MODULES_DIR
to
REACTPY_WEB_MODULES_DIR
with a corresponding deprecation warning.
Closed Issues
Merged Pull Requests
v0.36.0#
released on 2022-01-30
This release includes an important fix for errors produced after #623 was merged.
In addition there is not a new http.script
element which can behave similarly to a
standard HTML <script>
or, if no attributes are given, operate similarly to an
effect. If no attributes are given, and when the script evaluates to a function, that
function will be called the first time it is mounted and any time the content of the
script is subsequently changed. If the function then returns another function, that
returned function will be called when the script is removed from the view, or just
before the content of the script changes.
Closed Issues
Pull Requests
v0.35.4#
released on 2022-01-27
Keys for elements at the root of a component were not being tracked. Thus key changes for elements at the root did not trigger unmounts.
Closed Issues
Change Key of Parent Element Does Not Unmount Children - #622
Pull Requests
fix issue with key-based identity - #623
v0.35.3#
released on 2022-01-27
As part of #614, elements which changed type were not deeply unmounted. This behavior is probably undesirable though since the state for children of the element in question would persist (probably unexpectedly).
Pull Requests
Always deeply unmount - #620
v0.35.2#
released on 2022-01-26
This release includes several bug fixes. The most significant of which is the ability to change the type of an element in the try (i.e. to and from being a component) without getting an error. Originally the errors were introduced because it was though changing element type would not be desirable. This was not the case though - swapping types turns out to be quite common and useful.
Closed Issues
Allow Children with the Same Key to Vary in Type - #613
Client Always Looks for Server at â/â - #611
Web modules get double file extensions with v0.35.x - #605
Pull Requests
v0.35.1#
released on 2022-01-18
Re-add accidentally deleted py.typed
file to distribution. See PEP-561 for info on
this marker file.
v0.35.0#
released on 2022-01-18
The highlight of this release is that the default âkeyâ of all elements will be their index amongst their neighbors. Previously this
behavior could be engaged by setting REACTPY_FEATURE_INDEX_AS_DEFAULT_KEY=1
when
running ReactPy. In this release though, you will need to explicitly turn off this feature
(i.e. =0
) to return to the old behavior. With this change, some may notice
additional error logs which warn that:
Key not specified for child in list ...
This is saying is that an element or component which was created in a list does not have
a unique key
. For more information on how to mitigate this warning refer to the docs
on Organizing Items With Keys.
Closed Issues
Support Starlette Server - #588
Fix unhandled case in module_from_template - #584
Hide âChildrenâ within REACTPY_DEBUG_MODE key warnings - #562
Bug in Element Key Identity - #556
Add iFrame to reactpy.html - #542
Create a use_linked_inputs widget instead of Input - #475
React warning from module_from_template - #440
Use Index as Default Key - #351
Pull Requests
v0.34.0#
released on 2021-12-16
This release contains a variety of minor fixes and improvements which came out of
rewriting the documentation. The most significant of these changes is the remove of
target element attributes from the top-level of event data dictionaries. For example,
instead of being able to find the value of an input at event["value"]
it will
instead be found at event["target"]["value"]
. For a short period we will issue a
DeprecationWarning
when target attributes are requested at the top-level of the
event dictionary. As part of this change we also add event["currentTarget"]
and
event["relatedTarget"]
keys to the event dictionary as well as a
event[some_target]["boundingClientRect"]
where some_target
may be "target"
,
"currentTarget"
or "relatedTarget"
.
Closed Issues
Move target attributes to
event['target']
- #548
Pull Requests
v0.33.3#
released on 2021-10-08
Contains a small number of bug fixes and improvements. The most significant change is the addition of a warning stating that REACTPY_FEATURE_INDEX_AS_DEFAULT_KEY=1 will become the default in a future release. Beyond that, a lesser improvement makes it possible to use the default export from a Javascript module when calling module_from_template by specifying exports_default=True as a parameter. A
Closed Issues
Memory leak in SharedClientStateServer - #511
Cannot use default export in react template - #502
Add warning that element index will be used as the default key in a future release - #428
Pull Requests
v0.33.2#
released on 2021-09-05
A release to fix a memory leak caused by event handlers that were not being removed when components updated.
Closed Issues
Non-root component event handlers cause memory leaks - #510
v0.33.1#
released on 2021-09-02
A hot fix for a regression introduced in 0.33.0
where the root element of the layout
could not be updated. See #498 for more info. A regression test for this will
be introduced in a future release.
Pull Requests
Fix 498 pt1 - #501
v0.33.0#
released on 2021-09-02
The most significant fix in this release is for a regression which manifested in #480, #489, and #451 which resulted from an issue in the way JSON patches were being applied client-side. This was ultimately resolved by #490. While itâs difficult to test this without a more thorough Javascript suite, we added a test that should hopefully catch this in the future by proxy.
The most important breaking change, is yet another which modifies the Custom Javascript
Component interface. We now add a create()
function to the bind()
interface that
allows ReactPyâs client to recursively create components from that (and only that) import
source. Prior to this, the interface was given unrendered models for child elements. The
imported module was then responsible for rendering them. This placed a large burden on
the author to understand how to handle these unrendered child models. In addition, in
the React template used by module_from_template
we needed to import a version of
@reactpy/client
from the CDN - this had already caused some issues where the
template required a version of @reactpy/client
in the which had not been released
yet.
Closed Issues
Client-side error in mount-01d35dc3.js - #489
Style Cannot Be Updated - #480
Displaying error messages in the client via __error__ tag can leak secrets - #454
Examples broken in docs - #451
Rework docs landing page - #446
eventHandlers should be a mapping of generic callables - #423
Allow customization of built-in ReactPy client - #253
Pull Requests
move VdomDict and VdomJson to proto - #492
only send error info in debug mode - #491
correctly apply client-side JSON patch - #490
add script to set version of all packages in ReactPy - #483
Pass import source to bind - #482
Do not mutate client-side model - #481
assume import source children come from same source - #479
make an EventHandlerType protocol - #476
Update issue form - #471
v0.32.0#
released on 2021-08-20
In addition to a variety of bug fixes and other minor improvements, thereâs a breaking
change to the custom component interface - instead of exporting multiple functions that
render custom components, we simply expect a single bind()
function.
binding function then must return an object with a render()
and unmount()
function. This change was made in order to better support the rendering of child models.
See Custom Javascript Components for details on the new interface.
Closed Issues
Docs broken on Firefox - #469
URL resolution for web modules does not consider urls starting with / - #460
Query params in package name for module_from_template not stripped - #455
Make docs section margins larger - #450
Search broken in docs - #443
Move src/reactpy/client out of Python package - #429
Use composition instead of classes async with Layout and LifeCycleHook - #412
Remove Python language extension - #282
Add keys to models so React doesnât complain of child arrays requiring them - #255
Fix binder link in docs - #231
Pull Requests
Update issue form - #471
improve heading legibility - #470
fix search in docs by upgrading sphinx - #462
rework custom component interface with bind() func - #458
parse package as url path in module_from_template - #456
add file extensions to import - #439
fix key warnings - #438
fix #429 - move client JS to top of src/ dir - #430
v0.31.0#
released on 2021-07-14
The Layout
is now a prototype, and Layout.update
is no
longer a public API. This is combined with a much more significant refactor of the
underlying rendering logic.
The biggest issue that has been resolved relates to the relationship between
LifeCycleHook
and Layout
. Previously, the
LifeCycleHook
accepted a layout instance in its constructor and called
Layout.update
. Additionally, the Layout
would manipulate the
LifeCycleHook.component
attribute whenever the component instance changed after a
render. The former behavior leads to a non-linear code path thatâs a touch to follow.
The latter behavior is the most egregious design issue since thereâs absolutely no local
indication that the component instance can be swapped out (not even a comment).
The new refactor no longer binds component or layout instances to a LifeCycleHook
.
Instead, the hook simply receives an un-parametrized callback that can be triggered to
schedule a render. While some error logs lose clarity (since we canât say what component
caused them). This change precludes a need for the layout to ever mutate the hook.
To accommodate this change, the internal representation of the layoutâs state had to change. Previously, a class-based approach was take, where methods of the state-holding classes were meant to handle all use cases. Now we rely much more heavily on very simple (and mostly static) data structures that have purpose built constructor functions that much more narrowly address each use case.
After these refactors, ComponentTypes
no longer needs a unique id
attribute.
Instead, a unique ID is generated internally which is associated with the
LifeCycleState
, not component instances since they are inherently transient.
Pull Requests
fix #419 and #412 - #422
v0.30.1#
released on 2021-07-13
Removes the usage of the id()
function for generating unique ideas because there
were situations where the IDs bound to the lifetime of an object are problematic. Also
adds a warning Deprecation
warning to render functions that include the
parameter key
. Itâs been decided that allowing key
to be used in this way can
lead to confusing bugs.
Pull Requests
v0.30.0#
released on 2021-06-28
With recent changes to the custom component interface, itâs now possible to remove all runtime reliance on NPM. Doing so has many virtuous knock-on effects:
Removal of large chunks of code
Greatly simplifies how users dynamically experiment with React component libraries, because their usage no longer requires a build step. Instead they can be loaded in the browser from a CDN that distributes ESM modules.
The built-in client code needs to make fewer assumption about where static resources are located, and as a result, itâs also easier to coordinate the server and client code.
Alternate client implementations benefit from this simplicity. Now, itâs possible to install @reactpy/client normally and write a
loadImportSource()
function that looks for route serving the contents of REACTPY_WEB_MODULES_DIR.
This change includes large breaking changes:
The CLI is being removed as it wonât be needed any longer
The reactpy.client is being removed in favor of a stripped down
reactpy.web
moduleThe REACTPY_CLIENT_BUILD_DIR config option will no longer exist and a new
REACTPY_WEB_MODULES_DIR
which only contains dynamically linked web modules. While this new directoryâs location is configurable, it is meant to be transient and should not be re-used across sessions.
The new reactpy.web
module takes a simpler approach to constructing import sources and
expands upon the logic for resolving imports by allowing exports from URLs to be
discovered too. Now, that ReactPy isnât using NPM to dynamically install component
libraries reactpy.web
instead creates JS modules from template files and links them
into REACTPY_WEB_MODULES_DIR
. These templates ultimately direct the browser to load the
desired library from a CDN.
Pull Requests
v0.29.0#
released on 2021-06-20
Contains breaking changes, the most significant of which are:
Moves the runtime client build directory to a âuser dataâ directory rather a directory where ReactPyâs code was installed. This has the advantage of not requiring write permissions to rebuild the client if ReactPy was installed globally rather than in a virtual environment.
The custom JS component interface has been reworked to expose an API similar to the
createElement
,render
,unmountComponentAtNode
functions from React.
Issues Fixed:
Highlighted Commits:
add try/except around event handling - f2bf589
do not call find_builtin_server_type at import time - e29745e
import default from react/reactDOM/fast-json-patch - 74c8a34
no named exports for react/reactDOM - f13bf35
debug logs for runtime build dir create/update - af94f4e
put runtime build in user data dir - 0af69d2
change shared to update_on_change - 6c09a86
rework js module interface + fix docs - 699cc66
correctly serialize File object - a2398dc
v0.28.0#
released on 2021-06-01
Includes a wide variety of improvements:
support
currentTime
attr of audio/video elementssupport for the
files
attribute from the target of input elementsmodel children are passed to the Javascript
mount()
functionbegan to add tests to client-side javascript
add a
mountLayoutWithWebSocket
function to@reactpy/client
and breaking changes, the most significant of which are:
Refactor existing server implementations as functions adhering to a protocol. This greatly simplified much of the code responsible for setting up servers and avoids the use of inheritance.
Switch to a monorepo-style structure for Javascript enabling a greater separation of concerns and common workspace scripts in
package.json
.Use a
loadImportSource()
function instead of trying to infer the path to dynamic modules which was brittle and inflexible. Allowing the specific client implementation to discover where âimport sourcesâ are located means@reactpy/client
doesnât need to try and devise a solution that will work for all cases. The fallout from this change is the addition of importSource.sourceType which, for the moment can either be"NAME"
or"URL"
where the former indicates the client is expected to know where to find a module of that name, and the latter should (usually) be passed on toimport()
Issues Fixed:
Highlighted Commits:
xfail due to bug in Python - fee49a7
add importSource sourceType field - 795bf94
refactor client to use loadImportSource param - bb5e3f3
turn app into a package - b282fc2
add debug logs - 4b4f9b7
add basic docs about JS test suite - 9ecfde5
only use nox for python tests - 5056b7b
test event serialization - 05fd86c
serialize files attribute of file input element - f0d00b7
rename hasMount to exportsMount - d55a28f
refactor flask - 94681b6
refactor tornado + misc fixes to sanic/fastapi - 16c9209
refactor fastapi using server protocol - 0cc03ba
refactor sanic server - 43d4b4f
use server protocol instead of inheritance - abe0fde
support currentTime attr of audio/video elements - 975b54a
pass children as props to mount() - 9494bc0
v0.27.0#
released on 2021-05-14
Introduces changes to the interface for custom Javascript components. This now allows
JS modules to export a mount(element, component, props)
function which can be used
to bind new elements to the DOM instead of using the applicationâs own React instance
and specifying React as a peer dependency. This avoids a wide variety of potential
issues with implementing custom components and opens up the possibility for a wider
variety of component implementations.
Highlighted Commits:
v0.26.0#
released on 2021-05-07
A collection of minor fixes and changes that, as a whole, add up to something requiring
a minor release. The most significant addition is a fix for situations where a
Layout
can raise an error when a component whose state has been delete is rendered.
This occurs when element has been unmounted, but a latent event tells the layout it
should be updated. For example, when a user clicks a button rapidly, and the resulting
update deletes the original button.
Highlighted Commits:
v0.25.0#
released on 2021-04-30
Completely refactors layout dispatcher by switching from a class-based approach to one
that leverages pure functions. While the logic itself isnât any simpler, it was easier
to implement, and now hopefully understand, correctly. This conversion was motivated by
several bugs that had cropped up related to improper usage of anyio
.
Issues Fixed:
Highlighted Commits:
v0.24.0#
released on 2021-04-18
This release contains an update that allows components and elements to have âidentityâ.
That is, their state can be preserved across updates. Before this point, only the state
for the component at the root of an update was preserved. Now though, the state for any
component and element with a key
that is unique amongst its siblings, will be
preserved so long as this is also true for parent elements/components within the scope
of the current update. Thus, only when the key of the element or component changes will
its state do the same.
In a future update, the default key for all elements and components will be its index
with respect to its siblings in the layout. The
REACTPY_FEATURE_INDEX_AS_DEFAULT_KEY
feature flag has been introduced
to allow users to enable this behavior early.
Highlighted Commits:
add feature flag for default key behavior - 42ee01c
use unique object instead of index as default key - 5727ab4
make HookCatcher/StaticEventHandlers testing utils - 1abfd76
add element and component identity - 5548f02
minor doc updates - e5511d9
add tests for callback identity preservation with keys - 72e03ec
add âkeyâ to VDOM spec - c3236fe
Rename validate_serialized_vdom to validate_vdom_json - d04faf9
EventHandler should not serialize itself - f7a59f2
fix docs typos - 42b2e20
fixes: #331 - add roadmap to docs - 4226c12
v0.23.1#
released on 2021-04-02
Highlighted Commits:
fix non-deterministic return order in install() - 494d5c2
v0.23.0#
released on 2021-04-01
Highlighted Commits:
add changelog to docs - 9cbfe94
automatically reconnect to server - 3477e2b
allow no reconnect in client - ef263c2
cleaner way to specify import sources - ea19a07
add the reactpy-react-client back into the main repo - 5dcc3bb
implement fastapi render server - 94e0620
improve docstring for REACTPY_CLIENT_BUILD_DIR - 962d885
cli improvements - 788fd86
rename SERIALIZED_VDOM_JSON_SCHEMA to VDOM_JSON_SCHEMA - 74ad578
better logging for modules - 39565b9
move client utils into private module - f825e96
redirect BUILD_DIR imports to REACTPY_CLIENT_BUILD_DIR option - 53fb23b
upgrade snowpack - 5697a2d
better logs for reactpy.run + flask server - 2b34e3d
move package to src dir - 066c9c5
reactpy restore uses backup - 773f78e