File tree Expand file tree Collapse file tree 4 files changed +27
-5
lines changed Expand file tree Collapse file tree 4 files changed +27
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,27 @@ 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
+ ### Changed
10
+
11
+ - An empty value (` Some("") ` or ` Some([]) ` ) is now returned when retrieving
12
+ value of a HTTP header or trailer with an empty value. This is consistent
13
+ with the representation when retrieving a full HTTP header or trailer map.
14
+ Previously, a "no value" (` None ` ) was being returned, which made an empty
15
+ value indistinguishable from a non-existent HTTP header or trailer.
16
+ Thanks [ @prembhaskal ] ( https://github.com/prembhaskal ) !
17
+
18
+ ### Added
19
+
20
+ - Added support for foreign function callbacks.
21
+ Thanks [ @casimiro ] ( https://github.com/casimiro ) !
22
+
23
+ - Added convenience functions to remove headers and trailers.
24
+ Thanks [ @itsLucario ] ( https://github.com/itsLucario ) !
25
+
26
+ - Added convenience function to remove shared data.
27
+
7
28
## [ 0.2.2] - 2024-07-21
8
29
9
30
### Fixed
@@ -108,6 +129,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
108
129
- Initial release.
109
130
110
131
132
+ [ 0.2.3 ] : https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.2...v0.2.3
111
133
[ 0.2.2 ] : https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.1...v0.2.2
112
134
[ 0.2.1 ] : https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.0...v0.2.1
113
135
[ 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 = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
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 @@ -56,13 +56,13 @@ alias(
56
56
)
57
57
58
58
alias (
59
- name = "proxy-wasm-0.2.3-dev " ,
60
- actual = "@crates_vendor__proxy-wasm-0.2.3-dev //:proxy_wasm" ,
59
+ name = "proxy-wasm-0.2.3" ,
60
+ actual = "@crates_vendor__proxy-wasm-0.2.3//:proxy_wasm" ,
61
61
tags = ["manual" ],
62
62
)
63
63
64
64
alias (
65
65
name = "proxy-wasm" ,
66
- actual = "@crates_vendor__proxy-wasm-0.2.3-dev //:proxy_wasm" ,
66
+ actual = "@crates_vendor__proxy-wasm-0.2.3//:proxy_wasm" ,
67
67
tags = ["manual" ],
68
68
)
You can’t perform that action at this time.
0 commit comments