Skip to content

Commit 8c1fa14

Browse files
committed
bump to 083 dev
1 parent c82a942 commit 8c1fa14

5 files changed

Lines changed: 62 additions & 60 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.2dev1"
3+
version = "0.8.3dev1"
44
description = "Web apps in pure Python."
55
license.text = "Apache-2.0"
66
authors = [
@@ -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.12.2"
232+
rev = "v0.12.3"
233233
hooks = [
234234
{ id = "ruff-format", args = [
235235
"reflex",
@@ -261,7 +261,7 @@ hooks = [
261261

262262
[[tool.pre-commit.repos]]
263263
repo = "https://github.com/RobertCraigie/pyright-python"
264-
rev = "v1.1.402"
264+
rev = "v1.1.403"
265265
hooks = [{ id = "pyright", args = ["reflex", "tests"], language = "system" }]
266266

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

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.2"
11+
library = "recharts@3.1.0"
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.2"
20+
library = "recharts@3.1.0"
2121

2222

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

reflex/components/sonner/toast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def dict(self, *args: Any, **kwargs: Any) -> dict[str, Any]:
171171
class Toaster(Component):
172172
"""A Toaster Component for displaying toast notifications."""
173173

174-
library: str | None = "sonner@2.0.5"
174+
library: str | None = "sonner@2.0.6"
175175

176176
tag = "Toaster"
177177

reflex/constants/installer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.8",
146+
"rolldown-vite": "7.0.9",
147147
}
148148
OVERRIDES = {
149149
# This should always match the `react` version in DEPENDENCIES for recharts compatibility.

0 commit comments

Comments
 (0)