11# Changelog
22
3+ ## 0.15.1 (2026-03-13)
4+
5+ This is a minor release, updating rustls to 0.23.37 and updating other dependencies.
6+
7+ * Build artifacts on ubuntu-22 by @ctz in https://github.com/rustls/rustls-ffi/pull/561
8+ * rustls 0.23.25 -> 0.23.27 by @cpu in https://github.com/rustls/rustls-ffi/pull/566
9+ * Update rustls 0.23.27 -> 0.23.28, expose new API surface & errors by @cpu in https://github.com/rustls/rustls-ffi/pull/574
10+ * website: Remove backdrop-filter: blur from items by @yedayak in https://github.com/rustls/rustls-ffi/pull/577
11+ * docgen: skip over cpp attributes before decl by @ctz in https://github.com/rustls/rustls-ffi/pull/581
12+ * cbindgen: Add version defines by @yedayak in https://github.com/rustls/rustls-ffi/pull/576
13+ * librustls: rustls 0.23.28 -> 0.23.29 by @cpu in https://github.com/rustls/rustls-ffi/pull/583
14+ * librustls: update rustls 0.23.29 -> 0.23.31 by @cpu in https://github.com/rustls/rustls-ffi/pull/589
15+ * Bump rust-version to 1.73 by @djc in https://github.com/rustls/rustls-ffi/pull/607
16+ * upgrade rustls 0.23.31 -> 0.23.33 by @cpu in https://github.com/rustls/rustls-ffi/pull/614
17+ * error: use decl+proc macro to generate u32 mapping by @ctz in https://github.com/rustls/rustls-ffi/pull/618
18+ * librustls: fix typo in server cert verifier builder docs by @cpu in https://github.com/rustls/rustls-ffi/pull/620
19+ * Bump macos versions for artifacts by @ctz in https://github.com/rustls/rustls-ffi/pull/623
20+ * docgen/website: show deprecated function warnings on docs website by @cpu in https://github.com/rustls/rustls-ffi/pull/584
21+
322## 0.15.0 (2025-03-25)
423
524This release updates to [ Rustls 0.23.25] [ ] and increases the project minimum
@@ -184,7 +203,7 @@ requirements.
184203 * Ciphersuites supported by a specific ` rustls_crypto_provider ` can be retrieved with
185204 ` rustls_crypto_provider_ciphersuites_len() ` and ` rustls_crypto_provider_ciphersuites_get() ` .
186205 * Ciphersuites supported by the current process-wide default crypto provider (if any) can
187- be retrieved with ` rustls_default_crypto_provider_ciphersuites_len() ` and
206+ be retrieved with ` rustls_default_crypto_provider_ciphersuites_len() ` and
188207 ` rustls_default_crypto_provider_ciphersuites_get() ` .
189208 * A buffer can be filled with cryptographically secure random data from
190209 a specific ` rustls_crypto_provider ` using ` rustls_crypto_provider_random() ` ,
@@ -201,7 +220,7 @@ requirements.
201220 based on the current process-wide default.
202221 * ` rustls_crypto_provider_builder_new_with_base ` will construct a builder
203222 based on a specified ` rustls_crypto_provider ` .
204- * Customization of supported ciphersuites can be achieved with
223+ * Customization of supported ciphersuites can be achieved with
205224 ` rustls_crypto_provider_builder_set_cipher_suites() ` .
206225 * The default process-wide provider can be installed from a builder using
207226 ` rustls_crypto_provider_builder_build_as_default() ` , if it has not already
@@ -231,7 +250,7 @@ requirements.
231250 more information on supported platforms.
232251 * Use ` rustls_platform_server_cert_verifier() ` to construct a platform verifier
233252 that uses the default crypto provider.
234- * Use ` rustls_platform_server_cert_verifier_with_provider() ` to construct a
253+ * Use ` rustls_platform_server_cert_verifier_with_provider() ` to construct a
235254 platform verifier that uses the specified ` rustls_crypto_provider ` .
236255 * The returned ` rustls_server_cert_verifier ` can be used with
237256 a ` rustls_client_config_builder ` with
@@ -264,7 +283,7 @@ requirements.
264283
265284* ` rustls_server_config_builder_build() ` and
266285 ` rustls_client_config_builder_build() ` now use out-parameters for the
267- ` rustls_server_config ` or ` rustls_client_config ` , and return a ` rustls_result ` .
286+ ` rustls_server_config ` or ` rustls_client_config ` , and return a ` rustls_result ` .
268287 This allows returning an error if the build operation fails because a suitable
269288 crypto provider was not available.
270289
@@ -286,7 +305,7 @@ requirements.
286305 functions (` rustls_all_ciphersuites_len() ` ,
287306 ` rustls_all_ciphersuites_get_entry() ` , ` rustls_default_ciphersuites_len() ` and
288307 ` rustls_default_ciphersuites_get_entry() ` ) have been
289- removed. Ciphersuite support is dictated by the ` rustls_crypto_provider ` .
308+ removed. Ciphersuite support is dictated by the ` rustls_crypto_provider ` .
290309 * Use ` rustls_default_supported_ciphersuites() ` to retrieve
291310 a ` rustls_supported_ciphersuites ` for the default ` rustls_crypto_provider ` .
292311 * Use ` rustls_crypto_provider_ciphersuites() ` to retrieve a
@@ -307,7 +326,7 @@ only cryptographic provider.
307326* A new ` rustls_accepted_alert ` type is added. Calling
308327 ` rustls_accepted_alert_bytes ` on this type produces TLS data to write
309328 in the case where a server acceptor encountered an error accepting a client.
310- The returned TLS data should be written to the connection before freeing
329+ The returned TLS data should be written to the connection before freeing
311330 the ` rustls_accepted_alert ` by calling ` rustls_accepted_alert_write_tls ` with
312331 a ` rustls_write_callback ` implementation.
313332
@@ -367,19 +386,19 @@ and 0.12.0 continues to use `*ring*` as the only cryptographic provider.
367386 ` rustls_root_cert_store_builder_add_pem ` and
368387 ` rustls_root_cert_store_builder_load_roots_from_file ` .
369388* The client verifier builders (
370- ` rustls_allow_any_anonymous_or_authenticated_client_builder ` , and
389+ ` rustls_allow_any_anonymous_or_authenticated_client_builder ` , and
371390 ` rustls_allow_any_authenticated_client_builder ` ) as well as the client
372- verifier types (` rustls_allow_any_anonymous_or_authenticated_client_verifier ` ,
391+ verifier types (` rustls_allow_any_anonymous_or_authenticated_client_verifier ` ,
373392 ` rustls_allow_any_authenticated_client_verifier ` ) have been replaced with
374393 ` rustls_web_pki_client_cert_verifier_builder ` and ` rustls_client_cert_verifier ` .
375- * The server config client verifier setters
394+ * The server config client verifier setters
376395 (` rustls_server_config_builder_set_client_verifier ` and
377396 ` rustls_server_config_builder_set_client_verifier_optional ` ) have been
378397 replaced with ` rustls_server_config_builder_set_client_verifier ` .
379- * The client config builder functions for specifying root trust anchors
398+ * The client config builder functions for specifying root trust anchors
380399 (` rustls_client_config_builder_use_roots ` and
381400 ` rustls_client_config_builder_load_roots_from_file ` ) have been replaced
382- with a server certificate verifier builder
401+ with a server certificate verifier builder
383402 (` rustls_web_pki_server_cert_verifier_builder ` ) constructed with
384403 ` rustls_web_pki_server_cert_verifier_builder_new ` and
385404 a ` rustls_root_cert_store ` . The built ` rustls_web_pki_server_cert_verifier `
0 commit comments