Skip to content

Commit 78f36a6

Browse files
authored
Release v0.2.2. (#250)
Signed-off-by: Piotr Sikora <[email protected]>
1 parent ec49360 commit 78f36a6

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,28 @@ 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.2] - 2024-07-21
8+
9+
### Fixed
10+
11+
- Fixed support for nested gRPC callouts.
12+
Thanks [@andytesti](https://github.com/andytesti)!
13+
14+
- Fixed panic on unknown `token_id` in `on_grpc_receive_initial_metadata`
15+
and `on_grpc_receive_trailing_metadata`.
16+
Thanks [@erikness-doordash](https://github.com/erikness-doordash)!
17+
18+
- Fixed panic on unexpected failures in `get_property`.
19+
Thanks [@alexsnaps](https://github.com/alexsnaps)!
20+
21+
- Fixed panic on unexpected failures in `call_foreign_function`.
22+
Reported by [@geNAZt](https://github.com/geNAZt).
23+
24+
### Added
25+
26+
- Added support for sending error responses with gRPC status codes.
27+
Thanks [@juanmolle](https://github.com/juanmolle)!
28+
729
## [0.2.1] - 2022-11-22
830

931
### Fixed
@@ -86,6 +108,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
86108
- Initial release.
87109

88110

111+
[0.2.2]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.1...v0.2.2
89112
[0.2.1]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.0...v0.2.1
90113
[0.2.0]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.1.4...v0.2.0
91114
[0.1.4]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.1.3...v0.1.4

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.1"
3+
version = "0.2.2"
44
authors = ["Piotr Sikora <[email protected]>"]
55
rust-version = "1.61"
66
description = "WebAssembly for Proxies"

bazel/cargo/Cargo.Bazel.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ dependencies = [
5959

6060
[[package]]
6161
name = "proxy-wasm"
62-
version = "0.2.1"
62+
version = "0.2.2"
6363
dependencies = [
6464
"hashbrown",
6565
"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.1//:proxy_wasm",
48+
actual = "@crates_vendor__proxy-wasm-0.2.2//:proxy_wasm",
4949
tags = ["manual"],
5050
)

0 commit comments

Comments
 (0)