Skip to content

Commit 726711e

Browse files
authored
0826dev (#6081)
1 parent f32a686 commit 726711e

File tree

5 files changed

+514
-509
lines changed

5 files changed

+514
-509
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "reflex"
3-
version = "0.8.25dev1"
3+
version = "0.8.26dev1"
44
description = "Web apps in pure Python."
55
license.text = "Apache-2.0"
66
authors = [
@@ -31,7 +31,7 @@ dependencies = [
3131
"python-multipart >=0.0.20,<1.0",
3232
"python-socketio >=5.12.0,<6.0",
3333
"redis >=5.2.1,<8.0",
34-
"reflex-hosting-cli >=0.1.59",
34+
"reflex-hosting-cli >=0.1.61",
3535
"rich >=13,<15",
3636
"sqlmodel >=0.0.27,<0.1",
3737
"starlette >=0.47.0",

reflex/components/base/error_boundary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def on_error_spec(
3636
class ErrorBoundary(Component):
3737
"""A React Error Boundary component that catches unhandled frontend exceptions."""
3838

39-
library = "react-error-boundary@6.0.0"
39+
library = "react-error-boundary@6.0.3"
4040
tag = "ErrorBoundary"
4141

4242
# Fired when the boundary catches an error.

reflex/components/moment/moment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Moment(NoSSRComponent):
2929

3030
tag: str | None = "Moment"
3131
is_default = True
32-
library: str | None = "react-moment@1.1.3"
32+
library: str | None = "react-moment@1.2.0"
3333
lib_dependencies: list[str] = ["moment@2.30.1"]
3434

3535
# How often the date update (how often time update / 0 to disable).

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.11.0"
78+
default_version = "7.12.0"
7979
if (version := os.getenv("REACT_ROUTER_VERSION")) and version != default_version:
8080
from reflex.utils import console
8181

@@ -132,7 +132,7 @@ def DEPENDENCIES(cls) -> dict[str, str]:
132132
"react-helmet": "6.1.0",
133133
"react-dom": cls._react_version,
134134
"isbot": "5.1.32",
135-
"socket.io-client": "4.8.2",
135+
"socket.io-client": "4.8.3",
136136
"universal-cookie": "7.2.2",
137137
}
138138

@@ -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:rolldown-vite@7.3.0",
146+
"vite": "npm:rolldown-vite@7.3.1",
147147
}
148148
OVERRIDES = {
149149
# This should always match the `react` version in DEPENDENCIES for recharts compatibility.
150150
"react-is": _react_version,
151151
"cookie": "1.1.1",
152-
"vite": "npm:rolldown-vite@7.3.0",
152+
"vite": "npm:rolldown-vite@7.3.1",
153153
}

0 commit comments

Comments
 (0)