From 9742074b3809b26e91ff39c607a136e2376d2062 Mon Sep 17 00:00:00 2001 From: decolua Date: Tue, 26 May 2026 23:16:21 +0700 Subject: [PATCH] # v0.4.63 (2026-05-26) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 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 --- CHANGELOG.md | 8 ++++++++ cli/package.json | 2 +- open-sse/config/runtimeConfig.js | 2 +- package.json | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1c14421..28e8c165 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/cli/package.json b/cli/package.json index 52adf7f5..0b2f61ec 100644 --- a/cli/package.json +++ b/cli/package.json @@ -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" diff --git a/open-sse/config/runtimeConfig.js b/open-sse/config/runtimeConfig.js index 4fe8ebf3..7e5da9a5 100644 --- a/open-sse/config/runtimeConfig.js +++ b/open-sse/config/runtimeConfig.js @@ -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; diff --git a/package.json b/package.json index 271127b5..703b6e7a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "9router-app", - "version": "0.4.62", + "version": "0.4.63", "description": "9Router web dashboard", "private": true, "scripts": {