Skip to content

Commit 3913d2b

Browse files
committed
Release v0.2.3.
Signed-off-by: Piotr Sikora <[email protected]>
1 parent c0cc06f commit 3913d2b

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## [0.2.3] - 2025-06-04
8+
9+
### Fixed
10+
11+
- When retrieving a value of an empty HTTP header or trailer by name, an empty value
12+
(`Some(String)` or `Some(Vec<u8>)`) is now returned. Previously, no value (`None`)
13+
was returned, which made it indistinguishable from missing HTTP header or trailer.
14+
Thanks [@prembhaskal](https://github.com/prembhaskal)!
15+
16+
### Added
17+
18+
- Added support for foreign function callbacks.
19+
Thanks [@casimiro](https://github.com/casimiro)!
20+
21+
- Added convenience functions to remove headers and trailers.
22+
Thanks [@itsLucario](https://github.com/itsLucario)!
23+
24+
- Added convenience function to remove shared data.
25+
726
## [0.2.2] - 2024-07-21
827

928
### Fixed
@@ -108,6 +127,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
108127
- Initial release.
109128

110129

130+
[0.2.3]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.2...v0.2.3
111131
[0.2.2]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.1...v0.2.2
112132
[0.2.1]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.0...v0.2.1
113133
[0.2.0]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.1.4...v0.2.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "proxy-wasm"
3-
version = "0.2.3-dev"
3+
version = "0.2.3"
44
authors = ["Piotr Sikora <[email protected]>"]
55
rust-version = "1.65"
66
description = "WebAssembly for Proxies"

bazel/cargo/Cargo.Bazel.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
3939

4040
[[package]]
4141
name = "proxy-wasm"
42-
version = "0.2.3-dev"
42+
version = "0.2.3"
4343
dependencies = [
4444
"hashbrown",
4545
"log",

bazel/cargo/remote/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ alias(
4545

4646
alias(
4747
name = "proxy-wasm",
48-
actual = "@crates_vendor__proxy-wasm-0.2.3-dev//:proxy_wasm",
48+
actual = "@crates_vendor__proxy-wasm-0.2.3//:proxy_wasm",
4949
tags = ["manual"],
5050
)

0 commit comments

Comments
 (0)