v0.8.3 Pre-release thread #5593
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.
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.3a'
Schedule
2025-07-17 13:30 PDT: 0.8.3a1 pre-release published for testing
2025-07-18 10:25 PDT: 0.8.3a2 pre-release
2025-07-21: Planned Public release of 0.8.3
0.8.3a2
Release Notes
Disable stateless app detection
If you have a stateless app, now you need to explicitly set
rx.App(enable_state=False)
for it to be truly stateless.reflex db status
A helpful command to visualize your migrations!
Add
rx.el.figure
I'm not sure why it was missing, but better late than never. https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/figure
AppHarness rewrote to use a separate process.
This drops Uvicorn as a testing dependency.
WindowEventListener
You can use
rx.window_event_listener
to add event handlers to the Window instance. For example:would log key presses on the whole window. It also supports:
on_resize
,on_scroll
,on_focus
,on_blur
,on_visibility_change
,on_before_unload
,on_key_down
,on_popstate
, andon_storage
.Default event action flags in
@rx.event
It supports
stop_propagation
,prevent_default
,throttle
,debounce
, andtemporal
.Increase number of default workers in production
You can change the number of workers in production by setting the
GRANIAN_WORKERS
. If you don't, and you are using Redis, we set a higher value depending on the number of cores in your CPU.Add useful information to frontend exceptions
Previously they only had the stack, which was not very helpful. Now they include the type and the message.
Bugfixes
Chores
Full Changelog: v0.8.2...release/reflex-0.8.3
Beta Was this translation helpful? Give feedback.
All reactions