Replies: 2 comments 2 replies
-
My app mostly works on 0.6.1a but I did get the following exception printed in the terminal while uploading a 500MB file. It did not seem to cause my app to fail, just the exception was printed: [ERROR] Application callable raised an exception |
Beta Was this translation helpful? Give feedback.
-
v0.6.1 is released |
Beta Was this translation helpful? Give feedback.
-
Please report any problems you encounter in this discussion thread or as separate issues on reflex-dev/reflex.
pip install 'reflex~=0.6.1a'
Schedule
2024-09-28 09:40 PDT: 0.6.1a1 pre-release published for testing
2024-09-30 17:30 PDT: Public release of 0.6.1
Release Notes
Regression Fixes
New Features
Experimental Dynamic Components
In this release, state vars can be of
rx.Component
type and@rx.var
computed vars can returnrx.Component
, allowing dynamic component structures to be created on the backend at runtime. This enables the full use of python expressions in generated components, as opposed torx.cond
andrx.foreach
.There are performance implications when using dynamic components so prefer static components where possible.
Run Backend with Granian server
install
granian
package and setREFLEX_USE_GRANIAN=1
to run with the new, experimental granian backend (instead of the default uvicorn).USE_SYSTEM_NODE
andUSE_SYSTEM_BUN
If you prefer to run your own versions of
node
andbun
, ensure they are on thePATH
and set these environment variables to1
.Improvements
Bump nextjs to 14.2.13
Miscellaneous
class_name="prose"
to enable default formatting forrx.html
Bug Fixes
Documentation
Other Changes
New Contributors
Full Changelog: v0.6.0...reflex-0.6.1
Beta Was this translation helpful? Give feedback.
All reactions