v0.8.2 Pre-release thread #5565
Closed
adhami3310
announced in
Release
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Please report any problems you encounter in this discussion thread or as separate issues on reflex-dev/reflex.
pip install 'reflex~=0.8.2a'
Schedule
2025-07-11 13:25 PDT: 0.8.2a1 pre-release published for testing
2025-07-14: Planned Public release of 0.8.2
Release Notes
Deprecated:
overlay_component
rx.App.overlay_component
is deprecated. You can userx.App.extra_app_wraps
instead.For example, if you had:
You can instead do:
The
(1, "Overlay Component")
defines the nestedness and an ID of the Component. The higher the number the higher it is. For example, if ComponentA had nestedness of 1, and ComponentB had a nestedness of 2, then the output is going to be roughly:Get client ip from
X-FORWARDED-FOR
header if presentIf you were running a your reflex app behind a proxy, this should improve the usefulness of this field.
Enable SitemapPlugin by default
We will enable SitemapPlugin by default for apps that do not specify them in the
plugins
field. If you want to explicitly enable it, add it to plugins:Or if you would like to disable it:
The
disable_plugins
takes a list of strings representing the fully qualified (module + class name) name of the plugins.Frontend is public to network by default
Previously, the backend was exposed to local network (0.0.0.0) but frontend wasn't (127.0.0.1). Now frontend matches the backend. We will add an option to change this later (both frontend and backend).
rx.Config
is now a dataclassIf you were inheriting from rx.Config (for some reason?) you might want to update your code. This provides nicer type hints and might warn you about wrong fields.
Misc
Bugfixes
property
prop to Base HTML tag by @masenf in Addproperty
prop to Base HTML <meta> tag #5548Chores
Full Changelog: v0.8.1...release/reflex-0.8.2
Beta Was this translation helpful? Give feedback.
All reactions