File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,6 +28,9 @@ PHP NEWS
2828- BZ2:
2929 . Reject oversized input in bzdecompress(). (arshidkv12)
3030
31+ - Curl:
32+ . Bumped required libcurl version to 7.61.1. (GrahamCampbell)
33+
3134- Date:
3235 . Update timelib to 2022.16. (Derick)
3336
Original file line number Diff line number Diff line change @@ -360,6 +360,9 @@ PHP 8.6 UPGRADE NOTES
3603609. Other Changes to Extensions
361361========================================
362362
363+ - Curl:
364+ . The Curl extension now requires at least libcurl 7.61.1.
365+
363366- Hash:
364367 . The bundled version of xxHash was upgraded to 0.8.2.
365368
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ PHP_ARG_WITH([curl],
44 [ Include cURL support] ) ] )
55
66if 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] )
Original file line number Diff line number Diff line change 1212
1313const 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
1717const IGNORED_CURL_CONSTANTS = [
1818 'CURLOPT_PROGRESSDATA ' ,
You can’t perform that action at this time.
0 commit comments