Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2025-07-07 | 2.2 kB | |
v0.8.1 source code.tar.gz | 2025-07-07 | 2.8 MB | |
v0.8.1 source code.zip | 2025-07-07 | 3.1 MB | |
Totals: 3 Items | 5.9 MB | 0 |
Release Notes
router.url
If you just want the url of the page the user is on, then rx.State.router.url
is what you need. It's very similar to urllib.parse url
, so you can do host
, port
, and whatnot. The plan is to move away from router.page
.
- add url and route_id to routerdata as a replacement for pagedata by @adhami3310 in https://github.com/reflex-dev/reflex/pull/5516
Blur focus
Do you want to de-focus an element? You can use rx.event.blur_focus
- If we have
set_focus()
we needblur_focus()
. by @riebecj in https://github.com/reflex-dev/reflex/pull/5522
Load plugins from environ
If you need to override plugins through an environment variable, now you can do so.
:::properties
REFLEX_PLUGINS=reflex.plugins.tailwind_v3.TailwindV3Plugin
- load plugins from env variable by @adhami3310 in https://github.com/reflex-dev/reflex/pull/5524
rx.el.a maps to react router link
You can still get the original through rx.el.elements.a
.
- ENG-6503: use react-router Link instead of rx.el.a by @masenf in https://github.com/reflex-dev/reflex/pull/5529
Bugfixes
- fix gunicorn in prod mode by @Lendemor in https://github.com/reflex-dev/reflex/pull/5521
- use deterministic hash for stateful component names by @adhami3310 in https://github.com/reflex-dev/reflex/pull/5525
- Limit scope of bun react-dom/server hack by @masenf in https://github.com/reflex-dev/reflex/pull/5532
- only access .name for upload component by @adhami3310 in https://github.com/reflex-dev/reflex/pull/5515
- use jsx for root by @adhami3310 in https://github.com/reflex-dev/reflex/pull/5535
- add error handling for port process check by @adhami3310 in https://github.com/reflex-dev/reflex/pull/5540
- remove keyframes as template string and inline it by @adhami3310 in https://github.com/reflex-dev/reflex/pull/5541
Chores
- bump to 081 for dev by @adhami3310 in https://github.com/reflex-dev/reflex/pull/5514
New Contributors
- @riebecj made their first contribution in https://github.com/reflex-dev/reflex/pull/5522
Full Changelog: https://github.com/reflex-dev/reflex/compare/v0.8.0...v0.8.1