diff --git a/changelog.md b/changelog.md index d6cea19..a208cc0 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2025-02-26 - 3.14.1 - fix(PortProxy) +Increased default maxConnectionLifetime for PortProxy to 600000 ms + +- Updated PortProxy settings to extend default maxConnectionLifetime to 10 minutes. + ## 2025-02-26 - 3.14.0 - feat(PortProxy) Introduce max connection lifetime feature diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index b1fc416..7c491a5 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartproxy', - version: '3.14.0', + version: '3.14.1', description: 'A robust and versatile proxy package designed to handle high workloads, offering features like SSL redirection, port proxying, WebSocket support, and customizable routing and authentication.' } diff --git a/ts/classes.portproxy.ts b/ts/classes.portproxy.ts index 4a7e845..3a9e133 100644 --- a/ts/classes.portproxy.ts +++ b/ts/classes.portproxy.ts @@ -108,7 +108,7 @@ export class PortProxy { this.settings = { ...settingsArg, toHost: settingsArg.toHost || 'localhost', - maxConnectionLifetime: settingsArg.maxConnectionLifetime || 10000, + maxConnectionLifetime: settingsArg.maxConnectionLifetime || 600000, }; }