Compare commits

..

2 Commits

Author SHA1 Message Date
jkunz c161ac664d v27.10.3
Default (tags) / security (push) Failing after 1s
Default (tags) / test (push) Failing after 1s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-05-20 15:11:22 +00:00
jkunz 09996d74eb fix(rust): enable static CRT linking for Linux Rust targets 2026-05-20 15:11:07 +00:00
4 changed files with 15 additions and 2 deletions
+9
View File
@@ -4,6 +4,15 @@
## 2026-05-20 - 27.10.3
### Fixes
- enable static CRT linking for Linux Rust targets (rust)
- adds crt-static rustflags for x86_64-unknown-linux-gnu
- adds crt-static rustflags alongside the existing aarch64 Linux cross-compilation linker configuration
## 2026-05-12 - 27.10.2
### Fixes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartproxy",
"version": "27.10.2",
"version": "27.10.3",
"private": false,
"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.",
"main": "dist_ts/index.js",
+4
View File
@@ -1,2 +1,6 @@
[target.x86_64-unknown-linux-gnu]
rustflags = ["-C", "target-feature=+crt-static"]
[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-gcc"
rustflags = ["-C", "target-feature=+crt-static"]
+1 -1
View File
@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartproxy',
version: '27.10.2',
version: '27.10.3',
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.'
}