Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
b3dcc0ae22 | |||
b96d7dec98 | |||
0d0a1c740b | |||
9bd87b8437 | |||
0e281b3243 | |||
a14b7802c4 | |||
138900ca8b | |||
cb6c2503e2 | |||
f3fd903231 | |||
0e605d9a9d |
31
changelog.md
31
changelog.md
@ -1,5 +1,36 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-03-07 - 3.28.5 - fix(core)
|
||||||
|
Ensure proper resource cleanup during server shutdown.
|
||||||
|
|
||||||
|
- Fixed potential hanging of server shutdown due to improper cleanup in promise handling.
|
||||||
|
- Corrected potential memory leaks by ensuring all pending and active connections are properly closed during shutdown.
|
||||||
|
|
||||||
|
## 2025-03-07 - 3.28.4 - fix(router)
|
||||||
|
Improve path pattern matching and hostname prioritization in router
|
||||||
|
|
||||||
|
- Enhance path pattern matching capabilities
|
||||||
|
- Ensure hostname prioritization in routing logic
|
||||||
|
|
||||||
|
## 2025-03-06 - 3.28.3 - fix(PortProxy)
|
||||||
|
Ensure timeout values are within Node.js safe limits
|
||||||
|
|
||||||
|
- Implemented `ensureSafeTimeout` to keep timeout values under the maximum safe integer for Node.js.
|
||||||
|
- Updated timeout configurations in `PortProxy` to include safety checks.
|
||||||
|
|
||||||
|
## 2025-03-06 - 3.28.2 - fix(portproxy)
|
||||||
|
Adjust safe timeout defaults in PortProxy to prevent overflow issues.
|
||||||
|
|
||||||
|
- Adjusted socketTimeout to maximum safe limit (~24.8 days) for PortProxy.
|
||||||
|
- Adjusted maxConnectionLifetime to maximum safe limit (~24.8 days) for PortProxy.
|
||||||
|
- Ensured enhanced default timeout settings in PortProxy.
|
||||||
|
|
||||||
|
## 2025-03-06 - 3.28.1 - fix(PortProxy)
|
||||||
|
Improved code formatting and readability in PortProxy class by adjusting spacing and comments.
|
||||||
|
|
||||||
|
- Adjusted comment and spacing for better code readability.
|
||||||
|
- No functional changes made in the PortProxy class.
|
||||||
|
|
||||||
## 2025-03-06 - 3.28.0 - feat(router)
|
## 2025-03-06 - 3.28.0 - feat(router)
|
||||||
Add detailed routing tests and refactor ProxyRouter for improved path matching
|
Add detailed routing tests and refactor ProxyRouter for improved path matching
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartproxy",
|
"name": "@push.rocks/smartproxy",
|
||||||
"version": "3.28.0",
|
"version": "3.28.5",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, and dynamic routing with authentication options.",
|
"description": "A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, and dynamic routing with authentication options.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartproxy',
|
name: '@push.rocks/smartproxy',
|
||||||
version: '3.28.0',
|
version: '3.28.5',
|
||||||
description: 'A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, and dynamic routing with authentication options.'
|
description: 'A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, and dynamic routing with authentication options.'
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user