Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
4ccc1db8a2 | |||
7e3ed93bc9 | |||
fa793f2c4a | |||
fe8106f0c8 | |||
b317ab8b3a | |||
4fd5524a0f | |||
2013d03ac6 | |||
0e888c5add |
31
changelog.md
31
changelog.md
@ -1,5 +1,36 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-03-05 - 3.25.3 - fix(core)
|
||||||
|
Update dependencies and configuration improvements.
|
||||||
|
|
||||||
|
- Upgrade TypeScript version to 5.8.2 for better compatibility.
|
||||||
|
- Ensure all proxy and server tests pass with updated configurations.
|
||||||
|
- Improve logging for better traceability in proxy operations.
|
||||||
|
- Add handlers for WebSockets and HTTPS improvements.
|
||||||
|
- Fix various issues related to proxy timeout and connection handling.
|
||||||
|
- Update test certificates validation for better test coverage.
|
||||||
|
|
||||||
|
## 2025-03-05 - 3.25.2 - fix(PortProxy)
|
||||||
|
Adjust timeout settings and handle inactivity properly in PortProxy.
|
||||||
|
|
||||||
|
- Changed initialDataTimeout default to 30 seconds for better handling of initial data reception.
|
||||||
|
- Adjusted keepAliveInitialDelay to 30 seconds for consistent socket optimization.
|
||||||
|
- Introduced proper inactivity handling with updated timeout logic.
|
||||||
|
- Parity check now accounts for a 120-second threshold for outgoing socket closure.
|
||||||
|
|
||||||
|
## 2025-03-05 - 3.25.1 - fix(PortProxy)
|
||||||
|
Adjust inactivity threshold to a random value between 20 and 30 minutes for better variability
|
||||||
|
|
||||||
|
- Modified inactivity threshold calculation within PortProxy to use a random value between 1.2 and 1.8 million milliseconds.
|
||||||
|
|
||||||
|
## 2025-03-05 - 3.25.0 - feat(PortProxy)
|
||||||
|
Enhanced PortProxy with detailed logging, protocol detection, and rate limiting.
|
||||||
|
|
||||||
|
- Added detailed logging capabilities for connection tracking in the PortProxy.
|
||||||
|
- Introduced protocol detection allowing HTTP and WebSocket upgrades.
|
||||||
|
- Implemented rate limiting for connections by IP.
|
||||||
|
- Enhanced timeout handling for various protocol-specific scenarios.
|
||||||
|
|
||||||
## 2025-03-05 - 3.24.0 - feat(core)
|
## 2025-03-05 - 3.24.0 - feat(core)
|
||||||
Enhance core functionalities and test coverage for NetworkProxy and PortProxy
|
Enhance core functionalities and test coverage for NetworkProxy and PortProxy
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartproxy",
|
"name": "@push.rocks/smartproxy",
|
||||||
"version": "3.24.0",
|
"version": "3.25.3",
|
||||||
"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.24.0',
|
version: '3.25.3',
|
||||||
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