Skip to content

Commit

Permalink
Release v0.2.2.
Browse files Browse the repository at this point in the history
Signed-off-by: Piotr Sikora <[email protected]>
  • Loading branch information
PiotrSikora committed Jul 19, 2024
1 parent ec3ddd2 commit 14735d6
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
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.2] - 2024-07-xx

### Fixed

- Fixed support for nested gRPC callouts.
Thanks [@andytesti](https://github.com/andytesti)!

- Fixed panic on unknown `token_id` in `on_grpc_receive_initial_metadata`
and `on_grpc_receive_trailing_metadata`.
Thanks [@erikness-doordash](https://github.com/erikness-doordash)!

- Fixed panic on unexpected failures in `get_property`.
Thanks [@alexsnaps](https://github.com/alexsnaps)!

- Fixed panic on unexpected failures in `call_foreign_function`.
Reported by [@geNAZt](https://github.com/geNAZt).

### Added

- Added support for sending error responses with gRPC status codes.

## [0.2.1] - 2022-11-22

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


[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
[0.1.4]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.1.3...v0.1.4
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.1"
version = "0.2.2"
authors = ["Piotr Sikora <[email protected]>"]
rust-version = "1.61"
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 @@ -49,7 +49,7 @@ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"

[[package]]
name = "proxy-wasm"
version = "0.2.1"
version = "0.2.2"
dependencies = [
"hashbrown",
"log",
Expand Down
2 changes: 1 addition & 1 deletion bazel/cargo/remote/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ alias(

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

0 comments on commit 14735d6

Please sign in to comment.