github reflex-dev/reflex v0.7.5

2 days ago

Release Notes

NextJS back at latest version

As we have had more bugs related to the downgrade, we now have upgraded it back and disable turbopack by default. You can overwrite nextjs version with NEXTJS_VERSION but it is very much NOT SUPPORTED. Expect bugs when you do so.

Event handlers as Vars

Not flashy, but you can use handlers in conds and such

on_click=rx.cond(
  SnakeState.game_over,
  SnakeState.start_game,
  SnakeState.pause_game
)

This only works when the event handler takes no arguments, however, you should use the much more reliable:

on_click=rx.cond(
  SnakeState.game_over,
  SnakeState.start_game(),
  SnakeState.pause_game()
)

Where you call the event handlers. You can use lambda syntax to provide arguments for them.

Expose Socket constants for further customizability

Exposes REFLEX_SOCKET_MAX_HTTP_BUFFER_SIZE, REFLEX_SOCKET_INTERVAL, REFLEX_SOCKET_TIMEOUT to be modified.

Add support for ndigits for dunder method round for int vars

round(State.int_field, 3)

Expose run_in_thread

rx.run_in_thread is a simple wrapper around asyncio to run a function in a different thread.

Allow None as children of components

Previously we errored, but now we allow it, it doesn't render to anything.

Allow arguments for rx.memo event handlers

@rx.memo
def counter(on_text: rx.EventHandler[rx.event.passthrough_event_spec(str)]):
    return rx.hstack(
        rx.button("Increment", on_click=on_text("Increment")),
        rx.button("Decrement", on_click=on_text("Decrement")),
    )


def index():
    return rx.vstack(rx.text("Counter"), counter(on_text=rx.console_log))

You can even define your own event spec

def hello_who(who: rx.Var[str]) -> tuple[rx.Var[str]]:
    return (rx.Var.create(f"Hello, {who}!"),)


@rx.memo
def counter(on_text: rx.EventHandler[hello_who]):
    return rx.hstack(
        rx.button("Masen", on_click=on_text("Masen")),
        rx.button("Not Masen", on_click=on_text("Not Masen")),
    )


def index():
    return rx.vstack(rx.text("Who Are You?"), counter(on_text=rx.console_log))
  • allow arguments to be passed to rx memo event handlers by @adhami3310 in #5021

Bugfixes

Chores

Full Changelog: v0.7.4...v0.7.5

Don't miss a new reflex release

NewReleases is sending notifications on new releases.