From a370e5d1c431539fa0c4d60dac0b0cc6c78fa42a Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Wed, 26 Feb 2025 07:23:51 +0800 Subject: asyncmqtt: upgrade 9.0.2 -> 10.0.0 breaking changes #388 ================== - Re-organized include files. - Removed non bulk read to meet Sans-I/O interface. - Supported I/O independent (aka Sans-I/O) library. - underlying_handshake functionality is updated from free function to member function. other updates ================ - Added invalid combination checking of sharename and nl(no local). - Fixed receive maximum processing. - Fixed invalid Message Expiry Interval applying. - Fixed invalid template parameter comparison. - Added custom logger example. - Refined documents. - Made colored log selectable (by default true(colored)). - Fixed misuse of bound allocator. - Fixed TLS example. Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-oe/recipes-connectivity/asyncmqtt/asyncmqtt_10.0.0.bb | 14 ++++++++++++++ meta-oe/recipes-connectivity/asyncmqtt/asyncmqtt_9.0.2.bb | 14 -------------- 2 files changed, 14 insertions(+), 14 deletions(-) create mode 100644 meta-oe/recipes-connectivity/asyncmqtt/asyncmqtt_10.0.0.bb delete mode 100644 meta-oe/recipes-connectivity/asyncmqtt/asyncmqtt_9.0.2.bb (limited to 'meta-oe/recipes-connectivity') diff --git a/meta-oe/recipes-connectivity/asyncmqtt/asyncmqtt_10.0.0.bb b/meta-oe/recipes-connectivity/asyncmqtt/asyncmqtt_10.0.0.bb new file mode 100644 index 0000000000..e44ddc58f9 --- /dev/null +++ b/meta-oe/recipes-connectivity/asyncmqtt/asyncmqtt_10.0.0.bb @@ -0,0 +1,14 @@ +SUMMARY = "MQTT communication C++ library using Boost.Asio" +HOMEPAGE = "https://github.com/redboltz/async_mqtt" +LICENSE = "BSL-1.0" + +LIC_FILES_CHKSUM = "file://LICENSE;md5=e4224ccaecb14d942c71d31bef20d78c" + +SRC_URI = "git://github.com/redboltz/async_mqtt;protocol=http;branch=main;protocol=https" +SRCREV = "d802dc5491bfb17ea88c04bf9187a62252d64ddc" + +DEPENDS = "openssl boost" + +S = "${WORKDIR}/git" + +inherit cmake diff --git a/meta-oe/recipes-connectivity/asyncmqtt/asyncmqtt_9.0.2.bb b/meta-oe/recipes-connectivity/asyncmqtt/asyncmqtt_9.0.2.bb deleted file mode 100644 index dac83065c2..0000000000 --- a/meta-oe/recipes-connectivity/asyncmqtt/asyncmqtt_9.0.2.bb +++ /dev/null @@ -1,14 +0,0 @@ -SUMMARY = "MQTT communication C++ library using Boost.Asio" -HOMEPAGE = "https://github.com/redboltz/async_mqtt" -LICENSE = "BSL-1.0" - -LIC_FILES_CHKSUM = "file://LICENSE;md5=e4224ccaecb14d942c71d31bef20d78c" - -SRC_URI = "git://github.com/redboltz/async_mqtt;protocol=http;branch=main;protocol=https" -SRCREV = "51a97adfd022cf5205c3bb31f38ace1f7fbd21a1" - -DEPENDS = "openssl boost" - -S = "${WORKDIR}/git" - -inherit cmake -- cgit v1.2.3-54-g00ecf