Skip to content
Merged

0826dev #6081

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "reflex"
version = "0.8.25dev1"
version = "0.8.26dev1"
description = "Web apps in pure Python."
license.text = "Apache-2.0"
authors = [
Expand Down Expand Up @@ -31,7 +31,7 @@ dependencies = [
"python-multipart >=0.0.20,<1.0",
"python-socketio >=5.12.0,<6.0",
"redis >=5.2.1,<8.0",
"reflex-hosting-cli >=0.1.59",
"reflex-hosting-cli >=0.1.61",
"rich >=13,<15",
"sqlmodel >=0.0.27,<0.1",
"starlette >=0.47.0",
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/base/error_boundary.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def on_error_spec(
class ErrorBoundary(Component):
"""A React Error Boundary component that catches unhandled frontend exceptions."""

library = "[email protected].0"
library = "[email protected].3"
tag = "ErrorBoundary"

# Fired when the boundary catches an error.
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/moment/moment.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Moment(NoSSRComponent):

tag: str | None = "Moment"
is_default = True
library: str | None = "react-moment@1.1.3"
library: str | None = "react-moment@1.2.0"
lib_dependencies: list[str] = ["[email protected]"]

# How often the date update (how often time update / 0 to disable).
Expand Down
8 changes: 4 additions & 4 deletions reflex/constants/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class Node(SimpleNamespace):


def _determine_react_router_version() -> str:
default_version = "7.11.0"
default_version = "7.12.0"
if (version := os.getenv("REACT_ROUTER_VERSION")) and version != default_version:
from reflex.utils import console

Expand Down Expand Up @@ -132,7 +132,7 @@ def DEPENDENCIES(cls) -> dict[str, str]:
"react-helmet": "6.1.0",
"react-dom": cls._react_version,
"isbot": "5.1.32",
"socket.io-client": "4.8.2",
"socket.io-client": "4.8.3",
"universal-cookie": "7.2.2",
}

Expand All @@ -143,11 +143,11 @@ def DEPENDENCIES(cls) -> dict[str, str]:
"postcss-import": "16.1.1",
"@react-router/dev": _react_router_version,
"@react-router/fs-routes": _react_router_version,
"vite": "npm:[email protected].0",
"vite": "npm:[email protected].1",
}
OVERRIDES = {
# This should always match the `react` version in DEPENDENCIES for recharts compatibility.
"react-is": _react_version,
"cookie": "1.1.1",
"vite": "npm:[email protected].0",
"vite": "npm:[email protected].1",
}
Loading
Loading