From a06102e1eb912b96e108997d6906fa1329527ab6 Mon Sep 17 00:00:00 2001 From: Dennis Schubert Date: Mon, 6 Jan 2025 15:31:43 +0100 Subject: [PATCH] v1.3.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- Changelog.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f69a65f..5e2b819 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2090,7 +2090,7 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "vssv" -version = "1.3.0-dev" +version = "1.3.0" dependencies = [ "anyhow", "axum", diff --git a/Cargo.toml b/Cargo.toml index 9df5283..58feb75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ description = "A very simple secrets vault." authors = ["Dennis Schubert "] repository = "https://github.com/denschub/vssv" license = "MIT" -version = "1.3.0-dev" +version = "1.3.0" edition = "2021" [profile.release] diff --git a/Changelog.md b/Changelog.md index d1b5d6b..c241723 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,4 +1,4 @@ -# 1.3.0 (unreleased) +# 1.3.0 This version instroduces a new setting, `--use-x-real-ip`/`USE_X_REAL_IP`, that defaults to `false`. If set, `vssv` will read the `x-real-ip` header to determine the client IP address, which gets stored in the audit log. This is useful, for example, if you run `vssv` behind a reverse proxy like `nginx`.