HTTP API: Deprecate `WP_Http_Curl` and `WP_Http_Streams` classes.
These classes have not been used in WordPress Core since the Requests library was introduced in [37428]. These classes are now deprecated in favor of `WP_Http`. There are two remaining spots in Core that reference these classes: - The `WP_Http::_dispatch_request()` method, which was marked as deprecated in favor of `WP_Http::request()` in [42766]/[44346]. - The `WP_Http::_get_first_available_transport()`. That latter is now also marked as deprecated in favor of `\WpOrg\Requests\Requests::get_transport_class()`. Props SergeyBiryukov, rajinsharwar, hellofromTonya. Fixes #58705. Built from https://develop.svn.wordpress.org/trunk@56655 git-svn-id: http://core.svn.wordpress.org/trunk@56167 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
491a21da64
commit
ced31b7c58
|
@ -15,6 +15,8 @@
|
|||
* Requires the Curl extension to be installed.
|
||||
*
|
||||
* @since 2.7.0
|
||||
* @deprecated 6.4.0 Use WP_Http
|
||||
* @see WP_Http
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class WP_Http_Curl {
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
*
|
||||
* @since 2.7.0
|
||||
* @since 3.7.0 Combined with the fsockopen transport and switched to `stream_socket_client()`.
|
||||
* @deprecated 6.4.0 Use WP_Http
|
||||
* @see WP_Http
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class WP_Http_Streams {
|
||||
|
|
|
@ -516,6 +516,8 @@ class WP_Http {
|
|||
* Tests which transports are capable of supporting the request.
|
||||
*
|
||||
* @since 3.2.0
|
||||
* @deprecated 6.4.0 Use WpOrg\Requests\Requests::get_transport_class()
|
||||
* @see WpOrg\Requests\Requests::get_transport_class()
|
||||
*
|
||||
* @param array $args Request arguments.
|
||||
* @param string $url URL to request.
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.4-alpha-56654';
|
||||
$wp_version = '6.4-alpha-56655';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue