File tree 4 files changed +26
-3
lines changed
4 files changed +26
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
6
6
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
+
7
29
## [ 0.2.1] - 2022-11-22
8
30
9
31
### Fixed
@@ -86,6 +108,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
86
108
- Initial release.
87
109
88
110
111
+ [ 0.2.2 ] : https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.1...v0.2.2
89
112
[ 0.2.1 ] : https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.0...v0.2.1
90
113
[ 0.2.0 ] : https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.1.4...v0.2.0
91
114
[ 0.1.4 ] : https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.1.3...v0.1.4
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " proxy-wasm"
3
- version = " 0.2.1 "
3
+ version = " 0.2.2 "
4
4
authors = [
" Piotr Sikora <[email protected] >" ]
5
5
rust-version = " 1.61"
6
6
description = " WebAssembly for Proxies"
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ dependencies = [
59
59
60
60
[[package]]
61
61
name = "proxy-wasm"
62
- version = "0.2.1 "
62
+ version = "0.2.2 "
63
63
dependencies = [
64
64
"hashbrown",
65
65
"log",
Original file line number Diff line number Diff line change 45
45
46
46
alias (
47
47
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" ,
49
49
tags = ["manual" ],
50
50
)
You can’t perform that action at this time.
0 commit comments