[skip ci] update changelog

This commit is contained in:
Jun Kurihara 2024-11-01 10:07:44 +09:00
commit 68b4a2afdd
No known key found for this signature in database
GPG key ID: 9C5AF0A526862FEF
4 changed files with 7 additions and 5 deletions

View file

@ -1,15 +1,17 @@
# CHANGELOG # CHANGELOG
## 0.9.3 or 0.10.0 (Unreleased) ## 0.10.0 (Unreleased)
## 0.9.3
### Improvement ### Improvement
- Feat: Support post-quantum `X25519Kyber768Draft00` for incoming TLS initiation. This is non-default feature [feature: `post-quantum`]. Upstream connection to backend applications does not yet support PQC.
- Feat: emit WARN messages if there exist unused and unsupported options specified in configuration file. - Feat: emit WARN messages if there exist unused and unsupported options specified in configuration file.
- Docs: `rpxy.io` is now available for the official website of `rpxy`. - Docs: `rpxy.io` is now available for the official website of `rpxy`.
- Refactor: lots of minor improvements - Refactor: lots of minor improvements
- Deps - Deps
## 0.9.2 ## 0.9.2
### Improvement ### Improvement

View file

@ -16,7 +16,7 @@ post-quantum = ["rustls-post-quantum"]
[dependencies] [dependencies]
url = { version = "2.5.2" } url = { version = "2.5.2" }
rustc-hash = "2.0.0" rustc-hash = "2.0.0"
thiserror = "1.0.65" thiserror = "1.0.66"
tracing = "0.1.40" tracing = "0.1.40"
async-trait = "0.1.83" async-trait = "0.1.83"
base64 = "0.22.1" base64 = "0.22.1"

View file

@ -19,7 +19,7 @@ http3 = []
rustc-hash = { version = "2.0.0" } rustc-hash = { version = "2.0.0" }
tracing = { version = "0.1.40" } tracing = { version = "0.1.40" }
derive_builder = { version = "0.20.2" } derive_builder = { version = "0.20.2" }
thiserror = { version = "1.0.65" } thiserror = { version = "1.0.66" }
hot_reload = { version = "0.1.6" } hot_reload = { version = "0.1.6" }
async-trait = { version = "0.1.83" } async-trait = { version = "0.1.83" }
rustls = { version = "0.23.16", default-features = false, features = [ rustls = { version = "0.23.16", default-features = false, features = [

View file

@ -54,7 +54,7 @@ async-trait = "0.1.83"
# Error handling # Error handling
anyhow = "1.0.91" anyhow = "1.0.91"
thiserror = "1.0.65" thiserror = "1.0.66"
# http for both server and client # http for both server and client
http = "1.1.0" http = "1.1.0"