@push.rocks/smartproxy 25.11.6 → 25.11.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/changelog.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## 2026-03-16 - 25.11.8 - fix(rustproxy-http)
4
+ prevent premature idle timeouts during streamed HTTP responses and ensure TLS close_notify is sent on dropped connections
5
+
6
+ - track active streaming response bodies so the HTTP idle watchdog does not close connections mid-transfer
7
+ - add a ShutdownOnDrop wrapper for TLS-terminated HTTP connections to send shutdown on drop and avoid improperly terminated TLS sessions
8
+ - apply the shutdown wrapper in passthrough TLS terminate and terminate+reencrypt HTTP handling
9
+
10
+ ## 2026-03-16 - 25.11.7 - fix(rustproxy)
11
+ prevent TLS route reload certificate mismatches and tighten passthrough connection handling
12
+
13
+ - Load updated TLS configs before swapping the route manager so newly visible routes always have their certificates available.
14
+ - Add timeouts when peeking initial decrypted data after TLS handshake to avoid leaked idle connections.
15
+ - Raise dropped, blocked, unmatched, and errored passthrough connection events from debug to warn for better operational visibility.
16
+
3
17
  ## 2026-03-16 - 25.11.6 - fix(rustproxy-http,rustproxy-passthrough)
4
18
  improve upstream connection cleanup and graceful tunnel shutdown
5
19
 
Binary file
Binary file
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@push.rocks/smartproxy',
6
- version: '25.11.6',
6
+ version: '25.11.8',
7
7
  description: 'A powerful proxy package with unified route-based configuration for high traffic management. Features include SSL/TLS support, flexible routing patterns, WebSocket handling, advanced security options, and automatic ACME certificate management.'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFNBQVM7SUFDbEIsV0FBVyxFQUFFLHFQQUFxUDtDQUNuUSxDQUFBIn0=
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@push.rocks/smartproxy",
3
- "version": "25.11.6",
3
+ "version": "25.11.8",
4
4
  "private": false,
5
5
  "description": "A powerful proxy package with unified route-based configuration for high traffic management. Features include SSL/TLS support, flexible routing patterns, WebSocket handling, advanced security options, and automatic ACME certificate management.",
6
6
  "main": "dist_ts/index.js",
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@push.rocks/smartproxy',
6
- version: '25.11.6',
6
+ version: '25.11.8',
7
7
  description: 'A powerful proxy package with unified route-based configuration for high traffic management. Features include SSL/TLS support, flexible routing patterns, WebSocket handling, advanced security options, and automatic ACME certificate management.'
8
8
  }