From 0caf2af8ea688773db8507d760e6ff9e994e80d9 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Thu, 3 Apr 2025 14:09:27 +0000 Subject: [PATCH] Security: Don't fail the Argon2-related tests when it's not available on the test infrastructure. These tests are not critical to the bcrypt functionality, they exist to reaffirm that the underlying use of `password_hash()` and `password_verify()` supports this algorithm. The Argon2 tests therefore shouldn't unnecessarily fail on hosts that don't support it. Props desrosj, johnbillion. Fixes #21022 Built from https://develop.svn.wordpress.org/trunk@60124 git-svn-id: http://core.svn.wordpress.org/trunk@59460 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 797defd261..b6de0c1e9c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60123'; +$wp_version = '6.9-alpha-60124'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.