Skip to content

Commit c4254ed

Browse files
authored
0818dev (#5933)
* 0818dev * latest vite seems effy
1 parent f050374 commit c4254ed

File tree

7 files changed

+157
-128
lines changed

7 files changed

+157
-128
lines changed

pyi_hashes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"reflex/components/el/elements/tables.pyi": "686eb70ea7d8c4dafb0cc5c284e76184",
4040
"reflex/components/el/elements/typography.pyi": "684e83dde887dba12badd0fb75c87c04",
4141
"reflex/components/gridjs/datatable.pyi": "98a7e1b3f3b60cafcdfcd8879750ee42",
42-
"reflex/components/lucide/icon.pyi": "cc0bbb10e53b339b8c8f10c00996768c",
42+
"reflex/components/lucide/icon.pyi": "7d03a93e2b222acc4345889c74b43269",
4343
"reflex/components/markdown/markdown.pyi": "2f84254a548e908020949564fc289339",
4444
"reflex/components/moment/moment.pyi": "e1952f1c2c82cef85d91e970d1be64ab",
4545
"reflex/components/plotly/plotly.pyi": "4311a0aae2abcc9226abb6a273f96372",

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "reflex"
3-
version = "0.8.17dev1"
3+
version = "0.8.18dev1"
44
description = "Web apps in pure Python."
55
license.text = "Apache-2.0"
66
authors = [
@@ -30,8 +30,8 @@ dependencies = [
3030
"pydantic >=1.10.21,<3.0",
3131
"python-multipart >=0.0.20,<1.0",
3232
"python-socketio >=5.12.0,<6.0",
33-
"redis >=5.2.1,<7.0",
34-
"reflex-hosting-cli >=0.1.57",
33+
"redis >=5.2.1,<8.0",
34+
"reflex-hosting-cli >=0.1.58",
3535
"rich >=13,<15",
3636
"sqlmodel >=0.0.27,<0.1",
3737
"starlette >=0.47.0",
@@ -243,7 +243,7 @@ fail_fast = true
243243

244244
[[tool.pre-commit.repos]]
245245
repo = "https://github.com/astral-sh/ruff-pre-commit"
246-
rev = "v0.14.1"
246+
rev = "v0.14.2"
247247
hooks = [
248248
{ id = "ruff-format", args = [
249249
"reflex",
@@ -275,7 +275,7 @@ hooks = [
275275

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

281281
[[tool.pre-commit.repos]]

reflex/components/lucide/icon.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from reflex.vars.base import LiteralVar, Var
77
from reflex.vars.sequence import LiteralStringVar, StringVar
88

9-
LUCIDE_LIBRARY = "lucide-react@0.546.0"
9+
LUCIDE_LIBRARY = "lucide-react@0.548.0"
1010

1111

1212
class LucideIconComponent(Component):
@@ -286,6 +286,7 @@ def _get_imports(self):
286286
"binoculars",
287287
"biohazard",
288288
"bird",
289+
"birdhouse",
289290
"bitcoin",
290291
"blend",
291292
"blinds",
@@ -828,6 +829,7 @@ def _get_imports(self):
828829
"gallery_vertical_end",
829830
"gallery_vertical",
830831
"gamepad_2",
832+
"gamepad_directional",
831833
"gamepad",
832834
"gantt_chart",
833835
"gauge",

reflex/constants/installer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Bun(SimpleNamespace):
1414
"""Bun constants."""
1515

1616
# The Bun version.
17-
VERSION = "1.3.0"
17+
VERSION = "1.3.1"
1818

1919
# Min Bun Version
2020
MIN_VERSION = "1.3.0"

reflex/plugins/tailwind_v4.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Constants(SimpleNamespace):
1717
"""Tailwind constants."""
1818

1919
# The Tailwindcss version
20-
VERSION = "[email protected].15"
20+
VERSION = "[email protected].16"
2121
# The Tailwind config.
2222
CONFIG = "tailwind.config.js"
2323
# Default Tailwind content paths
@@ -156,7 +156,7 @@ def get_frontend_development_dependencies(self, **context) -> list[str]:
156156
return [
157157
*super().get_frontend_development_dependencies(**context),
158158
Constants.VERSION,
159-
"@tailwindcss/[email protected].15",
159+
"@tailwindcss/[email protected].16",
160160
]
161161

162162
def pre_compile(self, **context):

reflex/utils/prerequisites.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import contextlib
66
import importlib
77
import importlib.metadata
8+
import inspect
89
import json
910
import random
1011
import re
@@ -435,7 +436,9 @@ async def get_redis_status() -> dict[str, bool | None]:
435436
status = True
436437
redis_client = get_redis()
437438
if redis_client is not None:
438-
await redis_client.ping()
439+
ping_command = redis_client.ping()
440+
if inspect.isawaitable(ping_command):
441+
await ping_command
439442
else:
440443
status = None
441444
except RedisError:

uv.lock

Lines changed: 141 additions & 117 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)