From c87a07de905e36a268e37541bdf254542e4f38e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Wed, 26 May 2021 10:38:59 +0200 Subject: [PATCH] Fix the "rm (D)TLS 1.0 1.1" ChangeLog entry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Removing MBEDTLS_SSL_RECORD_CHECKING has nothing to do with TLS 1.0, TLS 1.1 and DTLS 1.0. It has been included here as a consequence of an unfortunate typo in the description of 4286. Actually, this macro was removed independently and we already have a ChangeLog entry about it: ChangeLog.d/issue4361.txt - While at it, remove the word "deprecated": these macros and functions had not been documented as deprecated in any version of the library before being removed. Signed-off-by: Manuel Pégourié-Gonnard --- ChangeLog.d/issue4286.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog.d/issue4286.txt b/ChangeLog.d/issue4286.txt index 68eb66764..813b2ecfb 100644 --- a/ChangeLog.d/issue4286.txt +++ b/ChangeLog.d/issue4286.txt @@ -1,9 +1,9 @@ Removals * Remove the TLS 1.0, TLS 1.1 and DTLS 1.0 support by removing the following - deprecated library constants: MBEDTLS_SSL_PROTO_TLS1, + library constants: MBEDTLS_SSL_PROTO_TLS1, MBEDTLS_SSL_PROTO_TLS1_1, MBEDTLS_SSL_CBC_RECORD_SPLITTING, MBEDTLS_SSL_CBC_RECORD_SPLITTING_ENABLED, - MBEDTLS_SSL_CBC_RECORD_SPLITTING_DISABLED, MBEDTLS_SSL_RECORD_CHECKING, + MBEDTLS_SSL_CBC_RECORD_SPLITTING_DISABLED, MBEDTLS_SSL_FALLBACK_SCSV, MBEDTLS_SSL_FALLBACK_SCSV_VALUE, MBEDTLS_SSL_IS_FALLBACK, MBEDTLS_SSL_IS_NOT_FALLBACK, and functions: mbedtls_ssl_conf_cbc_record_splitting(),