From c4c67bfd8f62d9982cb274a00d21c7ce0e0dff2b Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Wed, 17 Jun 2026 16:58:06 +0800 Subject: [PATCH] rabbitmq-c: upgrade 0.15.0 -> 0.16.0 Changelog: ============ - Fix out-of-bounds read via undersized frames in amqp_handle_input - Fix client crash when server negotiates frame_max below the AMQP protocol minimum - Add amqp_bytes_from_buffer macro to create amqp_bytes_t from an arbitrary byte buffer with explicit length - Fix NULL pointer dereferences on allocation failure in tools/publish.c - Fix NULL pointer dereference in tools/consume.c stringify_bytes() on allocation failure - Fix file stream leak in tools/common.c read_authfile() - Fix handling of absolute CMAKE_INSTALL_INCLUDEDIR in exported CMake targets - amqp_literal_bytes macro now uses an explicit (void *) cast Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- .../rabbitmq-c/{rabbitmq-c_0.15.0.bb => rabbitmq-c_0.16.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-oe/recipes-connectivity/rabbitmq-c/{rabbitmq-c_0.15.0.bb => rabbitmq-c_0.16.0.bb} (86%) diff --git a/meta-oe/recipes-connectivity/rabbitmq-c/rabbitmq-c_0.15.0.bb b/meta-oe/recipes-connectivity/rabbitmq-c/rabbitmq-c_0.16.0.bb similarity index 86% rename from meta-oe/recipes-connectivity/rabbitmq-c/rabbitmq-c_0.15.0.bb rename to meta-oe/recipes-connectivity/rabbitmq-c/rabbitmq-c_0.16.0.bb index 4fd6302f2c..c4428008db 100644 --- a/meta-oe/recipes-connectivity/rabbitmq-c/rabbitmq-c_0.15.0.bb +++ b/meta-oe/recipes-connectivity/rabbitmq-c/rabbitmq-c_0.16.0.bb @@ -3,9 +3,9 @@ HOMEPAGE = "https://github.com/alanxz/rabbitmq-c" LIC_FILES_CHKSUM = "file://LICENSE;md5=7e12f6e40e662e039e2f02b4893011ec" LICENSE = "MIT" -SRC_URI = "git://github.com/alanxz/rabbitmq-c.git;branch=master;protocol=https \ +SRC_URI = "git://github.com/alanxz/rabbitmq-c.git;branch=master;protocol=https;tag=v${PV} \ " -SRCREV = "84b81cd97a1b5515d3d4b304796680da24c666d8" +SRCREV = "800d57c9ca7352181167ec3c6aba66b8518c321c" DEPENDS = "popt openssl"