Skip to content

Commit

Permalink
Release v0.2.2. (#250)
Browse files Browse the repository at this point in the history
Signed-off-by: Piotr Sikora <code@piotrsikora.dev>
  • Loading branch information
PiotrSikora authored Jul 21, 2024
1 parent ec49360 commit 78f36a6
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,28 @@ 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-21

### 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.
Thanks [@juanmolle](https://github.com/juanmolle)!

## [0.2.1] - 2022-11-22

### Fixed
Expand Down Expand Up @@ -86,6 +108,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 <piotrsikora@google.com>"]
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 @@ -59,7 +59,7 @@ dependencies = [

[[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 @@ -45,6 +45,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 78f36a6

Please sign in to comment.