Skip to content
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

Release v0.2.2. #250

Merged
merged 5 commits into from
Jul 21, 2024
Merged
Show file tree
Hide file tree
Changes from 4 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
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-xx
PiotrSikora marked this conversation as resolved.
Show resolved Hide resolved

### 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 <[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 @@ -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"],
)
Loading