summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArchit Aggarwal <architag@amazon.com>2020-07-16 17:53:34 -0700
committerGitHub <noreply@github.com>2020-07-16 17:53:34 -0700
commitdfd17c928bc26fab0ea082ba59af68cbabe3abcd (patch)
treefd9bc633df09dd1f0c3fb696f1edf549317f2e4c
parent319dd912cac2f75d14a66f3cdf383252dfac4549 (diff)
downloadfreertos-git-dfd17c928bc26fab0ea082ba59af68cbabe3abcd.tar.gz
Update naming for MQTT in ChangeLog for 200717_LTS_development_snapshot (#151)
-rw-r--r--CHANGELOG.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3d0efff6a..c6640fd9a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,20 +15,20 @@
#### Rename FreeRTOS-IoT-Libraries Directory
-- The FreeRTOS-IoT-Libraries directories in the previous snapshot version (V2020218_LTS_development_snapshot) under FreeRTOS-Plus/Source and FreeRTOS-Plus/Demo has been renamed to *FreeRTOS-IoT-Libraries-Beta1* to make way for a parallel directory, *FreeRTOS-IoT-Libraries-Beta2*, that holds libraries for which the refactoring work is near completion (currently the MQTT library).
+- The FreeRTOS-IoT-Libraries directories in the previous snapshot version (V2020218_LTS_development_snapshot) under `FreeRTOS-Plus/Source and FreeRTOS-Plus/Demo` have been renamed to *FreeRTOS-IoT-Libraries-Beta1* to make way for a parallel directory, *FreeRTOS-IoT-Libraries-Beta2*, that holds libraries for which the refactoring work is near completion (currently the MQTT library).
-#### New MQTT Client Library (Beta 2)
+#### MQTT LTS rc1 Client Library (in FreeRTOS-IoT-Libraries-LTS-Beta2)
-- A new MQTT library source code has been added under the FreeRTOS-Plus/Source/FreeRTOS-IoT-Libraries-Beta2 directory.
-- Demos for the new MQTT library have been added to the FreeRTOS-Plus/Demo/FreeRTOS-IoT-Libraries-Beta2 directory.
+- The first release candidate for the refactored MQTT library is located in the `FreeRTOS-Plus/Source/FreeRTOS-IoT-Libraries-Beta2` directory. The library will be released in the main FreeRTOS download when the refactoring described on the [LTS roadmap](https://freertos.org/ltsroadmap.html) page is complete.
+- Demos for the refactored MQTT library have been added to the `FreeRTOS-Plus/Demo/FreeRTOS-IoT-Libraries-Beta2 directory`.
-#### Bugfixes in MQTT Client Library (Beta 1)
+#### Bugfixes in MQTT Client Library (in FreeRTOS-IoT-Libraries-LTS-Beta1)
* Improved the Keep-Alive mechanism: The MQTT library will not send PING requests when connection is not idle, which fixes a disconnect issue during OTA. In the prior version, MQTT would sometimes disconnect during OTA due to timeouts for server PING response.
* Bug fix for Keep-Alive interval: The MQTT library was incorrectly sending PING requests at intervals greater than the keep alive period sent in the CONNECT request. This has been fixed.
* Bugfix for synchronous Publish at QoS 0: The earlier implementation of IotMqtt_PublishSync API always returned success even when network transmission of the PUBLISH packet failed. This bug has now been fixed such that the API function will return network error when network transmission fails.
-#### PKCS#11
+#### PKCS #11
- Added doxygen to various PKCS #11 files.
- Added improved logging for mbed TLS return codes in iot_pkcs11_mbedtls.c.