Skip to content

Commit 5e6304b

Browse files
committed
4dev
1 parent 1acdbb4 commit 5e6304b

File tree

6 files changed

+142
-132
lines changed

6 files changed

+142
-132
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "reflex"
3-
version = "0.8.3dev1"
3+
version = "0.8.4dev1"
44
description = "Web apps in pure Python."
55
license.text = "Apache-2.0"
66
authors = [

reflex/constants/installer.py

Lines changed: 3 additions & 3 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.18"
17+
VERSION = "1.2.19"
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.6.3"
78+
default_version = "7.7.0"
7979
if (version := os.getenv("REACT_ROUTER_VERSION")) and version != default_version:
8080
from reflex.utils import console
8181

@@ -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.44.2",
152+
"rollup": "4.45.1",
153153
}

reflex/utils/prerequisites.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ def download_and_run(url: str, *args, show_status: bool = False, **env):
11771177
response.raise_for_status()
11781178
except httpx.HTTPError as e:
11791179
console.error(
1180-
f"Failed to download bun install script. You can install or update bun manually from https://bun.sh \n{e}"
1180+
f"Failed to download bun install script. You can install or update bun manually from https://bun.com \n{e}"
11811181
)
11821182
raise click.exceptions.Exit(1) from None
11831183

scripts/bun_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ platform=$(uname -ms)
55

66
if [[ ${OS:-} = Windows_NT ]]; then
77
if [[ $platform != MINGW64* ]]; then
8-
powershell -c "irm bun.sh/install.ps1|iex"
8+
powershell -c "irm bun.com/install.ps1|iex"
99
exit $?
1010
fi
1111
fi

scripts/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if (-not ((Get-CimInstance Win32_ComputerSystem)).SystemType -match "x64-based")
2222

2323
# This corresponds to .win10_rs5 in build.zig
2424
$MinBuild = 17763;
25-
$MinBuildName = "Windows 10 1809"
25+
$MinBuildName = "Windows 10 1809 / Windows Server 2019"
2626

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

0 commit comments

Comments
 (0)