Skip to content
Merged

0818dev #5933

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyi_hashes.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"reflex/components/el/elements/tables.pyi": "686eb70ea7d8c4dafb0cc5c284e76184",
"reflex/components/el/elements/typography.pyi": "684e83dde887dba12badd0fb75c87c04",
"reflex/components/gridjs/datatable.pyi": "98a7e1b3f3b60cafcdfcd8879750ee42",
"reflex/components/lucide/icon.pyi": "cc0bbb10e53b339b8c8f10c00996768c",
"reflex/components/lucide/icon.pyi": "7d03a93e2b222acc4345889c74b43269",
"reflex/components/markdown/markdown.pyi": "2f84254a548e908020949564fc289339",
"reflex/components/moment/moment.pyi": "e1952f1c2c82cef85d91e970d1be64ab",
"reflex/components/plotly/plotly.pyi": "4311a0aae2abcc9226abb6a273f96372",
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "reflex"
version = "0.8.17dev1"
version = "0.8.18dev1"
description = "Web apps in pure Python."
license.text = "Apache-2.0"
authors = [
Expand Down Expand Up @@ -30,8 +30,8 @@ dependencies = [
"pydantic >=1.10.21,<3.0",
"python-multipart >=0.0.20,<1.0",
"python-socketio >=5.12.0,<6.0",
"redis >=5.2.1,<7.0",
"reflex-hosting-cli >=0.1.57",
"redis >=5.2.1,<8.0",
"reflex-hosting-cli >=0.1.58",
"rich >=13,<15",
"sqlmodel >=0.0.27,<0.1",
"starlette >=0.47.0",
Expand Down Expand Up @@ -243,7 +243,7 @@ fail_fast = true

[[tool.pre-commit.repos]]
repo = "https://github.com/astral-sh/ruff-pre-commit"
rev = "v0.14.1"
rev = "v0.14.2"
hooks = [
{ id = "ruff-format", args = [
"reflex",
Expand Down Expand Up @@ -275,7 +275,7 @@ hooks = [

[[tool.pre-commit.repos]]
repo = "https://github.com/RobertCraigie/pyright-python"
rev = "v1.1.406"
rev = "v1.1.407"
hooks = [{ id = "pyright", args = ["reflex", "tests"], language = "system" }]

[[tool.pre-commit.repos]]
Expand Down
4 changes: 3 additions & 1 deletion reflex/components/lucide/icon.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from reflex.vars.base import LiteralVar, Var
from reflex.vars.sequence import LiteralStringVar, StringVar

LUCIDE_LIBRARY = "lucide-react@0.546.0"
LUCIDE_LIBRARY = "lucide-react@0.548.0"


class LucideIconComponent(Component):
Expand Down Expand Up @@ -286,6 +286,7 @@ def _get_imports(self):
"binoculars",
"biohazard",
"bird",
"birdhouse",
"bitcoin",
"blend",
"blinds",
Expand Down Expand Up @@ -828,6 +829,7 @@ def _get_imports(self):
"gallery_vertical_end",
"gallery_vertical",
"gamepad_2",
"gamepad_directional",
"gamepad",
"gantt_chart",
"gauge",
Expand Down
2 changes: 1 addition & 1 deletion reflex/constants/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Bun(SimpleNamespace):
"""Bun constants."""

# The Bun version.
VERSION = "1.3.0"
VERSION = "1.3.1"

# Min Bun Version
MIN_VERSION = "1.3.0"
Expand Down
4 changes: 2 additions & 2 deletions reflex/plugins/tailwind_v4.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Constants(SimpleNamespace):
"""Tailwind constants."""

# The Tailwindcss version
VERSION = "tailwindcss@4.1.15"
VERSION = "tailwindcss@4.1.16"
# The Tailwind config.
CONFIG = "tailwind.config.js"
# Default Tailwind content paths
Expand Down Expand Up @@ -156,7 +156,7 @@ def get_frontend_development_dependencies(self, **context) -> list[str]:
return [
*super().get_frontend_development_dependencies(**context),
Constants.VERSION,
"@tailwindcss/postcss@4.1.15",
"@tailwindcss/postcss@4.1.16",
]

def pre_compile(self, **context):
Expand Down
5 changes: 4 additions & 1 deletion reflex/utils/prerequisites.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import contextlib
import importlib
import importlib.metadata
import inspect
import json
import random
import re
Expand Down Expand Up @@ -435,7 +436,9 @@ async def get_redis_status() -> dict[str, bool | None]:
status = True
redis_client = get_redis()
if redis_client is not None:
await redis_client.ping()
ping_command = redis_client.ping()
if inspect.isawaitable(ping_command):
await ping_command
else:
status = None
except RedisError:
Expand Down
258 changes: 141 additions & 117 deletions uv.lock

Large diffs are not rendered by default.