Skip to content
Open
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
2 changes: 1 addition & 1 deletion docs/app/reflex_docs/views/inkeep.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class InkeepSearchBar(rx.NoSSRComponent):
tag = "InkeepSearchBar"
library = "@inkeep/cxkit-react@0.5.115"
library = "@inkeep/cxkit-react@0.5.119"


class Search(rx.el.Div):
Expand Down
12 changes: 12 additions & 0 deletions packages/reflex-base/news/+dependency-pin-bumps.misc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Bumped bundled frontend dependency pins to their current releases:

- `react` / `react-dom`: 19.2.6 → 19.2.7
- `react-router`, `react-router-dom`, `@react-router/node`, `@react-router/dev`, `@react-router/fs-routes`: 7.15.0 → 7.18.0
- `isbot`: 5.1.40 → 5.1.43
- `universal-cookie`: 7.2.2 → 8.1.2
- `postcss`: 8.5.14 → 8.5.15
- `tailwindcss` / `@tailwindcss/postcss`: 4.3.0 → 4.3.1
- `@tailwindcss/typography`: 0.5.19 → 0.5.20
- Bun: 1.3.13 → 1.3.14

Also raised the `rich` upper bound to `<16` (adopting rich 15), and dropped the now-redundant `cookie` `package.json` override — `universal-cookie` 8 and `react-router` both resolve `cookie` to 1.x on their own.
2 changes: 1 addition & 1 deletion packages/reflex-base/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ requires-python = ">=3.10"
dependencies = [
"packaging >=24.2,<27",
"pydantic >=2.12.0,<3.0",
"rich >=13,<15",
"rich >=13,<16",
"typing_extensions >=4.13.0",
"platformdirs >=4.3.7,<5.0",
]
Expand Down
17 changes: 8 additions & 9 deletions packages/reflex-base/src/reflex_base/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.3.13"
VERSION = "1.3.14"

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


def _determine_react_router_version() -> str:
default_version = "7.15.0"
default_version = "7.18.0"
if (version := os.getenv("REACT_ROUTER_VERSION")) and version != default_version:
from reflex_base.utils import console

Expand All @@ -98,7 +98,7 @@ def _determine_react_router_version() -> str:


def _determine_react_version() -> str:
default_version = "19.2.6"
default_version = "19.2.7"
if (version := os.getenv("REACT_VERSION")) and version != default_version:
from reflex_base.utils import console

Expand Down Expand Up @@ -139,20 +139,19 @@ def DEPENDENCIES(cls) -> dict[str, str]:
"react": cls._react_version,
"react-helmet": "6.1.0",
"react-dom": cls._react_version,
"isbot": "5.1.40",
"isbot": "5.1.43",
"socket.io-client": "4.8.3",
"universal-cookie": "7.2.2",
"universal-cookie": "8.1.2",
}

DEV_DEPENDENCIES = {
"@emotion/react": "11.14.0",
"autoprefixer": "10.5.0",
"postcss": "8.5.14",
"postcss": "8.5.15",
"postcss-import": "16.1.1",
"@react-router/dev": _react_router_version,
"@react-router/fs-routes": _react_router_version,
"vite": "8.0.16",
}
OVERRIDES = {
"cookie": "1.1.1",
}
# Force specific transitive npm deps to a single resolved version when needed.
OVERRIDES: dict[str, str] = {}
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class TailwindPlugin(PluginBase):
config: TailwindConfig = dataclasses.field(
default_factory=lambda: TailwindConfig(
plugins=[
"@tailwindcss/typography@0.5.19",
"@tailwindcss/typography@0.5.20",
],
)
)
Expand Down
4 changes: 2 additions & 2 deletions packages/reflex-base/src/reflex_base/plugins/tailwind_v4.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Constants(SimpleNamespace):
"""Tailwind constants."""

# The Tailwindcss version
VERSION = "tailwindcss@4.3.0"
VERSION = "tailwindcss@4.3.1"
# The Tailwind config.
CONFIG = "tailwind.config.js"
# Default Tailwind content paths
Expand Down Expand Up @@ -172,7 +172,7 @@ def get_frontend_development_dependencies(self, **context) -> list[str]:
return [
*super().get_frontend_development_dependencies(**context),
Constants.VERSION,
"@tailwindcss/postcss@4.3.0",
"@tailwindcss/postcss@4.3.1",
]

def pre_compile(self, **context):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bumped `shiki` and `@shikijs/transformers` 3.3.0 → 4.2.0.
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ class ShikiBaseTransformers:
class ShikiJsTransformer(ShikiBaseTransformers):
"""A Wrapped shikijs transformer."""

