Skip to content

Commit a5d9a71

Browse files
authored
088dev (#5719)
* 088dev * bump ruff + fix pyi
1 parent 7acc7d9 commit a5d9a71

File tree

10 files changed

+207
-199
lines changed

10 files changed

+207
-199
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": "e3f299e59bb8ff87aa949c6b606551c9",
4040
"reflex/components/el/elements/typography.pyi": "b4ec4ffb448f7a9b5f94712404448d9e",
4141
"reflex/components/gridjs/datatable.pyi": "98a7e1b3f3b60cafcdfcd8879750ee42",
42-
"reflex/components/lucide/icon.pyi": "020db5c37c5a6bee5912532a89d6deda",
42+
"reflex/components/lucide/icon.pyi": "69e5b61d7a914321fdc03280960d511c",
4343
"reflex/components/markdown/markdown.pyi": "2f84254a548e908020949564fc289339",
4444
"reflex/components/moment/moment.pyi": "93fa4c6009390fe9400197ab52735b84",
4545
"reflex/components/plotly/plotly.pyi": "4311a0aae2abcc9226abb6a273f96372",

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "reflex"
3-
version = "0.8.7dev1"
3+
version = "0.8.8dev1"
44
description = "Web apps in pure Python."
55
license.text = "Apache-2.0"
66
authors = [
@@ -23,7 +23,7 @@ dependencies = [
2323
"alembic >=1.15.2,<2.0",
2424
"click >=8.2",
2525
"granian[reload] >=2.4.0",
26-
"httpx >=0.28.0,<1.0",
26+
"httpx >=0.23.3,<1.0",
2727
"jinja2 >=3.1.2,<4.0",
2828
"packaging >=24.2,<26",
2929
"platformdirs >=4.3.7,<5.0",
@@ -32,7 +32,7 @@ dependencies = [
3232
"python-multipart >=0.0.20,<1.0",
3333
"python-socketio >=5.12.0,<6.0",
3434
"redis >=5.2.1,<7.0",
35-
"reflex-hosting-cli >=0.1.54",
35+
"reflex-hosting-cli >=0.1.55",
3636
"rich >=13,<15",
3737
"sqlmodel >=0.0.24,<0.1",
3838
"starlette >=0.47.0",
@@ -233,7 +233,7 @@ fail_fast = true
233233

234234
[[tool.pre-commit.repos]]
235235
repo = "https://github.com/astral-sh/ruff-pre-commit"
236-
rev = "v0.12.8"
236+
rev = "v0.12.9"
237237
hooks = [
238238
{ id = "ruff-format", args = [
239239
"reflex",

reflex/components/lucide/icon.py

Lines changed: 2 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.539.0"
9+
LUCIDE_LIBRARY = "lucide-react@0.540.0"
1010

1111

1212
class LucideIconComponent(Component):
@@ -1330,6 +1330,7 @@ def _get_imports(self):
13301330
"rocket",
13311331
"rocking_chair",
13321332
"roller_coaster",
1333+
"rose",
13331334
"rotate_3d",
13341335
"rotate_ccw_key",
13351336
"rotate_ccw_square",

reflex/components/radix/primitives/accordion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def _inherited_variant_selector(
5454
class AccordionComponent(RadixPrimitiveComponent):
5555
"""Base class for all @radix-ui/accordion components."""
5656

57-
library = "@radix-ui/[email protected].11"
57+
library = "@radix-ui/[email protected].12"
5858

5959
# The color scheme of the component.
6060
color_scheme: Var[LiteralAccentColor]

reflex/components/radix/primitives/drawer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class DrawerComponent(RadixPrimitiveComponent):
2121

2222
library = "[email protected]"
2323

24-
lib_dependencies: list[str] = ["@radix-ui/[email protected].14"]
24+
lib_dependencies: list[str] = ["@radix-ui/[email protected].15"]
2525

2626

2727
LiteralDirectionType = Literal["top", "bottom", "left", "right"]

reflex/components/radix/primitives/form.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class FormComponent(RadixPrimitiveComponentWithClassName):
1818
"""Base class for all @radix-ui/react-form components."""
1919

20-
library = "@radix-ui/[email protected].7"
20+
library = "@radix-ui/[email protected].8"
2121

2222

2323
class FormRoot(FormComponent, HTMLForm):

reflex/components/radix/primitives/slider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class SliderComponent(RadixPrimitiveComponentWithClassName):
1818
"""Base class for all @radix-ui/react-slider components."""
1919

20-
library = "@radix-ui/[email protected].5"
20+
library = "@radix-ui/[email protected].6"
2121

2222

2323
def on_value_event_spec(

reflex/constants/installer.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class Node(SimpleNamespace):
7575

7676

7777
def _determine_react_router_version() -> str:
78-
default_version = "7.8.0"
78+
default_version = "7.8.1"
7979
if (version := os.getenv("REACT_ROUTER_VERSION")) and version != default_version:
8080
from reflex.utils import console
8181

@@ -131,7 +131,7 @@ def DEPENDENCIES(cls) -> dict[str, str]:
131131
"react": cls._react_version,
132132
"react-helmet": "6.1.0",
133133
"react-dom": cls._react_version,
134-
"isbot": "5.1.29",
134+
"isbot": "5.1.30",
135135
"socket.io-client": "4.8.1",
136136
"universal-cookie": "7.2.2",
137137
}
@@ -143,11 +143,11 @@ def DEPENDENCIES(cls) -> dict[str, str]:
143143
"postcss-import": "16.1.1",
144144
"@react-router/dev": _react_router_version,
145145
"@react-router/fs-routes": _react_router_version,
146-
"vite": "npm:[email protected].2",
146+
"vite": "npm:[email protected].3",
147147
}
148148
OVERRIDES = {
149149
# This should always match the `react` version in DEPENDENCIES for recharts compatibility.
150150
"react-is": _react_version,
151151
"cookie": "1.0.2",
152-
"vite": "npm:[email protected].2",
152+
"vite": "npm:[email protected].3",
153153
}

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].11"
20+
VERSION = "[email protected].12"
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].11",
159+
"@tailwindcss/[email protected].12",
160160
]
161161

162162
def pre_compile(self, **context):

0 commit comments

Comments
 (0)