v0.8.10 Pre-release thread #5766
Closed
adhami3310
announced in
Release
Replies: 1 comment 1 reply
-
Tried it on 2 projects and no issues found so far. |
Beta Was this translation helpful? Give feedback.
1 reply
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.10a'
Schedule
2025-09-05 11:30 PDT: 0.8.10a1 pre-release published for testing
2025-09-08: Planned Public release of 0.8.10
Release Notes
rx.redirect
now takespopup
option.WARNING: This also made it such that
is_external
andreplace
are keyword-only arguments.You can use
popup
along withis_external
to make a popup screen. Be wary that some browsers might block those (occasionally).Pass along SQL Alchemy Pool configuration
You can use the environment variables:
SQLALCHEMY_POOL_SIZE
,SQLALCHEMY_MAX_OVERFLOW
,SQLALCHEMY_POOL_RECYCLE
, andSQLALCHEMY_POOL_TIMEOUT
to configure their corresponding pool configuration.Determinism Fixes
The Reflex compiler should ideally be deterministic. We fixed a few spots where it wasn't. This included switching from sets to dicts in a few places and fixing the seed for the random ID for components. This should ideally limit the number of unintended HMR errors.
Styles Fixes
With
--env prod
, some CSS styles might appear in the wrong order, causing weird styling. This is now fixed.Chores
Full Changelog: v0.8.9...release/reflex-0.8.10
Beta Was this translation helpful? Give feedback.
All reactions