From 563c4817702c5f6179f1f9a1ec9c205d0e928492 Mon Sep 17 00:00:00 2001 From: albaintor <118518828+albaintor@users.noreply.github.com> Date: Thu, 6 Mar 2025 13:31:18 +0100 Subject: [PATCH 1/6] Update --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ca3f7df52..e39e5b720 100644 --- a/setup.py +++ b/setup.py @@ -77,7 +77,7 @@ "urllib3>=2.2.2,<3.0.0", # Actual project dependencies "deprecation>=2.1.0,<3.0.0", - "paho-mqtt>=1.6.1,<2.0.0", + "paho-mqtt>=2.0.0", "requests>=2.32.3,<3.0.0", "requests-unixsocket2>=0.4.1", "janus", From b13e999e0801945281305d2ff89015003af8bc07 Mon Sep 17 00:00:00 2001 From: albaintor <118518828+albaintor@users.noreply.github.com> Date: Thu, 6 Mar 2025 13:38:46 +0100 Subject: [PATCH 2/6] Update --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e39e5b720..32e212a4d 100644 --- a/setup.py +++ b/setup.py @@ -74,7 +74,7 @@ install_requires=[ # Define sub-dependencies due to pip dependency resolution bug # https://github.com/pypa/pip/issues/988 - "urllib3>=2.2.2,<3.0.0", + "urllib3>=2.2.2", # Actual project dependencies "deprecation>=2.1.0,<3.0.0", "paho-mqtt>=2.0.0", From 6f5b5dce4592c46595d1d62dee62d3b041ecb750 Mon Sep 17 00:00:00 2001 From: albaintor <118518828+albaintor@users.noreply.github.com> Date: Thu, 6 Mar 2025 13:48:41 +0100 Subject: [PATCH 3/6] Update --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 32e212a4d..da080b5a5 100644 --- a/setup.py +++ b/setup.py @@ -74,7 +74,7 @@ install_requires=[ # Define sub-dependencies due to pip dependency resolution bug # https://github.com/pypa/pip/issues/988 - "urllib3>=2.2.2", + "urllib3", # Actual project dependencies "deprecation>=2.1.0,<3.0.0", "paho-mqtt>=2.0.0", From 661134af646eb171d57b62d1d4bf24dcecdfa6fe Mon Sep 17 00:00:00 2001 From: albaintor <118518828+albaintor@users.noreply.github.com> Date: Thu, 6 Mar 2025 13:54:38 +0100 Subject: [PATCH 4/6] Update --- azure-iot-device/azure/iot/device/constant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-iot-device/azure/iot/device/constant.py b/azure-iot-device/azure/iot/device/constant.py index 92161cd06..a69578e14 100644 --- a/azure-iot-device/azure/iot/device/constant.py +++ b/azure-iot-device/azure/iot/device/constant.py @@ -6,7 +6,7 @@ """This module defines constants for use across the azure-iot-device package """ -VERSION = "2.14.0" +VERSION = "3.1.0" IOTHUB_IDENTIFIER = "azure-iot-device-iothub-py" PROVISIONING_IDENTIFIER = "azure-iot-device-provisioning-py" IOTHUB_API_VERSION = "2019-10-01" From 548e1df972b824f1ece581d5e9562efafb4d987b Mon Sep 17 00:00:00 2001 From: albaintor <118518828+albaintor@users.noreply.github.com> Date: Thu, 6 Mar 2025 13:58:51 +0100 Subject: [PATCH 5/6] Update --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index da080b5a5..4916b2239 100644 --- a/setup.py +++ b/setup.py @@ -79,7 +79,7 @@ "deprecation>=2.1.0,<3.0.0", "paho-mqtt>=2.0.0", "requests>=2.32.3,<3.0.0", - "requests-unixsocket2>=0.4.1", + "requests-unixsocket2>=0.4.2b0", "janus", "PySocks", "typing_extensions", From 48ba591e7aca9f88bc552264ef56db095e7738ba Mon Sep 17 00:00:00 2001 From: albaintor <118518828+albaintor@users.noreply.github.com> Date: Thu, 6 Mar 2025 14:16:17 +0100 Subject: [PATCH 6/6] Update --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4916b2239..e0b857536 100644 --- a/setup.py +++ b/setup.py @@ -74,12 +74,12 @@ install_requires=[ # Define sub-dependencies due to pip dependency resolution bug # https://github.com/pypa/pip/issues/988 - "urllib3", + "urllib3>=1.26.5,<1.27", # Actual project dependencies "deprecation>=2.1.0,<3.0.0", "paho-mqtt>=2.0.0", "requests>=2.32.3,<3.0.0", - "requests-unixsocket2>=0.4.2b0", + "requests-unixsocket>=0.1.5,<1.0.0", "janus", "PySocks", "typing_extensions",