library: str = "@shikijs/transformers@3.3.0"
library: str = "@shikijs/transformers@4.2.0"
fns: list[FunctionStringVar] = dataclasses.field(
default_factory=lambda: [
FunctionStringVar.create(fn) for fn in SHIKIJS_TRANSFORMER_FNS
Expand Down Expand Up @@ -546,7 +546,7 @@ class ShikiCodeBlock(Component, MarkdownComponentMap):

alias = "ShikiCode"

lib_dependencies: list[str] = ["shiki@3.3.0"]
lib_dependencies: list[str] = ["shiki@4.2.0"]

language: Var[LiteralCodeLanguage] = field(
default=Var.create("python"), doc="The language to use."
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bumped `react-error-boundary` 6.1.1 → 6.1.2.
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 = "react-error-boundary@6.1.1"
library = "react-error-boundary@6.1.2"
tag = "ErrorBoundary"

on_error: EventHandler[on_error_spec] = field(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from reflex.vars.base import Var, VarData
from reflex_components_internal.components.component import CoreComponent

REACT_LIBRARY = "@hugeicons/react@1.1.6"
REACT_LIBRARY = "@hugeicons/react@1.1.7"
CORE_ICONS_LIBRARY = "@hugeicons/core-free-icons@4.2.0"


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class SimpleIcon(rx.Component):
"""Simple Icon component wrapper for @icons-pack/react-simple-icons."""

library = "@icons-pack/react-simple-icons@13.8.0"
library = "@icons-pack/react-simple-icons@13.13.0"

tag = "SiReact"

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bumped `lucide-react` 1.14.0 → 1.20.0.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from reflex_base.vars.base import LiteralVar, Var
from reflex_base.vars.sequence import LiteralStringVar, StringVar

LUCIDE_LIBRARY = "lucide-react@1.14.0"
LUCIDE_LIBRARY = "lucide-react@1.20.0"


class LucideIconComponent(Component):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bumped `react-plotly.js` 2.6.0 → 4.0.0, with `plotly.js` (and its dist-min / locale variants) 3.5.x → 3.6.0.
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ class Point(TypedDict):
class Plotly(NoSSRComponent):
"""Display a plotly graph."""

library = "react-plotly.js@2.6.0"
library = "react-plotly.js@4.0.0"

lib_dependencies: list[str] = ["plotly.js@3.5.1"]
lib_dependencies: list[str] = ["plotly.js@3.6.0"]

tag = "Plot"

Expand Down Expand Up @@ -191,7 +191,7 @@ def add_imports(self) -> ImportDict:
}
if self.locale is not None:
# For locale dictionaries injected into plot config.locales.
imports["plotly.js-locales@3.5.0"] = ImportVar(
imports["plotly.js-locales@3.6.0"] = ImportVar(
tag="plotlyLocales",
is_default=True,
)
Expand Down Expand Up @@ -383,9 +383,9 @@ class PlotlyBasic(Plotly):

tag: str = "BasicPlotlyPlot"

library = "react-plotly.js@2.6.0"
library = "react-plotly.js@4.0.0"

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

def add_imports(self) -> ImportDict:
"""Add imports for the plotly basic component.
Expand All @@ -409,9 +409,9 @@ class PlotlyCartesian(Plotly):

tag: str = "CartesianPlotlyPlot"

library = "react-plotly.js@2.6.0"
library = "react-plotly.js@4.0.0"

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

def add_imports(self) -> ImportDict:
"""Add imports for the plotly cartesian component.
Expand All @@ -435,9 +435,9 @@ class PlotlyGeo(Plotly):

tag: str = "GeoPlotlyPlot"

library = "react-plotly.js@2.6.0"
library = "react-plotly.js@4.0.0"

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

def add_imports(self) -> ImportDict:
"""Add imports for the plotly geo component.
Expand All @@ -461,9 +461,9 @@ class PlotlyGl3d(Plotly):

tag: str = "Gl3dPlotlyPlot"

library = "react-plotly.js@2.6.0"
library = "react-plotly.js@4.0.0"

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

def add_imports(self) -> ImportDict:
"""Add imports for the plotly 3d component.
Expand All @@ -487,9 +487,9 @@ class PlotlyGl2d(Plotly):

tag: str = "Gl2dPlotlyPlot"

library = "react-plotly.js@2.6.0"
library = "react-plotly.js@4.0.0"

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

def add_imports(self) -> ImportDict:
"""Add imports for the plotly 2d component.
Expand All @@ -513,9 +513,9 @@ class PlotlyMapbox(Plotly):

tag: str = "MapboxPlotlyPlot"

library = "react-plotly.js@2.6.0"
library = "react-plotly.js@4.0.0"

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

def add_imports(self) -> ImportDict:
"""Add imports for the plotly mapbox component.
Expand All @@ -539,9 +539,9 @@ class PlotlyFinance(Plotly):

tag: str = "FinancePlotlyPlot"

library = "react-plotly.js@2.6.0"
library = "react-plotly.js@4.0.0"

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

def add_imports(self) -> ImportDict:
"""Add imports for the plotly finance component.
Expand All @@ -565,9 +565,9 @@ class PlotlyStrict(Plotly):

tag: str = "StrictPlotlyPlot"

library = "react-plotly.js@2.6.0"
library = "react-plotly.js@4.0.0"

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

def add_imports(self) -> ImportDict:
"""Add imports for the plotly strict component.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Bumped Radix UI primitive pins:

- `@radix-ui/react-accordion`: 1.2.12 → 1.2.14
- `@radix-ui/react-dialog`: 1.1.15 → 1.1.17
- `@radix-ui/react-form`: 0.1.8 → 0.1.10
- `@radix-ui/react-progress`: 1.1.8 → 1.1.10
- `@radix-ui/react-slider`: 1.3.6 → 1.4.1
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def _inherited_variant_selector(
class AccordionComponent(RadixPrimitiveComponent):
"""Base class for all @radix-ui/accordion components."""

library = "@radix-ui/react-accordion@1.2.12"
library = "@radix-ui/react-accordion@1.2.14"

color_scheme: Var[LiteralAccentColor] = field(
doc="The color scheme of the component."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class DialogElement(RadixPrimitiveComponent):
"""Base class for all @radix-ui/react-dialog components."""

library = "@radix-ui/react-dialog@1.1.15"
library = "@radix-ui/react-dialog@1.1.17"


class DialogRoot(DialogElement):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class DrawerComponent(RadixPrimitiveComponent):

library = "vaul@1.1.2"

lib_dependencies: list[str] = ["@radix-ui/react-dialog@1.1.15"]
lib_dependencies: list[str] = ["@radix-ui/react-dialog@1.1.17"]


LiteralDirectionType = Literal["top", "bottom", "left", "right"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class FormComponent(RadixPrimitiveComponentWithClassName):
"""Base class for all @radix-ui/react-form components."""

library = "@radix-ui/react-form@0.1.8"
library = "@radix-ui/react-form@0.1.10"


class FormRoot(FormComponent, HTMLForm):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
class ProgressComponent(RadixPrimitiveComponentWithClassName):
"""A Progress component."""

library = "@radix-ui/react-progress@1.1.8"
library = "@radix-ui/react-progress@1.1.10"


class ProgressRoot(ProgressComponent):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class SliderComponent(RadixPrimitiveComponentWithClassName):
"""Base class for all @radix-ui/react-slider components."""

library = "@radix-ui/react-slider@1.3.6"
library = "@radix-ui/react-slider@1.4.1"


class SliderRoot(SliderComponent):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Raised the `rich` upper bound to `<16` (adopting rich 15).
2 changes: 1 addition & 1 deletion packages/reflex-hosting-cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies = [
"httpx >=0.25.1,<1.0",
"packaging >=24.2",
"platformdirs >=3.10.0,<5.0",
"rich >=13,<15",
"rich >=13,<16",
]

[tool.hatch.version]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class ImageZoom(rx.NoSSRComponent):
"""ImageZoom component."""

# The React library to wrap.
library = "react-medium-image-zoom@5.4.2"
library = "react-medium-image-zoom@5.4.8"

# The React component tag.
tag = "Zoom"
Expand Down
2 changes: 1 addition & 1 deletion pyi_hashes.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"packages/reflex-components-core/src/reflex_components_core/react_router/dom.pyi": "7617635157b816f70354e2db98b38642",
"packages/reflex-components-dataeditor/src/reflex_components_dataeditor/dataeditor.pyi": "5d12a0b0e9b4d76a9e4ba1d486094c1c",
"packages/reflex-components-gridjs/src/reflex_components_gridjs/datatable.pyi": "2ce1c076ecf5c2fa4945b4abdbf2f91d",
"packages/reflex-components-lucide/src/reflex_components_lucide/icon.pyi": "2e1da186a37e2bb8a1d90e16ee9a63b5",
"packages/reflex-components-lucide/src/reflex_components_lucide/icon.pyi": "20cbd6881a89a9ca0dfd8ca3f4452f45",
"packages/reflex-components-markdown/src/reflex_components_markdown/markdown.pyi": "79d0a59b1ba12a2f2c4a09fa6b5c776f",
"packages/reflex-components-moment/src/reflex_components_moment/moment.pyi": "eabf233471bc5b94084914f6f35ecd66",
"packages/reflex-components-plotly/src/reflex_components_plotly/plotly.pyi": "80b36863336e53c050cc61386f1c9271",
Expand Down
Loading
Loading