From b9807d67899955ca9a360587c3adb5473c5f10ec Mon Sep 17 00:00:00 2001 From: Tim Perry Date: Fri, 25 Oct 2024 10:23:52 -0700 Subject: [PATCH] Add breaking change note to CHANGELOG --- .../src/airflow/providers/microsoft/azure/CHANGELOG.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/providers/src/airflow/providers/microsoft/azure/CHANGELOG.rst b/providers/src/airflow/providers/microsoft/azure/CHANGELOG.rst index 148fce2e1152f..457abcd976420 100644 --- a/providers/src/airflow/providers/microsoft/azure/CHANGELOG.rst +++ b/providers/src/airflow/providers/microsoft/azure/CHANGELOG.rst @@ -27,6 +27,12 @@ Changelog --------- +Breaking changes +~~~~~~~~~~~~~~~~ +.. warning:: + * We changed the message callback for Azure Service Bus messages to take two parameters, the message and the context, rather than just the message. This allows pushing message information into XComs. To upgrade from the previous version, which only took the message, please update your callback to take the context as a second parameter. + + 10.5.1 ......