Skip to content

Commit 14735d6

Browse files
committed
Release v0.2.2.
Signed-off-by: Piotr Sikora <[email protected]>
1 parent ec3ddd2 commit 14735d6

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,27 @@ 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-xx
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+
728
## [0.2.1] - 2022-11-22
829

930
### Fixed
@@ -86,6 +107,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
86107
- Initial release.
87108

88109

110+
[0.2.2]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.1...v0.2.2
89111
[0.2.1]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.0...v0.2.1
90112
[0.2.0]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.1.4...v0.2.0
91113
[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
@@ -49,7 +49,7 @@ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
4949

5050
[[package]]
5151
name = "proxy-wasm"
52-
version = "0.2.1"
52+
version = "0.2.2"
5353
dependencies = [
5454
"hashbrown",
5555
"log",

bazel/cargo/remote/BUILD.bazel

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

4040
alias(
4141
name = "proxy-wasm",
42-
actual = "@crates_vendor__proxy-wasm-0.2.1//:proxy_wasm",
42+
actual = "@crates_vendor__proxy-wasm-0.2.2//:proxy_wasm",
4343
tags = ["manual"],
4444
)

0 commit comments

Comments
 (0)