From 895905b85a2ab01e9256445b383d678fb94b1bf2 Mon Sep 17 00:00:00 2001 From: Ayesh Karunaratne Date: Wed, 9 Apr 2025 04:30:28 +0700 Subject: [PATCH] ext/curl: Add CURLOPT_INFILESIZE_LARGE to UPGRADING --- UPGRADING | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/UPGRADING b/UPGRADING index 6cc0cc537df..451cfe4b86b 100644 --- a/UPGRADING +++ b/UPGRADING @@ -147,6 +147,11 @@ PHP 8.5 UPGRADE NOTES indicating the http and proxy authentication methods that were used in the previous request. See CURLAUTH_* constants for possible values. + . Added CURLOPT_INFILESIZE_LARGE Curl option, which is a safe + replacement for CURLOPT_INFILESIZE. On certain systems, + CURLOPT_INFILESIZE only accepts a 32-bit signed integer as the file + size (2.0 GiB) even on 64-bit systems. CURLOPT_INFILESIZE_LARGE + accepts the largest integer value the system can handle. - DOM: . Added Dom\Element::$outerHTML. @@ -343,6 +348,7 @@ PHP 8.5 UPGRADE NOTES . CURLINFO_USED_PROXY. . CURLINFO_HTTPAUTH_USED. . CURLINFO_PROXYAUTH_USED. + . CURLOPT_INFILESIZE_LARGE. - Intl: . DECIMAL_COMPACT_SHORT.