Skip to content

Commit 9742074

Browse files
author
decolua
committed
# 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
1 parent 146310a commit 9742074

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# v0.4.63 (2026-05-26)
2+
3+
## Fixes
4+
- proxyFetch: restore missing `Readable` import causing runtime `ReferenceError` in DNS-bypass fetch path
5+
6+
## Improvements
7+
- Lower stream stall timeout from 60s → 35s for faster hang detection
8+
19
# v0.4.62 (2026-05-26)
210

311
## Fixes

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "9router",
3-
"version": "0.4.62",
3+
"version": "0.4.63",
44
"description": "9Router CLI - Start and manage 9Router server",
55
"bin": {
66
"9router": "./cli.js"

open-sse/config/runtimeConfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const MEMORY_CONFIG = {
3232
};
3333

3434
// Stream stall timeout: abort if no chunk received within this duration
35-
export const STREAM_STALL_TIMEOUT_MS = 60 * 1000;
35+
export const STREAM_STALL_TIMEOUT_MS = 35 * 1000;
3636

3737
// Fetch connect timeout: abort if upstream doesn't return response headers within this duration
3838
export const FETCH_CONNECT_TIMEOUT_MS = 20 * 1000;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "9router-app",
3-
"version": "0.4.62",
3+
"version": "0.4.63",
44
"description": "9Router web dashboard",
55
"private": true,
66
"scripts": {

0 commit comments

Comments
 (0)