File CVE-2024-35195.patch of Package python-docker.34184
From e33e0a437ecd895158c8cb4322a0cdad79312636 Mon Sep 17 00:00:00 2001
From: Felix Fontein <felix@fontein.de>
Date: Mon, 20 May 2024 21:13:41 +0200
Subject: [PATCH] Hotfix for requests 2.32.0.
Signed-off-by: Felix Fontein <felix@fontein.de>
---
docker/transport/basehttpadapter.py | 7 +++++++
1 file changed, 7 insertions(+)
Index: docker-2.6.1/docker/transport/unixconn.py
===================================================================
--- docker-2.6.1.orig/docker/transport/unixconn.py
+++ docker-2.6.1/docker/transport/unixconn.py
@@ -104,6 +104,13 @@ class UnixAdapter(requests.adapters.HTTP
return pool
+ # Hotfix for requests 2.32.0: its commit
+ # https://github.com/psf/requests/commit/c0813a2d910ea6b4f8438b91d315b8d181302356
+ # changes requests.adapters.HTTPAdapter to no longer call get_connection() from
+ # send(), but instead call _get_connection().
+ def _get_connection(self, request, *args, proxies=None, **kwargs):
+ return self.get_connection(request.url, proxies)
+
def request_url(self, request, proxies):
# The select_proxy utility in requests errors out when the provided URL
# doesn't have a hostname, like is the case when using a UNIX socket.