You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please report any problems you encounter in this discussion thread or as separate issues on reflex-dev/reflex.
pip install 'reflex~=0.7.2a'
Schedule
2025-03-06 14:30 PST: 0.7.2a1 pre-release published for testing
2025-03-11 12:20 PST: 0.7.2a2 pre-release published for testing
2025-03-11: Planned Public release of 0.7.2
You can overwrite a serializer in reflex through @rx.serializer (previously we were erroring here), for example:
@serializer(to=str, overwrite=True) # overwrite flag here suppresses warning about overriding a builtin serializer as an intentional decisiondefserialize_uuid(uuid: UUID) ->str:
return"UUID"+str(uuid)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Please report any problems you encounter in this discussion thread or as separate issues on reflex-dev/reflex.
pip install 'reflex~=0.7.2a'
Schedule
2025-03-06 14:30 PST: 0.7.2a1 pre-release published for testing
2025-03-11 12:20 PST: 0.7.2a2 pre-release published for testing
2025-03-11: Planned Public release of 0.7.2
Release Notes
New in 0.7.2a2
on_submit
by @masenf in Support event_actions in Formon_submit
#4912noopener
forwindow.open
by @adhami3310 in use noopener for window.open #4933What's Changed
Deprecated instantiating components through Component.init
You should have probably been doing
.create
.Overwrite rx.serializer
You can overwrite a serializer in reflex through
@rx.serializer
(previously we were erroring here), for example:Use .f with Vars
You can now use the
.f
in f-strings with state Vars, for example:Note that we now error when you provide a formatter that we don't support. PRs are welcome in extending the functionality beyond
:.Xf
.React 19 post-mitigation
[email protected]
for recharts compatibility by @masenf in Override[email protected]
for recharts compatibility #4857Compiler
Component changes
Misc
Full Changelog: v0.7.1...release/reflex-0.7.2
Beta Was this translation helpful? Give feedback.
All reactions