File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
66
7+ ## [ 0.2.4] - 2025-10-01
8+
9+ ### Fixed
10+
11+ - Fixed a memory leak in ` get_map ` and ` get_map_bytes ` hostcalls.
12+ This issue has been introduced in [ 0.2.3] .
13+ Thanks [ @JaatadiaMulesoft ] ( https://github.com/JaatadiaMulesoft ) !
14+
715## [ 0.2.3] - 2025-06-04
816
917### Changed
@@ -129,6 +137,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
129137- Initial release.
130138
131139
140+ [ 0.2.4 ] : https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.3...v0.2.4
132141[ 0.2.3 ] : https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.2...v0.2.3
133142[ 0.2.2 ] : https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.1...v0.2.2
134143[ 0.2.1 ] : https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.0...v0.2.1
Original file line number Diff line number Diff line change 11[package ]
22name = " proxy-wasm"
3- version = " 0.2.4-dev "
3+ version = " 0.2.4"
44authors = [
" Piotr Sikora <[email protected] >" ]
55rust-version = " 1.65"
66description = " WebAssembly for Proxies"
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
3939
4040[[package]]
4141name = "proxy-wasm"
42- version = "0.2.4-dev "
42+ version = "0.2.4"
4343dependencies = [
4444 "hashbrown",
4545 "log",
Original file line number Diff line number Diff line change @@ -56,13 +56,13 @@ alias(
5656)
5757
5858alias (
59- name = "proxy-wasm-0.2.4-dev " ,
60- actual = "@crates_vendor__proxy-wasm-0.2.4-dev //:proxy_wasm" ,
59+ name = "proxy-wasm-0.2.4" ,
60+ actual = "@crates_vendor__proxy-wasm-0.2.4//:proxy_wasm" ,
6161 tags = ["manual" ],
6262)
6363
6464alias (
6565 name = "proxy-wasm" ,
66- actual = "@crates_vendor__proxy-wasm-0.2.4-dev //:proxy_wasm" ,
66+ actual = "@crates_vendor__proxy-wasm-0.2.4//:proxy_wasm" ,
6767 tags = ["manual" ],
6868)
You can’t perform that action at this time.
0 commit comments