Skip to content
Merged

4dev #5611

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 pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "reflex"
version = "0.8.3dev1"
version = "0.8.4dev1"
description = "Web apps in pure Python."
license.text = "Apache-2.0"
authors = [
Expand Down
6 changes: 3 additions & 3 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.18"
VERSION = "1.2.19"

# 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.6.3"
default_version = "7.7.0"
if (version := os.getenv("REACT_ROUTER_VERSION")) and version != default_version:
from reflex.utils import console

Expand Down Expand Up @@ -149,5 +149,5 @@ def DEPENDENCIES(cls) -> dict[str, str]:
# This should always match the `react` version in DEPENDENCIES for recharts compatibility.
"react-is": _react_version,
"cookie": "1.0.2",
"rollup": "4.44.2",
"rollup": "4.45.1",
}
2 changes: 1 addition & 1 deletion reflex/utils/prerequisites.py
Original file line number Diff line number Diff line change
Expand Up @@ -1177,7 +1177,7 @@ def download_and_run(url: str, *args, show_status: bool = False, **env):
response.raise_for_status()
except httpx.HTTPError as e:
console.error(
f"Failed to download bun install script. You can install or update bun manually from https://bun.sh \n{e}"
f"Failed to download bun install script. You can install or update bun manually from https://bun.com \n{e}"
)
raise click.exceptions.Exit(1) from None

Expand Down
2 changes: 1 addition & 1 deletion scripts/bun_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ platform=$(uname -ms)

if [[ ${OS:-} = Windows_NT ]]; then
if [[ $platform != MINGW64* ]]; then
powershell -c "irm bun.sh/install.ps1|iex"
powershell -c "irm bun.com/install.ps1|iex"
exit $?
fi
fi
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if (-not ((Get-CimInstance Win32_ComputerSystem)).SystemType -match "x64-based")

# This corresponds to .win10_rs5 in build.zig
$MinBuild = 17763;
$MinBuildName = "Windows 10 1809"
$MinBuildName = "Windows 10 1809 / Windows Server 2019"

$WinVer = [System.Environment]::OSVersion.Version
if ($WinVer.Major -lt 10 -or ($WinVer.Major -eq 10 -and $WinVer.Build -lt $MinBuild)) {
Expand Down
Loading