Skip to content

Release v0.2.3. #317

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jun 4, 2025
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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@ 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.3] - 2025-06-04

### Changed

- An empty value (`Some("")` or `Some([])`) is now returned when retrieving
value of a HTTP header or trailer with an empty value. This is consistent
with the representation when retrieving a full HTTP header or trailer map.
Previously, a "no value" (`None`) was being returned, which made an empty
value indistinguishable from a non-existent HTTP header or trailer.
Thanks [@prembhaskal](https://github.com/prembhaskal)!

### Added

- Added support for foreign function callbacks.
Thanks [@casimiro](https://github.com/casimiro)!

- Added convenience functions to remove headers and trailers.
Thanks [@itsLucario](https://github.com/itsLucario)!

- Added convenience function to remove shared data.

## [0.2.2] - 2024-07-21

### Fixed
Expand Down Expand Up @@ -108,6 +129,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Initial release.


[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
[0.2.0]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.1.4...v0.2.0
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.3-dev"
version = "0.2.3"
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 @@ -39,7 +39,7 @@ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"

[[package]]
name = "proxy-wasm"
version = "0.2.3-dev"
version = "0.2.3"
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 @@ -56,13 +56,13 @@ alias(
)

alias(
name = "proxy-wasm-0.2.3-dev",
actual = "@crates_vendor__proxy-wasm-0.2.3-dev//:proxy_wasm",
name = "proxy-wasm-0.2.3",
actual = "@crates_vendor__proxy-wasm-0.2.3//:proxy_wasm",
tags = ["manual"],
)

alias(
name = "proxy-wasm",
actual = "@crates_vendor__proxy-wasm-0.2.3-dev//:proxy_wasm",
actual = "@crates_vendor__proxy-wasm-0.2.3//:proxy_wasm",
tags = ["manual"],
)
Loading