@push.rocks/smartproxy 25.17.4 → 25.17.7
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,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-03-20 - 25.17.7 - fix(readme)
|
|
4
|
+
document QUIC and HTTP/3 compatibility caveats
|
|
5
|
+
|
|
6
|
+
- Add notes explaining that GREASE frames are disabled on both server and client HTTP/3 paths to avoid interoperability issues
|
|
7
|
+
- Document that the current HTTP/3 stack depends on pre-1.0 h3 ecosystem components and may still have rough edges
|
|
8
|
+
|
|
9
|
+
## 2026-03-20 - 25.17.6 - fix(rustproxy-http)
|
|
10
|
+
disable HTTP/3 GREASE for client and server connections
|
|
11
|
+
|
|
12
|
+
- Switch the HTTP/3 server connection setup to use the builder API with send_grease(false)
|
|
13
|
+
- Switch the HTTP/3 client handshake to use the builder API with send_grease(false) to improve compatibility
|
|
14
|
+
|
|
15
|
+
## 2026-03-20 - 25.17.5 - fix(rustproxy)
|
|
16
|
+
add HTTP/3 integration test for QUIC response stream FIN handling
|
|
17
|
+
|
|
18
|
+
- adds an integration test covering HTTP/3 proxying over QUIC with TLS termination
|
|
19
|
+
- verifies response bodies fully arrive and the client receives stream termination instead of hanging
|
|
20
|
+
- adds test-only dependencies for quinn, h3, h3-quinn, rustls, bytes, and http
|
|
21
|
+
|
|
3
22
|
## 2026-03-20 - 25.17.4 - fix(rustproxy-http)
|
|
4
23
|
prevent HTTP/3 response body streaming from hanging on backend completion
|
|
5
24
|
|
|
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.
|
|
6
|
+
version: '25.17.7',
|
|
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
|
+
"version": "25.17.7",
|
|
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",
|
package/readme.md
CHANGED
|
@@ -1111,6 +1111,10 @@ SmartProxy searches for the Rust binary in this order:
|
|
|
1111
1111
|
5. Local dev build (`./rust/target/release/rustproxy`)
|
|
1112
1112
|
6. System PATH (`rustproxy`)
|
|
1113
1113
|
|
|
1114
|
+
### QUIC / HTTP3 Caveats
|
|
1115
|
+
- **GREASE frames are disabled.** The underlying h3 crate sends [GREASE frames](https://www.rfc-editor.org/rfc/rfc9114.html#frame-reserved) by default to test protocol extensibility. However, some HTTP/3 clients and servers don't properly ignore unknown frame types, causing 400/500 errors or stream hangs ([h3#206](https://github.com/hyperium/h3/issues/206)). SmartProxy disables GREASE on both the server side (for incoming H3 requests) and the client side (for H3 backend connections) to maximize compatibility.
|
|
1116
|
+
- **HTTP/3 is pre-release.** The h3 ecosystem (h3 0.0.8, h3-quinn 0.0.10, quinn 0.11) is still pre-1.0. Expect rough edges.
|
|
1117
|
+
|
|
1114
1118
|
### Performance Tuning
|
|
1115
1119
|
- ✅ Use NFTables forwarding for high-traffic routes (Linux only)
|
|
1116
1120
|
- ✅ Enable connection keep-alive where appropriate
|
package/ts/00_commitinfo_data.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@push.rocks/smartproxy',
|
|
6
|
-
version: '25.17.
|
|
6
|
+
version: '25.17.7',
|
|
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
|
}
|