Skip to content

Commit d18256a

Browse files
authored
0814dev (#5834)
1 parent 0225b96 commit d18256a

File tree

5 files changed

+199
-152
lines changed

5 files changed

+199
-152
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.13dev1"
3+
version = "0.8.14dev1"
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.13.1"
232+
rev = "v0.13.2"
233233
hooks = [
234234
{ id = "ruff-format", args = [
235235
"reflex",

reflex/components/plotly/plotly.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class Plotly(NoSSRComponent):
7272

7373
library = "[email protected]"
7474

75-
lib_dependencies: list[str] = ["[email protected].0"]
75+
lib_dependencies: list[str] = ["[email protected].1"]
7676

7777
tag = "Plot"
7878

@@ -303,7 +303,7 @@ class PlotlyBasic(Plotly):
303303

304304
library = "[email protected]"
305305

306-
lib_dependencies: list[str] = ["[email protected].0"]
306+
lib_dependencies: list[str] = ["[email protected].1"]
307307

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

330330
library = "[email protected]"
331331

332-
lib_dependencies: list[str] = ["[email protected].0"]
332+
lib_dependencies: list[str] = ["[email protected].1"]
333333

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

356356
library = "[email protected]"
357357

358-
lib_dependencies: list[str] = ["[email protected].0"]
358+
lib_dependencies: list[str] = ["[email protected].1"]
359359

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

382382
library = "[email protected]"
383383

384-
lib_dependencies: list[str] = ["[email protected].0"]
384+
lib_dependencies: list[str] = ["[email protected].1"]
385385

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

408408
library = "[email protected]"
409409

410-
lib_dependencies: list[str] = ["[email protected].0"]
410+
lib_dependencies: list[str] = ["[email protected].1"]
411411

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

434434
library = "[email protected]"
435435

436-
lib_dependencies: list[str] = ["[email protected].0"]
436+
lib_dependencies: list[str] = ["[email protected].1"]
437437

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

460460
library = "[email protected]"
461461

462-
lib_dependencies: list[str] = ["[email protected].0"]
462+
lib_dependencies: list[str] = ["[email protected].1"]
463463

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

486486
library = "[email protected]"
487487

488-
lib_dependencies: list[str] = ["[email protected].0"]
488+
lib_dependencies: list[str] = ["[email protected].1"]
489489

490490
def add_imports(self) -> ImportDict | list[ImportDict]:
491491
"""Add imports for the plotly strict component.

reflex/constants/installer.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Bun(SimpleNamespace):
1414
"""Bun constants."""
1515

1616
# The Bun version.
17-
VERSION = "1.2.22"
17+
VERSION = "1.2.23"
1818

1919
# Min Bun Version
2020
MIN_VERSION = "1.2.17"
@@ -75,7 +75,7 @@ class Node(SimpleNamespace):
7575

7676

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

@@ -131,7 +131,7 @@ def DEPENDENCIES(cls) -> dict[str, str]:
131131
"react": cls._react_version,
132132
"react-helmet": "6.1.0",
133133
"react-dom": cls._react_version,
134-
"isbot": "5.1.30",
134+
"isbot": "5.1.31",
135135
"socket.io-client": "4.8.1",
136136
"universal-cookie": "7.2.2",
137137
}
@@ -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:[email protected].12",
146+
"vite": "npm:[email protected].13",
147147
}
148148
OVERRIDES = {
149149
# This should always match the `react` version in DEPENDENCIES for recharts compatibility.
150150
"react-is": _react_version,
151151
"cookie": "1.0.2",
152-
"vite": "npm:[email protected].12",
152+
"vite": "npm:[email protected].13",
153153
}

reflex/plugins/shared_tailwind.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ class TailwindPlugin(PluginBase):
179179
config: TailwindConfig = dataclasses.field(
180180
default_factory=lambda: TailwindConfig(
181181
plugins=[
182-
"@tailwindcss/[email protected].18",
182+
"@tailwindcss/[email protected].19",
183183
],
184184
)
185185
)

0 commit comments

Comments
 (0)