Skip to content

Commit 09ed66c

Browse files
authored
bump to 081 for dev (#5514)
* bump to 081 for dev * update frontend deps
1 parent 80942f6 commit 09ed66c

7 files changed

Lines changed: 306 additions & 264 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "reflex"
3-
version = "0.8.0dev1"
3+
version = "0.8.1dev1"
44
description = "Web apps in pure Python."
55
license.text = "Apache-2.0"
66
authors = [
@@ -32,7 +32,7 @@ dependencies = [
3232
"python-socketio >=5.12.0,<6.0",
3333
"python-multipart >=0.0.20,<1.0",
3434
"redis >=5.2.1,<7.0",
35-
"reflex-hosting-cli >=0.1.47",
35+
"reflex-hosting-cli >=0.1.51",
3636
"rich >=13,<15",
3737
"sqlmodel >=0.0.24,<0.1",
3838
"click >=8.2",
@@ -229,7 +229,7 @@ fail_fast = true
229229

230230
[[tool.pre-commit.repos]]
231231
repo = "https://github.com/astral-sh/ruff-pre-commit"
232-
rev = "v0.11.13"
232+
rev = "v0.12.1"
233233
hooks = [
234234
{ id = "ruff-format", args = [
235235
"reflex",

reflex/components/recharts/recharts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class Recharts(Component):
99
"""A component that wraps a recharts lib."""
1010

11-
library = "recharts@3.0.0"
11+
library = "recharts@3.0.2"
1212

1313
def _get_style(self) -> dict:
1414
return {"wrapperStyle": self.style}
@@ -17,7 +17,7 @@ def _get_style(self) -> dict:
1717
class RechartsCharts(NoSSRComponent, MemoizationLeaf):
1818
"""A component that wraps a recharts lib."""
1919

20-
library = "recharts@3.0.0"
20+
library = "recharts@3.0.2"
2121

2222

2323
LiteralAnimationEasing = Literal["ease", "ease-in", "ease-out", "ease-in-out", "linear"]

reflex/constants/installer.py

Lines changed: 2 additions & 2 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.6.2"
78+
default_version = "7.6.3"
7979
if (version := os.getenv("REACT_ROUTER_VERSION")) and version != default_version:
8080
from reflex.utils import console
8181

@@ -143,7 +143,7 @@ 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-
"rolldown-vite": "7.0.1",
146+
"rolldown-vite": "7.0.3",
147147
}
148148
OVERRIDES = {
149149
# This should always match the `react` version in DEPENDENCIES for recharts compatibility.

reflex/event.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ class JavascriptHTMLInputElement:
570570
class JavascriptInputEvent:
571571
"""Interface for a Javascript InputEvent https://developer.mozilla.org/en-US/docs/Web/API/InputEvent."""
572572

573-
target: JavascriptHTMLInputElement = JavascriptHTMLInputElement() # noqa: RUF009
573+
target: JavascriptHTMLInputElement = JavascriptHTMLInputElement()
574574

575575

576576
@dataclasses.dataclass(

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 = "tailwindcss@4.1.10"
20+
VERSION = "tailwindcss@4.1.11"
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/postcss@4.1.10",
159+
"@tailwindcss/postcss@4.1.11",
160160
]
161161

162162
def pre_compile(self, **context):

tests/units/utils/test_serializers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ class BaseSubclass(Base):
191191
(Color(color="accent", shade=1, alpha=True), "var(--accent-a1)"),
192192
(decimal.Decimal("123.456"), 123.456),
193193
(decimal.Decimal("-0.5"), -0.5),
194-
(decimal.Decimal("0"), 0.0),
194+
(decimal.Decimal(0), 0.0),
195195
],
196196
)
197197
def test_serialize(value: Any, expected: str):

uv.lock

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

0 commit comments

Comments
 (0)