From 922fa891ba3eecd831ef43b2a8e2800ff51ad255 Mon Sep 17 00:00:00 2001 From: Archmonger <16909269+Archmonger@users.noreply.github.com> Date: Fri, 6 Feb 2026 19:16:08 -0800 Subject: [PATCH] v2.0.0b9 --- CHANGELOG.md | 218 ++++++++++++++++++++++++++++++++ docs/source/about/changelog.rst | 1 + src/js/bun.lockb | Bin 91794 -> 92578 bytes src/js/package.json | 2 +- src/reactpy/__init__.py | 2 +- 5 files changed, 221 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..24dd74663 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,218 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + + + +## [Unreleased] + +### Added + +- Added support for Python 3.12, 3.13, and 3.14. +- Added type hints to `reactpy.html` attributes. +- Added support for nested components in web modules +- Added support for inline JavaScript as event handlers or other attributes that expect a callable via `reactpy.types.InlineJavaScript` +- Event functions can now call `event.preventDefault()` and `event.stopPropagation()` methods directly on the event data object, rather than using the `@event` decorator. +- Event data now supports accessing properties via dot notation (ex. `event.target.value`). +- Added `reactpy.types.Event` to provide type hints for the standard `data` function argument (for example `def on_click(event: Event): ...`). +- Added `asgi` and `jinja` installation extras (for example `pip install reactpy[asgi, jinja]`). +- Added `reactpy.executors.asgi.ReactPy` that can be used to run ReactPy in standalone mode via ASGI. +- Added `reactpy.executors.asgi.ReactPyCsr` that can be used to run ReactPy in standalone mode via ASGI, but rendered entirely client-sided. +- Added `reactpy.executors.asgi.ReactPyMiddleware` that can be used to utilize ReactPy within any ASGI compatible framework. +- Added `reactpy.templatetags.ReactPyJinja` that can be used alongside `ReactPyMiddleware` to embed several ReactPy components into your existing application. This includes the following template tags: `{% component %}`, `{% pyscript_component %}`, and `{% pyscript_setup %}`. +- Added `reactpy.pyscript_component` that can be used to embed ReactPy components into your existing application. +- Added `reactpy.use_async_effect` hook. +- Added `reactpy.Vdom` primitive interface for creating VDOM dictionaries. +- Added `reactpy.reactjs.component_from_file` to import ReactJS components from a file. +- Added `reactpy.reactjs.component_from_url` to import ReactJS components from a URL. +- Added `reactpy.reactjs.component_from_string` to import ReactJS components from a string. +- Added `reactpy.reactjs.component_from_npm` to import ReactJS components from NPM. +- Added `reactpy.h` as a shorthand alias for `reactpy.html`. + +### Changed + +- The `key` attribute is now stored within `attributes` in the VDOM spec. +- Substitute client-side usage of `react` with `preact`. +- Script elements no longer support behaving like effects. They now strictly behave like plain HTML scripts. +- The `reactpy.html` module has been modified to allow for auto-creation of any HTML nodes. For example, you can create a `` element by calling `html.data_table()`. +- Change `set_state` comparison method to check equality with `==` more consistently. +- Add support for rendering `@component` children within `vdom_to_html`. +- Renamed the `use_location` hook's `search` attribute to `query_string`. +- Renamed the `use_location` hook's `pathname` attribute to `path`. +- Renamed `reactpy.config.REACTPY_DEBUG_MODE` to `reactpy.config.REACTPY_DEBUG`. +- ReactPy no longer auto-converts `snake_case` props to `camelCase`. It is now the responsibility of the user to ensure that props are in the correct format. +- Rewrite the `event-to-object` package to be more robust at handling properties on events. +- Custom JS components will now automatically assume you are using ReactJS in the absence of a `bind` function. +- Refactor layout rendering logic to improve readability and maintainability. +- `@reactpy/client` now exports `React` and `ReactDOM`. +- `reactpy.html` will now automatically flatten lists recursively (ex. `reactpy.html(["child1", ["child2"]])`) +- `reactpy.utils.reactpy_to_string` will now retain the user's original casing for `data-*` and `aria-*` attributes. +- `reactpy.utils.string_to_reactpy` has been upgraded to handle more complex scenarios without causing ReactJS rendering errors. +- `reactpy.core.vdom._CustomVdomDictConstructor` has been moved to `reactpy.types.CustomVdomConstructor`. +- `reactpy.core.vdom._EllipsisRepr` has been moved to `reactpy.types.EllipsisRepr`. +- `reactpy.types.VdomDictConstructor` has been renamed to `reactpy.types.VdomConstructor`. +- `REACTPY_ASYNC_RENDERING` can now de-duplicate and cascade renders where necessary. +- `REACTPY_ASYNC_RENDERING` is now defaulted to `True` for up to 40x performance improvements in environments with high concurrency. + +### Deprecated + +- `reactpy.web.module_from_file` is deprecated. Use `reactpy.reactjs.component_from_file` instead. +- `reactpy.web.module_from_url` is deprecated. Use `reactpy.reactjs.component_from_url` instead. +- `reactpy.web.module_from_string` is deprecated. Use `reactpy.reactjs.component_from_string` instead. +- `reactpy.web.export` is deprecated. Use `reactpy.reactjs.component_from_*` instead. +- `reactpy.web.*` is deprecated. Use `reactpy.reactjs.*` instead. + +### Removed + +- Removed support for Python 3.9 and 3.10. +- Removed the ability to import `reactpy.html.*` elements directly. You must now call `html.*` to access the elements. +- Removed backend specific installation extras (such as `pip install reactpy[starlette]`). +- Removed support for async functions within `reactpy.use_effect` hook. Use `reactpy.use_async_effect` instead. +- Removed deprecated function `module_from_template`. +- Removed deprecated exception type `reactpy.core.serve.Stop`. +- Removed deprecated component `reactpy.widgets.hotswap`. +- Removed `reactpy.sample` module. +- Removed `reactpy.svg` module. Contents previously within `reactpy.svg.*` can now be accessed via `reactpy.html.svg.*`. +- Removed `reactpy.html._` function. Use `reactpy.html(...)` or `reactpy.html.fragment(...)` instead. +- Removed `reactpy.run`. See the documentation for the new method to run ReactPy applications. +- Removed `reactpy.backend.*`. See the documentation for the new method to run ReactPy applications. +- Removed `reactpy.core.types` module. Use `reactpy.types` instead. +- Removed `reactpy.utils.html_to_vdom`. Use `reactpy.utils.string_to_reactpy` instead. +- Removed `reactpy.utils.vdom_to_html`. Use `reactpy.utils.reactpy_to_string` instead. +- Removed `reactpy.vdom`. Use `reactpy.Vdom` instead. +- Removed `reactpy.core.make_vdom_constructor`. Use `reactpy.Vdom` instead. +- Removed `reactpy.core.custom_vdom_constructor`. Use `reactpy.Vdom` instead. +- Removed `reactpy.Layout` top-level re-export. Use `reactpy.core.layout.Layout` instead. +- Removed `reactpy.types.LayoutType`. Use `reactpy.types.BaseLayout` instead. +- Removed `reactpy.types.ContextProviderType`. Use `reactpy.types.ContextProvider` instead. +- Removed `reactpy.core.hooks._ContextProvider`. Use `reactpy.types.ContextProvider` instead. +- Removed `reactpy.web.utils`. Use `reactpy.reactjs.utils` instead. + +### Fixed + +- Fixed a bug where script elements would not render to the DOM as plain text. +- Fixed a bug where the `key` property provided within server-side ReactPy code was failing to propagate to the front-end JavaScript components. +- Fixed a bug where `RuntimeError("Hook stack is in an invalid state")` errors could be generated when using a webserver that reuses threads. +- Allow for ReactPy and ReactJS components to be arbitrarily inserted onto the page with any possible hierarchy. + +## [1.1.0] - 2024-11-24 + +### Fixed + +- Fixed broken `module_from_template` due to a recent release of `requests`. +- Fixed `module_from_template` not working when using Flask backend. +- Fixed `UnicodeDecodeError` when using `reactpy.web.export`. +- Fixed needless unmounting of JavaScript components during each ReactPy render. +- Fixed missing `event["target"]["checked"]` on checkbox inputs. +- Fixed missing static files on `sdist` Python distribution. + +### Added + +- 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 + +- Previously `None`, when present in an HTML element, would render as the string `"None"`. Now `None` will not render at all. This is now equivalent to how `None` is handled when returned from components. +- Move hooks from `reactpy.backend.hooks` into `reactpy.core.hooks`. + +### Deprecated + +- The `Stop` exception. Recent releases of `anyio` have made this exception difficult to use since it now raises an `ExceptionGroup`. This exception was primarily used for internal testing purposes and so is now deprecated. +- Deprecate `reactpy.backend.hooks` since the hooks have been moved into `reactpy.core.hooks`. + +## [1.0.2] - 2023-07-03 + +### Fixed + +- Fix rendering bug when children change positions. + +## [1.0.1] - 2023-06-16 + +### Changed + +- Warn and attempt to fix missing mime types, which can result in `reactpy.run` not working as expected. +- Rename `reactpy.backend.BackendImplementation` to `reactpy.backend.BackendType`. +- Allow `reactpy.run` to fail in more predictable ways. + +### Fixed + +- Better traceback for JSON serialization errors. +- Explain that JS component attributes must be JSON. +- Fix `reactpy.run` port assignment sometimes attaching to in-use ports on Windows. +- Fix `reactpy.run` not recognizing `fastapi`. + +## [1.0.0] - 2023-03-14 + +### Changed + +- Reverts PR 841 as per the conclusion in discussion 916, but preserves the ability to declare attributes with snake_case. +- Reverts PR 886 due to issue 896. +- 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: + +### Deprecated + +- Declaration of keys via keyword arguments in standard elements. A script has been added to automatically convert old usages where possible. + +### Removed + +- Accidental import of reactpy.testing. + +### Fixed + +- Minor issues with camelCase rewrite CLI utility. +- Minor type hint issue with `VdomDictConstructor`. +- Stale event handlers after disconnect/reconnect cycle. +- Fixed CLI not registered as entry point. +- Unification of component and VDOM constructor interfaces. + +[Unreleased]: https://github.com/reactive-python/reactpy/compare/reactpy-v1.1.0...HEAD +[1.1.0]: https://github.com/reactive-python/reactpy/compare/reactpy-v1.0.2...reactpy-v1.1.0 +[1.0.2]: https://github.com/reactive-python/reactpy/compare/reactpy-v1.0.1...reactpy-v1.0.2 +[1.0.1]: https://github.com/reactive-python/reactpy/compare/reactpy-v1.0.0...reactpy-v1.0.1 +[1.0.0]: https://github.com/reactive-python/reactpy/compare/0.44.0...reactpy-v1.0.0 +[0.44.0]: https://github.com/reactive-python/reactpy/compare/0.43.0...0.44.0 +[0.43.0]: https://github.com/reactive-python/reactpy/compare/0.42.0...0.43.0 +[0.42.0]: https://github.com/reactive-python/reactpy/compare/0.41.0...0.42.0 +[0.41.0]: https://github.com/reactive-python/reactpy/compare/0.40.2...0.41.0 +[0.40.2]: https://github.com/reactive-python/reactpy/compare/0.40.1...0.40.2 +[0.40.1]: https://github.com/reactive-python/reactpy/compare/0.40.0...0.40.1 +[0.40.0]: https://github.com/reactive-python/reactpy/compare/0.39.0...0.40.0 +[0.39.0]: https://github.com/reactive-python/reactpy/compare/0.38.1...0.39.0 +[0.38.1]: https://github.com/reactive-python/reactpy/compare/0.38.0...0.38.1 +[0.38.0]: https://github.com/reactive-python/reactpy/compare/0.37.2...0.38.0 +[0.37.2]: https://github.com/reactive-python/reactpy/compare/0.37.1...0.37.2 +[0.37.1]: https://github.com/reactive-python/reactpy/compare/0.37.0...0.37.1 +[0.37.0]: https://github.com/reactive-python/reactpy/compare/0.36.3...0.37.0 +[0.36.3]: https://github.com/reactive-python/reactpy/compare/0.36.2...0.36.3 +[0.36.2]: https://github.com/reactive-python/reactpy/compare/0.36.1...0.36.2 +[0.36.1]: https://github.com/reactive-python/reactpy/compare/0.36.0...0.36.1 +[0.36.0]: https://github.com/reactive-python/reactpy/compare/0.35.4...0.36.0 +[0.35.4]: https://github.com/reactive-python/reactpy/compare/0.35.3...0.35.4 +[0.35.3]: https://github.com/reactive-python/reactpy/compare/0.35.2...0.35.3 +[0.35.2]: https://github.com/reactive-python/reactpy/compare/0.35.1...0.35.2 +[0.35.1]: https://github.com/reactive-python/reactpy/compare/0.35.0...0.35.1 +[0.35.0]: https://github.com/reactive-python/reactpy/compare/0.34.0...0.35.0 +[0.34.0]: https://github.com/reactive-python/reactpy/compare/0.33.3...0.34.0 +[0.33.3]: https://github.com/reactive-python/reactpy/compare/0.33.2...0.33.3 +[0.33.2]: https://github.com/reactive-python/reactpy/compare/0.33.1...0.33.2 +[0.33.1]: https://github.com/reactive-python/reactpy/compare/0.33.0...0.33.1 +[0.33.0]: https://github.com/reactive-python/reactpy/compare/0.32.0...0.33.0 +[0.32.0]: https://github.com/reactive-python/reactpy/compare/0.31.0...0.32.0 +[0.31.0]: https://github.com/reactive-python/reactpy/compare/0.30.1...0.31.0 +[0.30.1]: https://github.com/reactive-python/reactpy/compare/0.30.0...0.30.1 +[0.30.0]: https://github.com/reactive-python/reactpy/compare/0.29.0...0.30.0 +[0.29.0]: https://github.com/reactive-python/reactpy/compare/0.28.0...0.29.0 +[0.28.0]: https://github.com/reactive-python/reactpy/compare/0.27.0...0.28.0 +[0.27.0]: https://github.com/reactive-python/reactpy/compare/0.26.0...0.27.0 +[0.26.0]: https://github.com/reactive-python/reactpy/compare/0.25.0...0.26.0 +[0.25.0]: https://github.com/reactive-python/reactpy/compare/0.24.0...0.25.0 +[0.24.0]: https://github.com/reactive-python/reactpy/compare/0.23.1...0.24.0 +[0.23.1]: https://github.com/reactive-python/reactpy/compare/0.23.0...0.23.1 +[0.23.0]: https://github.com/reactive-python/reactpy/releases/tag/0.23.0 diff --git a/docs/source/about/changelog.rst b/docs/source/about/changelog.rst index 578400cac..9d6e1912a 100644 --- a/docs/source/about/changelog.rst +++ b/docs/source/about/changelog.rst @@ -1,3 +1,4 @@ +.. THIS CHANGELOG HAS BEEN DEPRECATED. SEE TOP LEVEL CHANGELOG.md FILE INSTEAD. --- Changelog ========= diff --git a/src/js/bun.lockb b/src/js/bun.lockb index 99af1eb11968595691a6be102f39a343b0f7f909..21e1e7ca7c5366c5487d9147f350974be43da3c0 100644 GIT binary patch delta 8763 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 diff --git a/src/js/package.json b/src/js/package.json index 24c53fc70..d98c9d8dd 100644 --- a/src/js/package.json +++ b/src/js/package.json @@ -12,7 +12,7 @@ "json-pointer": "^0.6.2", "@types/json-pointer": "^1.0.34", "@reactpy/client": "file:./packages/@reactpy/client", - "event-to-object": "^1.0.1" + "event-to-object": "2.0.0" }, "devDependencies": { "@eslint/js": "^9.39.1", diff --git a/src/reactpy/__init__.py b/src/reactpy/__init__.py index 0356dd540..0f2fe0d63 100644 --- a/src/reactpy/__init__.py +++ b/src/reactpy/__init__.py @@ -23,7 +23,7 @@ from reactpy.utils import Ref, reactpy_to_string, string_to_reactpy __author__ = "The Reactive Python Team" -__version__ = "2.0.0b8" +__version__ = "2.0.0b9" __all__ = [ "Ref",