From ccdc1db0a923e5663f3ca544231a5f5c703ec0e2 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 5 Feb 2020 03:30:05 +0000 Subject: [PATCH] Tests: Allow `wpdb::set_sql_mode()` tests to run on MySQL 8.0.11+. MySQL 8.0.11 removed support for the `NO_AUTO_CREATE_USER` SQL mode, which was used in as an example of a mode compatible with WordPress. `NO_AUTO_VALUE_ON_ZERO` is now used in the affected tests instead, which is supported on both MySQL 5.7.x and 8.0.x. Props kaggdesign, jeremyfelt, afragen. Fixes #44586. See #49344. Built from https://develop.svn.wordpress.org/trunk@47183 git-svn-id: http://core.svn.wordpress.org/trunk@46983 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 2642d86bc8..662a50a952 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-47182'; +$wp_version = '5.4-alpha-47183'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.