Requests::VERSION
constant has been updated to reflect the actual version for the release. @jrfnl, #485.gitattributes
file to include fewer files in the distribution. @mbabker, #484Release 1.8.0 will be the last release with compatibility for PHP 5.2 - 5.5. With the next release (v2.0.0), the minimum PHP version will be bumped to 5.6.
Release 1.8.0 will be the last release to be distributed via PEAR. From release 2.0.0 onwards, consumers of this library will have to switch to Composer to receive updates.
FilteredIterator
A Deserialization of Untrusted Data
weakness was found in the FilteredIterator
class.
This security vulnerability was first reported to the WordPress project. The security fix applied to WordPress has been ported back into the library.
GitHub security advisory: Insecure Deserialization of untrusted data
CVE: CVE-2021-29476 - Deserialization of Untrusted Data
Related WordPress CVE: https://cve.mitre.org/cgi-bin/cvename.cgi?name=2020-28032
(props @dd32, @desrosj, @jrfnl, @peterwilsoncc, @SergeyBiryukov, @whyisjake, @xknown, #421, #422)
WordPress\Requests
The Requests
library has been moved to the WordPress GitHub organization and can now be found under https://github.com/WordPress/Requests
.
All links in code and documentation were updated accordingly.
Note: the Composer package name remains unchanged (rmccue/requests
), as well as the documentation site (requests.ryanmccue.info).
(props @dd32, @JustinyAhin, @jrfnl, @rmccue, #440, #441, #448)
"Expect"
header with cURL
transportBy default, cURL
adds a Expect: 100-Continue
header to certain requests. This can add as much as a second delay to requests done using cURL
. This is discussed on the cURL mailing list.
To prevent this, Requests
now adds an empty "Expect"
header to requests that are smaller than 1 MB and use HTTP/1.1.
(props @carlalexander, @schlessera, @TimothyBJacobs, #453, #454, #469)
The bundled certificates were updated. A small subset of expired certificates are still included for legacy reasons (and support).
(props @ozh, @patmead, @schlessera, @todeveni, #385, #398, #451)
Content-*
headers for empty POST
requestsSends the Content-Length
and Content-Type
headers even for empty POST
requests, as the length is expected as per RFC2616 Section 14.13:
Content-Length header "SHOULD" be included. In practice, it is not
used for GET nor HEAD requests, but is expected for POST requests.
(props @dd32, @gstrauss, @jrfnl, @soulseekah, #248, #249, #318, #368)
The previous behavior allowed for the locale to mess up the float to string conversion resulting in a GET / HTTP/1,1
instead of GET / HTTP/1.1
request.
(props @tonebender, @Zegnat, #335, #339)
verify => false
work with fsockopen
This allows the fsockopen
transport now to ignore SSL failures when requested.
(props @soulseekah, #310, #311)
Host
header if it differs from the defaultThe code was not violating the RFC per se, but also not following standard practice of leaving the port off when it is the default port for the scheme, which could lead to connectivity issues.
(props @amandato, @dd32, #238)
Important fixes have been made to improve cross-version compatibility of the code across all supported PHP versions.
implode()
arguments.$url
property to string
in Requests::parse_response()
.$body
property to an empty string in Requests::parse_response()
.$callback
in the FilteredIterator
is callable before calling it.(props @aaronjorbin, @jrfnl, #346, #370, #425, #426, #456, #457)
Lots of improvements were made to render the tests more reliable and increase the coverage.
And to top it all off, all tests are now run against all supported PHP versions, including PHP 8.0.
(props @datagutten, @jrfnl, @schlessera, #345, #351, #355, #366, #412, #414, #445, #458, #464)
A whole swoop of changes has been made to harden the code and make it more consistent.
The code style has been made consistent across both code and tests and is now enforced via a custom PHPCS rule set.
The WordPress Coding Standards were chosen as the basis for the code style checks as most contributors to this library originate from the WordPress community and will be familiar with this code style.
Main differences from the WordPress Coding Standards based on discussions and an analysis of the code styles already in use:
A more detailed overview of the decisions that went into the final code style rules can be found at #434.
(props @jrfnl, @KasperFranz, @ozh, @schlessera, @TysonAndre, #263, #296, #328, #358, #359, #360, #361, #362, #363, #364, #386, #396, #399, #400, #401, #402, #403, #404, #405, #406, #408, #409, #410, #411, #413, #415, #416, #417, #423, #424, #434)
The entire CI setup is gradually being moved from Travis CI to GitHub Actions.
At this point, GitHub Actions takes over the CI from PHP 5.5 onwards, leaving Travis CI as a fallback for lower PHP versions.
This move will be completed after the planned minimum version bump to PHP 5.6+ with the next release, at which point we will get rid of all the remaining Travis CI integrations.
(props @dd32, @desrosj, @jrfnl, @ntwb, @ozh, @schlessera, @TimothyBJacobs, @TysonAndre, #280, #298, #302, #303, #352, #353, #354, #356, #388, #397, #428, #436, #439, #461, #467)
README.md
file.(props @desrosj, @jrfnl, @JustinyAhin, @tnorthcutt, #334, #367, #387, #443, #462, #465, #468, #471 )
Requests is now tested against both HHVM and PHP 7, and they are supported as first-party platforms.
cURL is unable to handle timeouts under a second in DNS lookups, so we round those up to ensure 1-999ms isn’t counted as an instant failure.
(props @ozh, @rmccue, #97, #216)
Cookies are now restricted to the same-origin by default, expiration is checked.
(props @catharsisjelly, @rmccue, #120, #124, #130, #132, #156)
Tests are now run locally to speed them up, as well as further general improvements to the quality of the testing suite. There are now also comprehensive proxy tests to ensure coverage there.
(props @rmccue, #75, #107, #170, #177, #181, #183, #185, #196, #202, #203)
Previously, custom HTTP methods were only supported on sockets; they are now supported across all transports.
defined()
instead of version_compare()
(props @beutnagel, #162)
stream_headers
method to public to allow calling it from other
places.(props @laurentmartelli, #174)
curl_init()
OR curl_exec()
are unavailableverifyname
is disabled.Host
header when it differs from
default(props @stephenharris, #236, #3)
(props @qibinghua, #219)
Add multiple request support - Send multiple HTTP requests with both fsockopen and cURL, transparently falling back to synchronous when not supported.
Add proxy support - HTTP proxies are now natively supported via a high-level API. Major props to Ozh for his fantastic work on this.
Verify host name for SSL requests - Requests is now the first and only standalone HTTP library to fully verify SSL hostnames even with socket connections. Thanks to Michael Adams, Dion Hulse, Jon Cave, and Pádraic Brady for reviewing the crucial code behind this.
Add cookie support - Adds built-in support for cookies (built entirely as a high-level API)
Add sessions - To compliment cookies, sessions can be created with a base URL and default options, plus a shared cookie jar.
Add Composer support - You can now install Requests via the
rmccue/requests
package on Composer
[View all changes][https://github.com/WordPress/Requests/compare/v1.5.0…v1.6.0]
Initial release!