diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d8ae77..b3d722c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.2.4] - 2025-10-01 + +### Fixed + +- Fixed a memory leak in `get_map` and `get_map_bytes` hostcalls. + This issue has been introduced in [0.2.3]. + Thanks [@JaatadiaMulesoft](https://github.com/JaatadiaMulesoft)! + ## [0.2.3] - 2025-06-04 ### Changed @@ -129,6 +137,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Initial release. +[0.2.4]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.3...v0.2.4 [0.2.3]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.2...v0.2.3 [0.2.2]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.1...v0.2.2 [0.2.1]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.0...v0.2.1 diff --git a/Cargo.toml b/Cargo.toml index 161b375..f8c436b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proxy-wasm" -version = "0.2.4-dev" +version = "0.2.4" authors = ["Piotr Sikora "] rust-version = "1.65" description = "WebAssembly for Proxies" diff --git a/bazel/cargo/Cargo.Bazel.lock b/bazel/cargo/Cargo.Bazel.lock index 885d05b..e513ff1 100644 --- a/bazel/cargo/Cargo.Bazel.lock +++ b/bazel/cargo/Cargo.Bazel.lock @@ -68,7 +68,7 @@ dependencies = [ [[package]] name = "proxy-wasm" -version = "0.2.4-dev" +version = "0.2.4" dependencies = [ "hashbrown", "log", diff --git a/bazel/cargo/remote/BUILD.bazel b/bazel/cargo/remote/BUILD.bazel index 5e98702..ef2c398 100644 --- a/bazel/cargo/remote/BUILD.bazel +++ b/bazel/cargo/remote/BUILD.bazel @@ -68,13 +68,13 @@ alias( ) alias( - name = "proxy-wasm-0.2.4-dev", - actual = "@crates_vendor__proxy-wasm-0.2.4-dev//:proxy_wasm", + name = "proxy-wasm-0.2.4", + actual = "@crates_vendor__proxy-wasm-0.2.4//:proxy_wasm", tags = ["manual"], ) alias( name = "proxy-wasm", - actual = "@crates_vendor__proxy-wasm-0.2.4-dev//:proxy_wasm", + actual = "@crates_vendor__proxy-wasm-0.2.4//:proxy_wasm", tags = ["manual"], )