From: Bob Beck Date: Tue, 28 Apr 2026 16:08:29 +0000 (-0600) Subject: Add a CHANGES.md entry X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b6a8a42afaaa38681b449692e15e34c4dbeb225;p=thirdparty%2Fopenssl.git Add a CHANGES.md entry Reviewed-by: Tomas Mraz Reviewed-by: Nikola Pajkovsky Reviewed-by: Norbert Pocs MergeDate: Wed May 6 11:36:09 2026 (Merged from https://github.com/openssl/openssl/pull/31001) --- diff --git a/CHANGES.md b/CHANGES.md index e8c21677460..a1ecdccfa45 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -49,6 +49,15 @@ OpenSSL Releases *Tong Li* + * Header files in OpenSSL are being changed to reflect modern development + practices - Include files should all be guarded for inclusion by a define + and must be self contained, meaning they include all dependencies they need + to compile on their own. Headers have been changed to include guards and + to include the dependencies they require. Doing this will help the + future use of more modern tooling. + + *Bob Beck* + * `EVP_CIPHER_CTX_get_num()` and `EVP_CIPHER_CTX_set_num()' have been deprecated. Refer to ossl-migration-guide(7) for more info.