From 2130a90861bb7c2ecca7927b04e7a23f247f37ba Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Wed, 8 Nov 2023 19:46:00 +0000 Subject: [PATCH] External Libraries: Update Requests to `2.0.9`. This updates the Requests library from version `2.0.8` to `2.0.9`. This is a hotfix release. Props jorbin, hellofromTonya, desrosj, barry, cenkdemir, nexflaszlo, schlessera, jrf, Clorith, tomsommer, azaozz, pbiron, afragen, howdy_mcgee. Fixes #59842. git-svn-id: https://develop.svn.wordpress.org/trunk@57086 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/Requests/src/Requests.php | 2 +- src/wp-includes/Requests/src/Transport/Curl.php | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/Requests/src/Requests.php b/src/wp-includes/Requests/src/Requests.php index edf37f2214..bb5292ac49 100644 --- a/src/wp-includes/Requests/src/Requests.php +++ b/src/wp-includes/Requests/src/Requests.php @@ -148,7 +148,7 @@ class Requests { * * @var string */ - const VERSION = '2.0.8'; + const VERSION = '2.0.9'; /** * Selected transport name diff --git a/src/wp-includes/Requests/src/Transport/Curl.php b/src/wp-includes/Requests/src/Transport/Curl.php index 29034b25d5..7316987b5f 100644 --- a/src/wp-includes/Requests/src/Transport/Curl.php +++ b/src/wp-includes/Requests/src/Transport/Curl.php @@ -25,7 +25,6 @@ use WpOrg\Requests\Utility\InputValidator; final class Curl implements Transport { const CURL_7_10_5 = 0x070A05; const CURL_7_16_2 = 0x071002; - const CURL_7_22_0 = 0x071600; /** * Raw HTTP data @@ -364,7 +363,7 @@ final class Curl implements Transport { $options['hooks']->dispatch('curl.before_request', [&$this->handle]); // Force closing the connection for old versions of cURL (<7.22). - if ($this->version < self::CURL_7_22_0 && !isset($headers['Connection'])) { + if (!isset($headers['Connection'])) { $headers['Connection'] = 'close'; }