From 6d61f1418736fa9d2108d76ac61fc0d05626ce7d Mon Sep 17 00:00:00 2001 From: Jun Kurihara Date: Sat, 1 Feb 2025 04:27:25 +0900 Subject: [PATCH] docs and bump --- CHANGELOG.md | 18 +++++++++++++++++- Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e6b294..18deef2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ # CHANGELOG -## 0.9.7 or 0.10.0 (Unreleased) +## 0.9.8 or 0.10.0 (Unreleased) + +## 0.9.7 + +### Improvement + +- Feat: add version tag for docker images via github actions +- Feat: support gRPC: This makes rpxy to serve gRPC requests on the same port as HTTP and HTTPS, i.e., listen_port and listen_port_tls. This means that by using the different subdomain for HTTP(S) and gRPC, we can multiplex them on same ports without opening another port dedicated to gRPC. To this end, this update made the forwarder to force HTTP/2 for gRPC requests towards backend (gRPC) app. +- Deps and refactor + +### Bugfix + +- Fixed bug for the upstream option "force_http2_upstream" + +### Other + +- Tentative downgrade of github actions `runs-on` from ubuntu-latest to ubuntu-22.04. ## 0.9.6 diff --git a/Cargo.toml b/Cargo.toml index ee0db6c..2cb948f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "0.9.6" +version = "0.9.7" authors = ["Jun Kurihara"] homepage = "https://github.com/junkurihara/rust-rpxy" repository = "https://github.com/junkurihara/rust-rpxy"