File tree Expand file tree Collapse file tree 4 files changed +23
-3
lines changed Expand file tree Collapse file tree 4 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,25 @@ 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.3] - 2025-06-04
8
+
9
+ ### Fixed
10
+
11
+ - When retrieving a value of an empty HTTP header or trailer by name, an empty value
12
+ (` Some(String) ` or ` Some(Vec<u8>) ` ) is now returned. Previously, no value (` None ` )
13
+ was returned, which made it indistinguishable from missing HTTP header or trailer.
14
+ Thanks [ @prembhaskal ] ( https://github.com/prembhaskal ) !
15
+
16
+ ### Added
17
+
18
+ - Added support for foreign function callbacks.
19
+ Thanks [ @casimiro ] ( https://github.com/casimiro ) !
20
+
21
+ - Added convenience functions to remove headers and trailers.
22
+ Thanks [ @itsLucario ] ( https://github.com/itsLucario ) !
23
+
24
+ - Added convenience function to remove shared data.
25
+
7
26
## [ 0.2.2] - 2024-07-21
8
27
9
28
### Fixed
@@ -108,6 +127,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
108
127
- Initial release.
109
128
110
129
130
+ [ 0.2.3 ] : https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.2...v0.2.3
111
131
[ 0.2.2 ] : https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.1...v0.2.2
112
132
[ 0.2.1 ] : https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.0...v0.2.1
113
133
[ 0.2.0 ] : https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.1.4...v0.2.0
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " proxy-wasm"
3
- version = " 0.2.3-dev "
3
+ version = " 0.2.3"
4
4
authors = [
" Piotr Sikora <[email protected] >" ]
5
5
rust-version = " 1.65"
6
6
description = " WebAssembly for Proxies"
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
39
39
40
40
[[package]]
41
41
name = "proxy-wasm"
42
- version = "0.2.3-dev "
42
+ version = "0.2.3"
43
43
dependencies = [
44
44
"hashbrown",
45
45
"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.3-dev //:proxy_wasm" ,
48
+ actual = "@crates_vendor__proxy-wasm-0.2.3//:proxy_wasm" ,
49
49
tags = ["manual" ],
50
50
)
You can’t perform that action at this time.
0 commit comments