Skip to content
Merged

0814dev #5834

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.13dev1"
version = "0.8.14dev1"
description = "Web apps in pure Python."
license.text = "Apache-2.0"
authors = [
Expand Down Expand Up @@ -229,7 +229,7 @@ fail_fast = true

[[tool.pre-commit.repos]]
repo = "https://github.com/astral-sh/ruff-pre-commit"
rev = "v0.13.1"
rev = "v0.13.2"
hooks = [
{ id = "ruff-format", args = [
"reflex",
Expand Down
18 changes: 9 additions & 9 deletions reflex/components/plotly/plotly.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class Plotly(NoSSRComponent):

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js@3.1.0"]
lib_dependencies: list[str] = ["plotly.js@3.1.1"]

tag = "Plot"

Expand Down Expand Up @@ -303,7 +303,7 @@ class PlotlyBasic(Plotly):

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-basic-dist-min@3.1.0"]
lib_dependencies: list[str] = ["plotly.js-basic-dist-min@3.1.1"]

def add_imports(self) -> ImportDict | list[ImportDict]:
"""Add imports for the plotly basic component.
Expand All @@ -329,7 +329,7 @@ class PlotlyCartesian(Plotly):

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-cartesian-dist-min@3.1.0"]
lib_dependencies: list[str] = ["plotly.js-cartesian-dist-min@3.1.1"]

def add_imports(self) -> ImportDict | list[ImportDict]:
"""Add imports for the plotly cartesian component.
Expand All @@ -355,7 +355,7 @@ class PlotlyGeo(Plotly):

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-geo-dist-min@3.1.0"]
lib_dependencies: list[str] = ["plotly.js-geo-dist-min@3.1.1"]

def add_imports(self) -> ImportDict | list[ImportDict]:
"""Add imports for the plotly geo component.
Expand All @@ -381,7 +381,7 @@ class PlotlyGl3d(Plotly):

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-gl3d-dist-min@3.1.0"]
lib_dependencies: list[str] = ["plotly.js-gl3d-dist-min@3.1.1"]

def add_imports(self) -> ImportDict | list[ImportDict]:
"""Add imports for the plotly 3d component.
Expand All @@ -407,7 +407,7 @@ class PlotlyGl2d(Plotly):

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-gl2d-dist-min@3.1.0"]
lib_dependencies: list[str] = ["plotly.js-gl2d-dist-min@3.1.1"]

def add_imports(self) -> ImportDict | list[ImportDict]:
"""Add imports for the plotly 2d component.
Expand All @@ -433,7 +433,7 @@ class PlotlyMapbox(Plotly):

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-mapbox-dist-min@3.1.0"]
lib_dependencies: list[str] = ["plotly.js-mapbox-dist-min@3.1.1"]

def add_imports(self) -> ImportDict | list[ImportDict]:
"""Add imports for the plotly mapbox component.
Expand All @@ -459,7 +459,7 @@ class PlotlyFinance(Plotly):

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-finance-dist-min@3.1.0"]
lib_dependencies: list[str] = ["plotly.js-finance-dist-min@3.1.1"]

def add_imports(self) -> ImportDict | list[ImportDict]:
"""Add imports for the plotly finance component.
Expand All @@ -485,7 +485,7 @@ class PlotlyStrict(Plotly):

library = "react-plotly.js@2.6.0"

lib_dependencies: list[str] = ["plotly.js-strict-dist-min@3.1.0"]
lib_dependencies: list[str] = ["plotly.js-strict-dist-min@3.1.1"]

def add_imports(self) -> ImportDict | list[ImportDict]:
"""Add imports for the plotly strict component.
Expand Down
10 changes: 5 additions & 5 deletions reflex/constants/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Bun(SimpleNamespace):
"""Bun constants."""

# The Bun version.
VERSION = "1.2.22"
VERSION = "1.2.23"

# Min Bun Version
MIN_VERSION = "1.2.17"
Expand Down Expand Up @@ -75,7 +75,7 @@ class Node(SimpleNamespace):


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

Expand Down Expand Up @@ -131,7 +131,7 @@ def DEPENDENCIES(cls) -> dict[str, str]:
"react": cls._react_version,
"react-helmet": "6.1.0",
"react-dom": cls._react_version,
"isbot": "5.1.30",
"isbot": "5.1.31",
"socket.io-client": "4.8.1",
"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:rolldown-vite@7.1.12",
"vite": "npm:rolldown-vite@7.1.13",
}
OVERRIDES = {
# This should always match the `react` version in DEPENDENCIES for recharts compatibility.
"react-is": _react_version,
"cookie": "1.0.2",
"vite": "npm:rolldown-vite@7.1.12",
"vite": "npm:rolldown-vite@7.1.13",
}
2 changes: 1 addition & 1 deletion reflex/plugins/shared_tailwind.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class TailwindPlugin(PluginBase):
config: TailwindConfig = dataclasses.field(
default_factory=lambda: TailwindConfig(
plugins=[
"@tailwindcss/typography@0.5.18",
"@tailwindcss/typography@0.5.19",
],
)
)
Expand Down
Loading
Loading