@push.rocks/smartproxy 25.10.5 → 25.10.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,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-03-12 - 25.10.7 - fix(rustproxy-http)
|
|
4
|
+
remove Host header from HTTP/2 upstream requests while preserving it for HTTP/1 retries
|
|
5
|
+
|
|
6
|
+
- strips the Host header before sending HTTP/2 upstream requests so :authority from the URI is used instead
|
|
7
|
+
- avoids 400 responses from nginx caused by sending both Host and :authority headers
|
|
8
|
+
- keeps a cloned header set for bodyless request retries so HTTP/1 fallback still retains the Host header
|
|
9
|
+
|
|
10
|
+
## 2026-03-12 - 25.10.6 - fix(rustproxy-http)
|
|
11
|
+
use the requested domain as HTTP/2 authority instead of the backend host and port
|
|
12
|
+
|
|
13
|
+
- build HTTP/2 absolute URIs from the client-facing domain so the :authority pseudo-header matches the Host header
|
|
14
|
+
- remove backend port from generated HTTP/2 request URIs and fall back to the upstream host only when no domain is available
|
|
15
|
+
- apply the authority handling consistently across pooled, inline, and generic upstream request paths
|
|
16
|
+
|
|
3
17
|
## 2026-03-12 - 25.10.5 - fix(rustproxy-http)
|
|
4
18
|
configure HTTP/2 client builders with a Tokio timer for keep-alive handling
|
|
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.10.
|
|
6
|
+
version: '25.10.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.10.
|
|
3
|
+
"version": "25.10.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",
|
|
@@ -8,6 +8,12 @@
|
|
|
8
8
|
"type": "module",
|
|
9
9
|
"author": "Lossless GmbH",
|
|
10
10
|
"license": "MIT",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"test": "(tsrust) && (tstest test/**/test*.ts --verbose --timeout 60 --logfile)",
|
|
13
|
+
"build": "(tsbuild tsfolders --allowimplicitany) && (tsrust)",
|
|
14
|
+
"format": "(gitzone format)",
|
|
15
|
+
"buildDocs": "tsdoc"
|
|
16
|
+
},
|
|
11
17
|
"devDependencies": {
|
|
12
18
|
"@git.zone/tsbuild": "^4.1.2",
|
|
13
19
|
"@git.zone/tsrun": "^2.0.1",
|
|
@@ -66,10 +72,13 @@
|
|
|
66
72
|
"bugs": {
|
|
67
73
|
"url": "https://code.foss.global/push.rocks/smartproxy/issues"
|
|
68
74
|
},
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
75
|
+
"pnpm": {
|
|
76
|
+
"overrides": {},
|
|
77
|
+
"onlyBuiltDependencies": [
|
|
78
|
+
"esbuild",
|
|
79
|
+
"mongodb-memory-server",
|
|
80
|
+
"puppeteer"
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
|
|
84
|
+
}
|
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.10.
|
|
6
|
+
version: '25.10.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
|
}
|