@push.rocks/smartproxy 25.17.3 → 25.17.5

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-20 - 25.17.5 - fix(rustproxy)
4
+ add HTTP/3 integration test for QUIC response stream FIN handling
5
+
6
+ - adds an integration test covering HTTP/3 proxying over QUIC with TLS termination
7
+ - verifies response bodies fully arrive and the client receives stream termination instead of hanging
8
+ - adds test-only dependencies for quinn, h3, h3-quinn, rustls, bytes, and http
9
+
10
+ ## 2026-03-20 - 25.17.4 - fix(rustproxy-http)
11
+ prevent HTTP/3 response body streaming from hanging on backend completion
12
+
13
+ - extract and track Content-Length before consuming the response body
14
+ - stop the HTTP/3 body loop when the stream reports end-of-stream or the expected byte count has been sent
15
+ - add a per-frame idle timeout to avoid indefinite waits on stalled or close-delimited backend bodies
16
+
3
17
  ## 2026-03-20 - 25.17.3 - fix(repository)
4
18
  no changes detected
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.17.3',
6
+ version: '25.17.5',
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.17.3",
3
+ "version": "25.17.5",
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.17.3',
6
+ version: '25.17.5',
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
  }