Skip to content

Commit 039e6a8

Browse files
ext/curl: bump minimum libcurl version to 7.61.1
1 parent 9073875 commit 039e6a8

4 files changed

Lines changed: 8 additions & 2 deletions

File tree

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ PHP NEWS
1414
. Fixed bug GH-22602 (gregoriantojd() and juliantojd() integer overflow with
1515
INT_MAX year). (arshidkv12)
1616

17+
- Curl:
18+
. Bumped required libcurl version to 7.61.1. (GrahamCampbell)
19+
1720
- Date:
1821
. Update timelib to 2022.17. (Derick)
1922
. Fixed bug GH-19803 (Parsing a string with a single white space does create

UPGRADING

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,9 @@ PHP 8.6 UPGRADE NOTES
455455
9. Other Changes to Extensions
456456
========================================
457457

458+
- Curl:
459+
. The Curl extension now requires at least libcurl 7.61.1.
460+
458461
- Hash:
459462
. The bundled version of xxHash was upgraded to 0.8.2.
460463

ext/curl/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PHP_ARG_WITH([curl],
44
[Include cURL support])])
55

66
if test "$PHP_CURL" != "no"; then
7-
PKG_CHECK_MODULES([CURL], [libcurl >= 7.61.0])
7+
PKG_CHECK_MODULES([CURL], [libcurl >= 7.61.1])
88
PKG_CHECK_VAR([CURL_FEATURES], [libcurl], [supported_features])
99

1010
PHP_EVAL_LIBLINE([$CURL_LIBS], [CURL_SHARED_LIBADD])

ext/curl/sync-constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
const SOURCE_FILE = __DIR__ . '/curl_arginfo.h';
1414

15-
const MIN_SUPPORTED_CURL_VERSION = '7.61.0';
15+
const MIN_SUPPORTED_CURL_VERSION = '7.61.1';
1616

1717
const IGNORED_CURL_CONSTANTS = [
1818
'CURLOPT_PROGRESSDATA',

0 commit comments

Comments
 (0)