Group all renamings together in Changelog

This commit is contained in:
Manuel Pégourié-Gonnard 2015-05-06 17:53:08 +01:00
parent 662c6e8cdd
commit 6e088f9a0f

View file

@ -10,11 +10,10 @@ Features
API Changes
* All public identifiers moved to the mbedtls_* or MBEDTLS_* namespace.
Some names have been further changed to make them more consistent.
Migration helpers scripts/rename.pl and include/mbedlts/compat-1.3.h are
provided.
provided. Full list of renamings in scripts/data_files/rename-1.3-2.0.txt
* Headers are now found in the 'mbedtls' directory (previously 'polarssl').
* Error codes NET_WANT_READ and NET_WANT_WRITE have been moved to the SSL
module and renamed accordingly (handled by rename.pl and compat-1.3.h)
* The following _init() functions that could return errors have
been split into an _init() that returns void and another function:
mbedtls_ssl_init() -> mbedtls_ssl_setup()
@ -24,9 +23,6 @@ API Changes
mbedtls_ctr_drbg_init() -> mbedtls_ctr_drbg_init(_buf)()
* mbedtls_ssl_set_ca_chain() lost its last argument (peer_cn), now set
using mbedtls_ssl_set_hostname().
* Renamed mbedtls_pkcs11_priv_key_init() to ..._bind() and
mbedtls_pkcs11_x509_cert_init() as well (handled by rename.pl and
compat-1.3.h)
* mbedtls_memory_bufer_alloc_init() now returns void
* In the threading layer, mbedtls_mutex_init() and mbedtls_mutex_free() now
return void.