diff --git a/CHANGELOG.md b/CHANGELOG.md index ad68a93..5afd383 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,26 @@ +## [0.19.0] - 2026-06-30 + +### 🚀 Features + +- Normalize request URI and resolve hostname using x-cdn-real-host header +- Refactor URI normalization to use dedicated function for clarity and maintainability +- Add support for pausing epoch timeout during external HTTP requests + +### ⚙️ Miscellaneous Tasks + +- Promote reactor wit from submodule to subtree +- Upgrade actions/checkout from v4 to v7 in CI configuration files +- Upgrade actions/checkout from v5 to v7 in CI configuration ## [0.18.0] - 2026-06-10 ### 🚀 Features - Enhance error logging in WASI HTTP handler - Improve WasmConfig initialization for performance and memory efficiency + +### ⚙️ Miscellaneous Tasks + +- Release ## [0.17.1] - 2026-06-04 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index 85d615d..feeb05f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -265,7 +265,7 @@ checksum = "49e78e506b9d7633710dab98996f22f95f3d0f488e8f1aa162830556ed9fc14d" [[package]] name = "cache" -version = "0.18.0" +version = "0.19.0" dependencies = [ "async-trait", "reactor", @@ -962,7 +962,7 @@ dependencies = [ [[package]] name = "fastedge-run" -version = "0.18.0" +version = "0.19.0" dependencies = [ "anyhow", "async-trait", @@ -1555,7 +1555,7 @@ dependencies = [ [[package]] name = "http-backend" -version = "0.18.0" +version = "0.19.0" dependencies = [ "anyhow", "claims", @@ -1598,7 +1598,7 @@ dependencies = [ [[package]] name = "http-service" -version = "0.18.0" +version = "0.19.0" dependencies = [ "anyhow", "async-trait", @@ -1956,7 +1956,7 @@ dependencies = [ [[package]] name = "key-value-store" -version = "0.18.0" +version = "0.19.0" dependencies = [ "async-trait", "reactor", @@ -2786,7 +2786,7 @@ dependencies = [ [[package]] name = "reactor" -version = "0.18.0" +version = "0.19.0" dependencies = [ "wasmtime", ] @@ -2906,7 +2906,7 @@ dependencies = [ [[package]] name = "runtime" -version = "0.18.0" +version = "0.19.0" dependencies = [ "anyhow", "async-trait", @@ -3076,7 +3076,7 @@ checksum = "0cd08a21f852bd2fe42e3b2a6c76a0db6a95a5b5bd29c0521dd0b30fa1712ec8" [[package]] name = "secret" -version = "0.18.0" +version = "0.19.0" dependencies = [ "anyhow", "reactor", @@ -3825,7 +3825,7 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "utils" -version = "0.18.0" +version = "0.19.0" dependencies = [ "reactor", ] diff --git a/Cargo.toml b/Cargo.toml index ea145d3..c95c44f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.18.0" +version = "0.19.0" edition = "2024" publish = false authors = ["FastEdge Development Team"]