diff --git a/wp-admin/includes/upgrade.php b/wp-admin/includes/upgrade.php index 696770c8ff..32e8d2c6a2 100644 --- a/wp-admin/includes/upgrade.php +++ b/wp-admin/includes/upgrade.php @@ -2262,7 +2262,7 @@ function upgrade_network() { } // 5.1 - if ( $wp_current_db_version < 42836 ) { + if ( $wp_current_db_version < 44467 ) { $network_id = get_main_network_id(); delete_network_option( $network_id, 'site_meta_supported' ); is_site_meta_supported(); diff --git a/wp-includes/class-wp-site-query.php b/wp-includes/class-wp-site-query.php index 3d2f4f173b..bc3e3519a3 100644 --- a/wp-includes/class-wp-site-query.php +++ b/wp-includes/class-wp-site-query.php @@ -42,7 +42,7 @@ class WP_Site_Query { /** * Metadata query container. * - * @since 5.0.0 + * @since 5.1.0 * @var WP_Meta_Query */ public $meta_query = false; @@ -50,7 +50,7 @@ class WP_Site_Query { /** * Metadata query clauses. * - * @since 5.0.0 + * @since 5.1.0 * @var array */ protected $meta_query_clauses; @@ -108,7 +108,7 @@ class WP_Site_Query { * * @since 4.6.0 * @since 4.8.0 Introduced the 'lang_id', 'lang__in', and 'lang__not_in' parameters. - * @since 5.0.0 Introduced the 'update_site_meta_cache', 'meta_query', 'meta_key', + * @since 5.1.0 Introduced the 'update_site_meta_cache', 'meta_query', 'meta_key', * 'meta_value', 'meta_type' and 'meta_compare' parameters. * * @param string|array $query { diff --git a/wp-includes/functions.php b/wp-includes/functions.php index b00a47c1d8..90f74e5904 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -4912,7 +4912,7 @@ function global_terms_enabled() { * a setting for the main network, making it essentially a global setting. Subsequent requests * will refer to this setting instead of running the query. * - * @since 5.0.0 + * @since 5.1.0 * * @global wpdb $wpdb WordPress database abstraction object. * diff --git a/wp-includes/ms-blogs.php b/wp-includes/ms-blogs.php index 21d0820920..66380f0970 100644 --- a/wp-includes/ms-blogs.php +++ b/wp-includes/ms-blogs.php @@ -699,7 +699,7 @@ function get_site( $site = null ) { * Adds any sites from the given ids to the cache that do not already exist in cache. * * @since 4.6.0 - * @since 5.0.0 Introduced the `$update_meta_cache` parameter. + * @since 5.1.0 Introduced the `$update_meta_cache` parameter. * @access private * * @see update_site_cache() @@ -723,7 +723,7 @@ function _prime_site_caches( $ids, $update_meta_cache = true ) { * Updates sites in cache. * * @since 4.6.0 - * @since 5.0.0 Introduced the `$update_meta_cache` parameter. + * @since 5.1.0 Introduced the `$update_meta_cache` parameter. * * @param array $sites Array of site objects. * @param bool $update_meta_cache Whether to update site meta cache. Default true. @@ -750,7 +750,7 @@ function update_site_cache( $sites, $update_meta_cache = true ) { * Performs SQL query to retrieve all metadata for the sites matching `$site_ids` and stores them in the cache. * Subsequent calls to `get_site_meta()` will not need to query the database. * - * @since 5.0.0 + * @since 5.1.0 * * @param array $site_ids List of site IDs. * @return array|false Returns false if there is nothing to update. Returns an array of metadata on success. @@ -1465,7 +1465,7 @@ function update_blog_option( $id, $option, $value, $deprecated = null ) { /** * Adds metadata to a site. * - * @since 5.0.0 + * @since 5.1.0 * * @param int $site_id Site ID. * @param string $meta_key Metadata name. @@ -1478,7 +1478,7 @@ function add_site_meta( $site_id, $meta_key, $meta_value, $unique = false ) { // Bail if site meta table is not installed. if ( ! is_site_meta_supported() ) { /* translators: %s: database table name */ - _doing_it_wrong( __FUNCTION__, sprintf( __( 'The %s table is not installed. Please run the network database upgrade.' ), $GLOBALS['wpdb']->blogmeta ), '5.0.0' ); + _doing_it_wrong( __FUNCTION__, sprintf( __( 'The %s table is not installed. Please run the network database upgrade.' ), $GLOBALS['wpdb']->blogmeta ), '5.1.0' ); return false; } @@ -1499,7 +1499,7 @@ function add_site_meta( $site_id, $meta_key, $meta_value, $unique = false ) { * value, will keep from removing duplicate metadata with the same key. It also * allows removing all metadata matching key, if needed. * - * @since 5.0.0 + * @since 5.1.0 * * @param int $site_id Site ID. * @param string $meta_key Metadata name. @@ -1511,7 +1511,7 @@ function delete_site_meta( $site_id, $meta_key, $meta_value = '' ) { // Bail if site meta table is not installed. if ( ! is_site_meta_supported() ) { /* translators: %s: database table name */ - _doing_it_wrong( __FUNCTION__, sprintf( __( 'The %s table is not installed. Please run the network database upgrade.' ), $GLOBALS['wpdb']->blogmeta ), '5.0.0' ); + _doing_it_wrong( __FUNCTION__, sprintf( __( 'The %s table is not installed. Please run the network database upgrade.' ), $GLOBALS['wpdb']->blogmeta ), '5.1.0' ); return false; } @@ -1528,7 +1528,7 @@ function delete_site_meta( $site_id, $meta_key, $meta_value = '' ) { /** * Retrieves metadata for a site. * - * @since 5.0.0 + * @since 5.1.0 * * @param int $site_id Site ID. * @param string $key Optional. The meta key to retrieve. By default, returns @@ -1541,7 +1541,7 @@ function get_site_meta( $site_id, $key = '', $single = false ) { // Bail if site meta table is not installed. if ( ! is_site_meta_supported() ) { /* translators: %s: database table name */ - _doing_it_wrong( __FUNCTION__, sprintf( __( 'The %s table is not installed. Please run the network database upgrade.' ), $GLOBALS['wpdb']->blogmeta ), '5.0.0' ); + _doing_it_wrong( __FUNCTION__, sprintf( __( 'The %s table is not installed. Please run the network database upgrade.' ), $GLOBALS['wpdb']->blogmeta ), '5.1.0' ); return false; } @@ -1556,7 +1556,7 @@ function get_site_meta( $site_id, $key = '', $single = false ) { * * If the meta field for the site does not exist, it will be added. * - * @since 5.0.0 + * @since 5.1.0 * * @param int $site_id Site ID. * @param string $meta_key Metadata key. @@ -1570,7 +1570,7 @@ function update_site_meta( $site_id, $meta_key, $meta_value, $prev_value = '' ) // Bail if site meta table is not installed. if ( ! is_site_meta_supported() ) { /* translators: %s: database table name */ - _doing_it_wrong( __FUNCTION__, sprintf( __( 'The %s table is not installed. Please run the network database upgrade.' ), $GLOBALS['wpdb']->blogmeta ), '5.0.0' ); + _doing_it_wrong( __FUNCTION__, sprintf( __( 'The %s table is not installed. Please run the network database upgrade.' ), $GLOBALS['wpdb']->blogmeta ), '5.1.0' ); return false; } @@ -1587,7 +1587,7 @@ function update_site_meta( $site_id, $meta_key, $meta_value, $prev_value = '' ) /** * Deletes everything from site meta matching meta key. * - * @since 5.0.0 + * @since 5.1.0 * * @param string $meta_key Metadata key to search for when deleting. * @return bool Whether the site meta key was deleted from the database. @@ -1596,7 +1596,7 @@ function delete_site_meta_by_key( $meta_key ) { // Bail if site meta table is not installed. if ( ! is_site_meta_supported() ) { /* translators: %s: database table name */ - _doing_it_wrong( __FUNCTION__, sprintf( __( 'The %s table is not installed. Please run the network database upgrade.' ), $GLOBALS['wpdb']->blogmeta ), '5.0.0' ); + _doing_it_wrong( __FUNCTION__, sprintf( __( 'The %s table is not installed. Please run the network database upgrade.' ), $GLOBALS['wpdb']->blogmeta ), '5.1.0' ); return false; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 530e0f469f..67cd576980 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,14 +13,14 @@ * * @global string $wp_version */ -$wp_version = '5.1-alpha-44466'; +$wp_version = '5.1-alpha-44467'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * * @global int $wp_db_version */ -$wp_db_version = 43764; +$wp_db_version = 44467; /** * Holds the TinyMCE version diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php index 93393a8fa5..c85c1692fd 100644 --- a/wp-includes/wp-db.php +++ b/wp-includes/wp-db.php @@ -417,7 +417,7 @@ class wpdb { /** * Multisite Blog Metadata table * - * @since 5.0.0 + * @since 5.1.0 * @var string */ public $blogmeta;