Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ PHP NEWS
- BCMath:
. Added NUL-byte validation to BCMath functions. (jorgsowa)

- Curl:
. Bumped required libcurl version to 7.61.1. (GrahamCampbell)

- Date:
. Update timelib to 2022.16. (Derick)

Expand Down
3 changes: 3 additions & 0 deletions UPGRADING
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,9 @@ PHP 8.6 UPGRADE NOTES
9. Other Changes to Extensions
========================================

- Curl:
. The Curl extension now requires at least libcurl 7.61.1.

- Hash:
. The bundled version of xxHash was upgraded to 0.8.2.

Expand Down
2 changes: 1 addition & 1 deletion ext/curl/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PHP_ARG_WITH([curl],
[Include cURL support])])

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

PHP_EVAL_LIBLINE([$CURL_LIBS], [CURL_SHARED_LIBADD])
Expand Down
2 changes: 1 addition & 1 deletion ext/curl/sync-constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

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

const MIN_SUPPORTED_CURL_VERSION = '7.61.0';
const MIN_SUPPORTED_CURL_VERSION = '7.61.1';

const IGNORED_CURL_CONSTANTS = [
'CURLOPT_PROGRESSDATA',
Expand Down
Loading