Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
985031e9ac | |||
4c0105ad09 | |||
06896b3102 | |||
7fe455b4df | |||
21801aa53d | |||
ddfbcdb1f3 |
24
changelog.md
24
changelog.md
@ -1,5 +1,29 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-03-12 - 3.41.8 - fix(portproxy)
|
||||||
|
Improve TLS handshake timeout handling and connection piping in PortProxy
|
||||||
|
|
||||||
|
- Increase the default initial handshake timeout from 60 seconds to 120 seconds
|
||||||
|
- Add a 30-second grace period before terminating connections waiting for initial TLS data
|
||||||
|
- Refactor piping logic by removing redundant callback and establishing piping immediately after flushing buffered data
|
||||||
|
- Enhance debug logging during TLS ClientHello processing for improved SNI extraction insights
|
||||||
|
|
||||||
|
## 2025-03-12 - 3.41.7 - fix(core)
|
||||||
|
Refactor PortProxy and SniHandler: improve configuration handling, logging, and whitespace consistency
|
||||||
|
|
||||||
|
- Standardized indentation and spacing for configuration properties in PortProxy settings (e.g. ACME options, keepAliveProbes, allowSessionTicket)
|
||||||
|
- Simplified conditional formatting and improved inline comments in PortProxy
|
||||||
|
- Enhanced logging messages in SniHandler for TLS handshake and session resumption detection
|
||||||
|
- Improved debugging output (e.g. hexdump of initial TLS packet) and consistency of multi-line expressions
|
||||||
|
|
||||||
|
## 2025-03-12 - 3.41.6 - fix(SniHandler)
|
||||||
|
Refactor SniHandler: update whitespace, comment formatting, and consistent type definitions
|
||||||
|
|
||||||
|
- Unified inline comment style and spacing in SniHandler
|
||||||
|
- Refactored session cache type declaration for clarity
|
||||||
|
- Adjusted buffer length calculations to include TLS record header consistently
|
||||||
|
- Minor improvements to logging messages during ClientHello reassembly and SNI extraction
|
||||||
|
|
||||||
## 2025-03-12 - 3.41.5 - fix(portproxy)
|
## 2025-03-12 - 3.41.5 - fix(portproxy)
|
||||||
Enforce TLS handshake and SNI validation on port 443 by blocking non-TLS connections and terminating session resumption attempts without SNI when allowSessionTicket is disabled.
|
Enforce TLS handshake and SNI validation on port 443 by blocking non-TLS connections and terminating session resumption attempts without SNI when allowSessionTicket is disabled.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartproxy",
|
"name": "@push.rocks/smartproxy",
|
||||||
"version": "3.41.5",
|
"version": "3.41.8",
|
||||||
"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, dynamic routing with authentication options, and automatic ACME certificate management.",
|
"description": "A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, dynamic routing with authentication options, and automatic ACME certificate management.",
|
||||||
"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.41.5',
|
version: '3.41.8',
|
||||||
description: 'A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, dynamic routing with authentication options, and automatic ACME certificate management.'
|
description: 'A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, dynamic routing with authentication options, and automatic ACME certificate management.'
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user