# v0.4.63 (2026-05-26)

## Fixes
- proxyFetch: restore missing `Readable` import causing runtime `ReferenceError` in DNS-bypass fetch path

## Improvements
- Lower stream stall timeout from 60s → 35s for faster hang detection
This commit is contained in:
decolua
2026-05-26 23:16:21 +07:00
parent 146310a3a3
commit 9742074b38
4 changed files with 11 additions and 3 deletions

View File

@@ -1,3 +1,11 @@
# v0.4.63 (2026-05-26)
## Fixes
- proxyFetch: restore missing `Readable` import causing runtime `ReferenceError` in DNS-bypass fetch path
## Improvements
- Lower stream stall timeout from 60s → 35s for faster hang detection
# v0.4.62 (2026-05-26)
## Fixes

View File

@@ -1,6 +1,6 @@
{
"name": "9router",
"version": "0.4.62",
"version": "0.4.63",
"description": "9Router CLI - Start and manage 9Router server",
"bin": {
"9router": "./cli.js"

View File

@@ -32,7 +32,7 @@ export const MEMORY_CONFIG = {
};
// Stream stall timeout: abort if no chunk received within this duration
export const STREAM_STALL_TIMEOUT_MS = 60 * 1000;
export const STREAM_STALL_TIMEOUT_MS = 35 * 1000;
// Fetch connect timeout: abort if upstream doesn't return response headers within this duration
export const FETCH_CONNECT_TIMEOUT_MS = 20 * 1000;

View File

@@ -1,6 +1,6 @@
{
"name": "9router-app",
"version": "0.4.62",
"version": "0.4.63",
"description": "9Router web dashboard",
"private": true,
"scripts": {