Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "proxy-wasm"
version = "0.2.4-dev"
version = "0.2.4"
authors = ["Piotr Sikora <[email protected]>"]
rust-version = "1.65"
description = "WebAssembly for Proxies"
Expand Down
2 changes: 1 addition & 1 deletion bazel/cargo/Cargo.Bazel.lock
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ dependencies = [

[[package]]
name = "proxy-wasm"
version = "0.2.4-dev"
version = "0.2.4"
dependencies = [
"hashbrown",
"log",
Expand Down
6 changes: 3 additions & 3 deletions bazel/cargo/remote/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
)
Loading