v0.8.14 Pre-release thread #5846
Closed
adhami3310
announced in
Release
Replies: 1 comment
-
|
The new rx.upload on_drop parameter style doesn't seem to work if we use an attribute of an object provided by a foreach instead of a constant. This works: This: generates this exception during compile: |
Beta Was this translation helpful? Give feedback.
0 replies
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.14a'Schedule
2025-10-02 11:00 PT: 0.8.14a1 pre-release published for testing
2025-10-03 13:25 PT: 0.8.14a2 pre-release published for testing
2025-10-06: Planned Public release of 0.8.14
Release Notes
Revert ColorVar having .color .alpha .shade
ColorVar being a non primitive string (
new String) has proven more problematic than it is useful.Add
--single-portoption toreflex run --env prodSince the app is compiled, there is no need for using a node server to run the frontend and have two ports. You can simply use
reflex run --env prod --single-portto host the frontend and backend on the same port.It's still recommended to serve your frontend on a CDN if possible. Although if you're going for really simple deployments, one port will suffice!
Treat
on_drop=State.handle_upload,ason_drop=State.handle_upload(rx.upload_files(upload_id))the following:
would be converted to
Add primitive radix dialog
It's unstyled, but it makes it easier to use with tailwind and such if you aren't interested in radix themes.
The interface looks almost identical to
rx.dialog.Bugfixes
Chores
Full Changelog: v0.8.13...release/reflex-0.8.14
Beta Was this translation helpful? Give feedback.
All reactions