Skip to content

Commit eaaffac

Browse files
authored
upgrade deps just before 0714 (#5373)
1 parent 3b4b08c commit eaaffac

File tree

5 files changed

+110
-106
lines changed

5 files changed

+110
-106
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.11.11"
230+
rev = "v0.11.12"
231231
hooks = [
232232
{ id = "ruff-format", args = [
233233
"reflex",

reflex/components/radix/primitives/progress.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
class ProgressComponent(RadixPrimitiveComponentWithClassName):
1616
"""A Progress component."""
1717

18-
library = "@radix-ui/[email protected].6"
18+
library = "@radix-ui/[email protected].7"
1919

2020

2121
class ProgressRoot(ProgressComponent):

reflex/components/radix/primitives/slider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class SliderComponent(RadixPrimitiveComponentWithClassName):
1818
"""Base class for all @radix-ui/react-slider components."""
1919

20-
library = "@radix-ui/[email protected].4"
20+
library = "@radix-ui/[email protected].5"
2121

2222

2323
def on_value_event_spec(

reflex/constants/installer.py

Lines changed: 2 additions & 2 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.14"
17+
VERSION = "1.2.15"
1818

1919
# Min Bun Version
2020
MIN_VERSION = "1.2.8"
@@ -137,7 +137,7 @@ def DEPENDENCIES(cls) -> dict[str, str]:
137137

138138
DEV_DEPENDENCIES = {
139139
"autoprefixer": "10.4.21",
140-
"postcss": "8.5.3",
140+
"postcss": "8.5.4",
141141
"postcss-import": "16.1.0",
142142
}
143143
OVERRIDES = {

0 commit comments

Comments
 (0)