v2.0.11
版本发布时间: 2024-03-25 18:58:54
WordPress/Requests最新发布版本:v2.0.12(2024-07-08 16:51:54)
Overview of changes
- Update bundled certificates as of 2024-03-11. #864
- Fixed: PHP 8.4 deprecation of the two parameter signature of
stream_context_set_option()
. #822 Props @jrfnl - Fixed: PHP 8.4 deprecation of implicitly nullable parameter. #865 Props @Ayesh, @jrfnl
⚠️ Note: this fix constitutes an, albeit small, breaking change to the signature of the
Cookie::parse_from_headers()
method. Classes which extend theCookie
class and overload theparse_from_headers()
method should be updated for the new method signature. Additionally, if code calling theCookie::parse_from_headers()
method would be wrapped in atry - catch
to catch a potential PHPTypeError
(PHP 7.0+) orException
(PHP < 7.0) for when invalid data was passed as the$origin
parameter, this code will need to be updated to now also catch a potentialWpOrg\Requests\Exception\InvalidArgumentException
. As due diligence could not find any classes which would be affected by this BC-break, we have deemed it acceptable to include this fix in the 2.0.11 release.