Skip to content

Releases: reactive-python/reactpy

0.27.0

14 May 08:33
Compare
Choose a tag to compare

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 possiblity for a wider variety of component implementations.

  • modules with mount func should not have children - 94d006c
  • limit to flask<2.0 - e7c11d0
  • federate modules with mount function - bf63a62

0.26.0

08 May 04:50
Compare
Choose a tag to compare

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.

  • only one attr dict in vdom constructor - 555086a
  • remove Option setter/getter with current property - 2627f79
  • add cli command to show options - c9e6869
  • check component has model state before render - 6a50d56
  • rename daemon to run_in_thread + misc - 417b687

0.25.0

01 May 01:51
Compare
Choose a tag to compare

Completely refactors layout dispatchers 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:

  • improve docs + simplify multiview - 4129b60
  • require anyio>=3.0 - 24aed28
  • refactor dispatchers - ce8e060

0.24.0

18 Apr 21:50
Compare
Choose a tag to compare

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 IDOM_FEATURE_INDEX_AS_DEFAULT_KEY feature flag has been introduced to allow users to enable this behavior early.

  • 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 - d04faf9
  • EventHandler should not serialize itself - f7a59f2
  • fix docs typos - 42b2e20
  • fixes: #331 - add roadmap to docs - 4226c12

0.23.1

02 Apr 19:20
Compare
Choose a tag to compare
  • fix non-deterministic return order in install() - 494d5c2

0.23.0

02 Apr 05:55
Compare
Choose a tag to compare
  • 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 idom-react-client back into the main repo - 5dcc3bb
  • implement fastapi render server - 94e0620
  • improve docstring for IDOM_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 IDOM_CLIENT_BUILD_DIR option - 53fb23b
  • upgrade snowpack - 5697a2d
  • better logs for idom.run + flask server - 2b34e3d
  • move package to src dir - 066c9c5
  • idom restore uses backup - 773f78e

0.22.5

05 Mar 05:24
Compare
Choose a tag to compare

Commits on Mar 02, 2021

Commits on Mar 03, 2021

  • remove loguru and use builtin logging module 814ab8b

0.22.4

26 Feb 16:40
Compare
Choose a tag to compare

Commits on Feb 26, 2021

  • Replace rstrip with correct handling - a8b4909
  • Correct implementation - e70a44d

0.22.3

09 Feb 07:40
Compare
Choose a tag to compare

Prior to this fix a random available port was used to run servers from by default. This does not provide a great dev experience since you cannot simply refresh a page after restarting a server.

0.22.2

03 Feb 07:18
a8decf8
Compare
Choose a tag to compare

Various minor tweaks to get things working on Windows.

Unfortunately CI is still now running the full test suite for windows though. The web-driver doesn't seem to work correctly. See #289