Skip to content

ext/curl: Update UPGRADING and NEWS for GH-13255 #15668

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 1, 2024
Merged
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 @@ -53,6 +53,9 @@ PHP NEWS
. Implemented asymmetric visibility for properties. (ilutov)

- Curl:
. Added CURLOPT_PREREQFUNCTION Curl option to set a custom callback
after the connection is established, but before the request is
performed. (Ayesh Karunaratne)
. Added CURLOPT_SERVER_RESPONSE_TIMEOUT, which was formerly known as
CURLOPT_FTP_RESPONSE_TIMEOUT. (Ayesh Karunaratne)

Expand Down
9 changes: 8 additions & 1 deletion UPGRADING
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,10 @@ PHP 8.4 UPGRADE NOTES
supported (true) or not (false).
. Added CURL_HTTP_VERSION_3 and CURL_HTTP_VERSION_3ONLY constants (available
since libcurl 7.66 and 7.88) as available options for CURLOPT_HTTP_VERSION.
. Added CURLOPT_PREREQFUNCTION as a Curl option that accepts a callback to
be called after the connection is made, but before the request is sent.
The callback must return either CURL_PREREQFUNC_OK or CURL_PREREQFUNC_ABORT
to allow or abort the request.
. Added CURLOPT_SERVER_RESPONSE_TIMEOUT, which was formerly known as
CURLOPT_FTP_RESPONSE_TIMEOUT. Both constants hold the same value.

Expand Down Expand Up @@ -997,7 +1001,10 @@ PHP 8.4 UPGRADE NOTES
- Curl:
. CURL_HTTP_VERSION_3.
. CURL_HTTP_VERSION_3ONLY.
. CURL_TCP_KEEPCNT
. CURL_TCP_KEEPCNT.
. CURLOPT_PREREQFUNCTION.
. CURL_PREREQFUNC_OK.
. CURL_PREREQFUNC_ABORT.
. CURLOPT_SERVER_RESPONSE_TIMEOUT.

- Intl:
Expand Down