File tree Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.13.0 (XXXX-XX-XX)
4
+
5
+ This release updates to [ Rustls 0.23.1] and continues to use ` *ring* ` as the
6
+ only cryptographic provider.
7
+
8
+ [ Rustls 0.23.1 ] : https://github.com/rustls/rustls/releases/tag/v%2F0.23.1
9
+
10
+ ### Added
11
+
12
+ * A new ` rustls_accepted_alert ` type is added. Calling
13
+ ` rustls_accepted_alert_bytes ` on this type produces TLS data to write
14
+ in the case where a server acceptor encountered an error accepting a client.
15
+ The returned TLS data should be written to the connection before freeing
16
+ the ` rustls_accepted_alert ` by calling ` rustls_accepted_alert_write_tls ` with
17
+ a ` rustls_write_callback ` implementation.
18
+
19
+ ## Changed
20
+
21
+ * The ` rustls_acceptor_accept ` and ` rustls_accepted_into_connection ` API
22
+ functions now require an extra ` rustls_accepted_alert ` out parameter. This
23
+ parameter will only be set when an error occurs accepting a client connection
24
+ and can be used to write any generated alerts to the connection to signal
25
+ the accept error to the peer.
26
+
3
27
## 0.12.1 (2024-03-21)
4
28
5
29
### Added
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rustls-ffi"
3
- version = " 0.12.1 "
3
+ version = " 0.13.0 "
4
4
authors = [
" Jacob Hoffman-Andrews <[email protected] >" ]
5
5
license = " Apache-2.0/ISC/MIT"
6
6
readme = " README-crates.io.md"
You can’t perform that action at this time.
0 commit comments