From ed581d592095e7a49b5d31c13f30441444ecb301 Mon Sep 17 00:00:00 2001 From: Jun Kurihara Date: Thu, 1 Feb 2024 18:11:35 +0900 Subject: [PATCH] alpha.4 --- CHANGELOG.md | 1 + rpxy-bin/Cargo.toml | 2 +- rpxy-lib/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1270cd15..3a4c363d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ - Breaking: Changed the policy of the default cert store from `webpki` to the system-native store. Thus we terminated the feature `native-roots` and introduced `webpki-roots` feature to use `webpki` root cert store. - Redesigned: Cache structure is totally redesigned with more memory-efficient way to read from cache file, and more secure way to strongly bind memory-objects with files with hash values. - Redesigned: HTTP body handling flow is also redesigned with more memory-and-time efficient techniques without putting the whole objects on memory by using `futures::stream::Stream` and `futures::channel::mpsc` +- Feat: Allow to disable/enable forced-connection-timeout regardless of connection status (idle or not). [default: disabled] - Refactor: lots of minor improvements ## 0.6.2 diff --git a/rpxy-bin/Cargo.toml b/rpxy-bin/Cargo.toml index 342bd0b2..0d2f0067 100644 --- a/rpxy-bin/Cargo.toml +++ b/rpxy-bin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rpxy" -version = "0.7.0-alpha.3" +version = "0.7.0-alpha.4" authors = ["Jun Kurihara"] homepage = "https://github.com/junkurihara/rust-rpxy" repository = "https://github.com/junkurihara/rust-rpxy" diff --git a/rpxy-lib/Cargo.toml b/rpxy-lib/Cargo.toml index 544575ae..10baa8dc 100644 --- a/rpxy-lib/Cargo.toml +++ b/rpxy-lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rpxy-lib" -version = "0.7.0-alpha.3" +version = "0.7.0-alpha.4" authors = ["Jun Kurihara"] homepage = "https://github.com/junkurihara/rust-rpxy" repository = "https://github.com/junkurihara/rust-rpxy"