diff --git a/.release-manifest.json b/.release-manifest.json index 949ce4c..0451499 100644 --- a/.release-manifest.json +++ b/.release-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.2" + ".": "0.2.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f3e9c71..c5441df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.2.3](https://github.com/rust-mcp-stack/oauth2-test-server/compare/v0.2.2...v0.2.3) (2026-06-24) + + +### 🐛 Bug Fixes + +* Omit null nonce in id token and add config documentation ([529ca98](https://github.com/rust-mcp-stack/oauth2-test-server/commit/529ca98a076bc4e6c0df79f665d46800aeab6652)) +* Omit null nonce in id token when no nonce was sent ([15d5357](https://github.com/rust-mcp-stack/oauth2-test-server/commit/15d5357cb8d79fbf5287b4e98758dd173957746e)) + ## [0.2.2](https://github.com/rust-mcp-stack/oauth2-test-server/compare/v0.2.1...v0.2.2) (2026-03-17) diff --git a/Cargo.lock b/Cargo.lock index da27e3b..63d2db4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1106,7 +1106,7 @@ dependencies = [ [[package]] name = "oauth2-test-server" -version = "0.2.2" +version = "0.2.3" dependencies = [ "async-trait", "axum", diff --git a/Cargo.toml b/Cargo.toml index 8c5f43d..8e31196 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oauth2-test-server" -version = "0.2.2" +version = "0.2.3" edition = "2021" authors = ["Ali Hashemi"] description = "A fast, fully configurable, in-memory OAuth 2.0 + OpenID Connect authorization server for testing, zero-HTTP mode and DCR support for testing auth flow in MCP Servers and MCP Clients" diff --git a/README.md b/README.md index 3bf1ce8..bf13ba4 100644 --- a/README.md +++ b/README.md @@ -131,12 +131,12 @@ You can run the server directly from your terminal - no code required. - **Shell script** ```bash - curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-mcp-stack/oauth2-test-server/releases/download/v0.2.2/oauth2-test-server-installer.sh | sh + curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-mcp-stack/oauth2-test-server/releases/download/v0.2.3/oauth2-test-server-installer.sh | sh ``` - **PowerShell script** ```bash - powershell -ExecutionPolicy Bypass -c "irm https://github.com/rust-mcp-stack/oauth2-test-server/releases/download/v0.2.2/oauth2-test-server-installer.ps1 | iex" + powershell -ExecutionPolicy Bypass -c "irm https://github.com/rust-mcp-stack/oauth2-test-server/releases/download/v0.2.3/oauth2-test-server-installer.ps1 | iex" ``` - **Homebrew** @@ -164,55 +164,55 @@ You can run the server directly from your terminal - no code required. Apple Silicon macOS - oauth2-test-server-aarch64-apple-darwin.tar.xz + oauth2-test-server-aarch64-apple-darwin.tar.xz - checksum + checksum Intel macOS - oauth2-test-server-x86_64-apple-darwin.tar.xz + oauth2-test-server-x86_64-apple-darwin.tar.xz - checksum + checksum x64 Windows (zip) - oauth2-test-server-x86_64-pc-windows-msvc.zip + oauth2-test-server-x86_64-pc-windows-msvc.zip - checksum + checksum x64 Windows (msi) - oauth2-test-server-x86_64-pc-windows-msvc.msi + oauth2-test-server-x86_64-pc-windows-msvc.msi - checksum + checksum ARM64 Linux - oauth2-test-server-aarch64-unknown-linux-gnu.tar.xz + oauth2-test-server-aarch64-unknown-linux-gnu.tar.xz - checksum + checksum x64 Linux - oauth2-test-server-x86_64-unknown-linux-gnu.tar.xz + oauth2-test-server-x86_64-unknown-linux-gnu.tar.xz - checksum + checksum