Skip to content

Commit f926504

Browse files
authored
upgrade 085dev (#5639)
1 parent d3861fe commit f926504

File tree

6 files changed

+265
-222
lines changed

6 files changed

+265
-222
lines changed

pyi_hashes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"reflex/components/el/elements/tables.pyi": "e5573a4a8c9cb13d8169a596b6699b31",
4141
"reflex/components/el/elements/typography.pyi": "9f9f6990749f4a3c643f8ab344df00cd",
4242
"reflex/components/gridjs/datatable.pyi": "5c19d2b5788a8520d43a4d6dcc247705",
43-
"reflex/components/lucide/icon.pyi": "637bf77970ef805ac4bdc1eba77ece76",
43+
"reflex/components/lucide/icon.pyi": "3d2203dae277f5b3404ba5cc4ef9d9e8",
4444
"reflex/components/markdown/markdown.pyi": "a569dd6a60d67baebfc4d04cddf85020",
4545
"reflex/components/moment/moment.pyi": "4ca29ae9cae720eb5c4955682e4cb7df",
4646
"reflex/components/plotly/plotly.pyi": "1de86aa6881e59d4053206e62e3039c3",

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.4dev1"
3+
version = "0.8.5dev1"
44
description = "Web apps in pure Python."
55
license.text = "Apache-2.0"
66
authors = [
@@ -32,7 +32,7 @@ dependencies = [
3232
"python-multipart >=0.0.20,<1.0",
3333
"python-socketio >=5.12.0,<6.0",
3434
"redis >=5.2.1,<7.0",
35-
"reflex-hosting-cli >=0.1.51",
35+
"reflex-hosting-cli >=0.1.53",
3636
"rich >=13,<15",
3737
"sqlmodel >=0.0.24,<0.1",
3838
"starlette >=0.47.0",
@@ -227,7 +227,7 @@ fail_fast = true
227227

228228
[[tool.pre-commit.repos]]
229229
repo = "https://github.com/astral-sh/ruff-pre-commit"
230-
rev = "v0.12.3"
230+
rev = "v0.12.5"
231231
hooks = [
232232
{ id = "ruff-format", args = [
233233
"reflex",

reflex/components/lucide/icon.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from reflex.vars.base import LiteralVar, Var
77
from reflex.vars.sequence import LiteralStringVar, StringVar
88

9-
LUCIDE_LIBRARY = "lucide-react@0.525.0"
9+
LUCIDE_LIBRARY = "lucide-react@0.534.0"
1010

1111

1212
class LucideIconComponent(Component):
@@ -231,6 +231,7 @@ def _get_imports(self):
231231
"badge_pound_sterling",
232232
"badge_russian_ruble",
233233
"badge_swiss_franc",
234+
"badge_turkish_lira",
234235
"badge_x",
235236
"badge",
236237
"baggage_claim",
@@ -501,6 +502,7 @@ def _get_imports(self):
501502
"citrus",
502503
"clapperboard",
503504
"clipboard_check",
505+
"clipboard_clock",
504506
"clipboard_copy",
505507
"clipboard_list",
506508
"clipboard_minus",
@@ -529,6 +531,7 @@ def _get_imports(self):
529531
"clock_fading",
530532
"clock_plus",
531533
"clock",
534+
"closed_caption",
532535
"cloud_alert",
533536
"cloud_check",
534537
"cloud_cog",
@@ -876,12 +879,14 @@ def _get_imports(self):
876879
"hand_metal",
877880
"hand_platter",
878881
"hand",
882+
"handbag",
879883
"handshake",
880884
"hard_drive_download",
881885
"hard_drive_upload",
882886
"hard_drive",
883887
"hard_hat",
884888
"hash",
889+
"hat_glasses",
885890
"haze",
886891
"hdmi_port",
887892
"heading_1",
@@ -1034,6 +1039,7 @@ def _get_imports(self):
10341039
"mail",
10351040
"mailbox",
10361041
"mails",
1042+
"map_minus",
10371043
"map_pin_check_inside",
10381044
"map_pin_check",
10391045
"map_pin_house",
@@ -1289,6 +1295,7 @@ def _get_imports(self):
12891295
"receipt_russian_ruble",
12901296
"receipt_swiss_franc",
12911297
"receipt_text",
1298+
"receipt_turkish_lira",
12921299
"receipt",
12931300
"rectangle_circle",
12941301
"rectangle_ellipsis",
@@ -1450,6 +1457,7 @@ def _get_imports(self):
14501457
"spline",
14511458
"split",
14521459
"spool",
1460+
"spotlight",
14531461
"spray_can",
14541462
"sprout",
14551463
"square_activity",
@@ -1635,6 +1643,7 @@ def _get_imports(self):
16351643
"trophy",
16361644
"truck_electric",
16371645
"truck",
1646+
"turkish_lira",
16381647
"turtle",
16391648
"tv_2",
16401649
"tv_minimal_play",
@@ -1674,6 +1683,7 @@ def _get_imports(self):
16741683
"user_round_x",
16751684
"user_round",
16761685
"user_search",
1686+
"user_star",
16771687
"user_x",
16781688
"user",
16791689
"users_round",
@@ -1726,6 +1736,7 @@ def _get_imports(self):
17261736
"wifi_low",
17271737
"wifi_off",
17281738
"wifi_pen",
1739+
"wifi_sync",
17291740
"wifi_zero",
17301741
"wifi",
17311742
"wind_arrow_down",

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].1"]
75+
lib_dependencies: list[str] = ["[email protected].3"]
7676

7777
tag = "Plot"
7878

@@ -295,7 +295,7 @@ class PlotlyBasic(Plotly):
295295

296296
library = "[email protected]"
297297

298-
lib_dependencies: list[str] = ["[email protected].1"]
298+
lib_dependencies: list[str] = ["[email protected].3"]
299299

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

322322
library = "[email protected]"
323323

324-
lib_dependencies: list[str] = ["[email protected].1"]
324+
lib_dependencies: list[str] = ["[email protected].3"]
325325

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

348348
library = "[email protected]"
349349

350-
lib_dependencies: list[str] = ["[email protected].1"]
350+
lib_dependencies: list[str] = ["[email protected].3"]
351351

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

374374
library = "[email protected]"
375375

376-
lib_dependencies: list[str] = ["[email protected].1"]
376+
lib_dependencies: list[str] = ["[email protected].3"]
377377

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

400400
library = "[email protected]"
401401

402-
lib_dependencies: list[str] = ["[email protected].1"]
402+
lib_dependencies: list[str] = ["[email protected].3"]
403403

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

426426
library = "[email protected]"
427427

428-
lib_dependencies: list[str] = ["[email protected].1"]
428+
lib_dependencies: list[str] = ["[email protected].3"]
429429

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

452452
library = "[email protected]"
453453

454-
lib_dependencies: list[str] = ["[email protected].1"]
454+
lib_dependencies: list[str] = ["[email protected].3"]
455455

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

478478
library = "[email protected]"
479479

480-
lib_dependencies: list[str] = ["[email protected].1"]
480+
lib_dependencies: list[str] = ["[email protected].3"]
481481

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

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

@@ -87,7 +87,7 @@ def _determine_react_router_version() -> str:
8787

8888

8989
def _determine_react_version() -> str:
90-
default_version = "19.1.0"
90+
default_version = "19.1.1"
9191
if (version := os.getenv("REACT_VERSION")) and version != default_version:
9292
from reflex.utils import console
9393

@@ -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.28",
134+
"isbot": "5.1.29",
135135
"socket.io-client": "4.8.1",
136136
"universal-cookie": "7.2.2",
137137
}
@@ -149,5 +149,5 @@ def DEPENDENCIES(cls) -> dict[str, str]:
149149
# This should always match the `react` version in DEPENDENCIES for recharts compatibility.
150150
"react-is": _react_version,
151151
"cookie": "1.0.2",
152-
"rollup": "4.45.1",
152+
"rollup": "4.46.2",
153153
}

0 commit comments

Comments
 (0)