Commit d055da3c33 for wordpress.org

commit d055da3c331639576e0e50eb8bcfe528d3105036
Author: whyisjake <whyisjake@git.wordpress.org>
Date:   Wed Sep 23 23:26:44 2026 +0000

    Embeds: Update the ReverbNation oEmbed endpoint.

    ReverbNation has moved its site and oEmbed API to the `legacy.reverbnation.com` subdomain. The previous `www.reverbnation.com/oembed` endpoint returns a `404 Not Found` response and does not redirect, so embeds of artist and song URLs stopped working. This points the provider at the new endpoint and extends the URL pattern to match `legacy.reverbnation.com`, which `www.reverbnation.com` URLs now redirect to.

    Props johnbillion, yogeshbhutkar, arkaprabhachowdhury, adamsilverstein.
    Fixes #66079.

    Built from https://develop.svn.wordpress.org/trunk@63907


    git-svn-id: http://core.svn.wordpress.org/trunk@63076 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-includes/class-wp-oembed.php b/wp-includes/class-wp-oembed.php
index 7f6ee42220..d3fc20ee86 100644
--- a/wp-includes/class-wp-oembed.php
+++ b/wp-includes/class-wp-oembed.php
@@ -88,7 +88,7 @@ class WP_oEmbed {
 			'#https?://(www\.)?kickstarter\.com/projects/.*#i' => array( 'https://www.kickstarter.com/services/oembed', true ),
 			'#https?://kck\.st/.*#i'                       => array( 'https://www.kickstarter.com/services/oembed', true ),
 			'#https?://cloudup\.com/.*#i'                  => array( 'https://cloudup.com/oembed', true ),
-			'#https?://(www\.)?reverbnation\.com/.*#i'     => array( 'https://www.reverbnation.com/oembed', true ),
+			'#https?://((legacy|www)\.)?reverbnation\.com/.*#i' => array( 'https://legacy.reverbnation.com/oembed', true ),
 			'#https?://videopress\.com/v/.*#'              => array( 'https://public-api.wordpress.com/oembed/?for=' . $host, true ),
 			'#https?://(www\.)?reddit\.com/r/[^/]+/comments/.*#i' => array( 'https://www.reddit.com/oembed', true ),
 			'#https?://(www\.)?speakerdeck\.com/.*#i'      => array( 'https://speakerdeck.com/oembed.{format}', true ),
diff --git a/wp-includes/version.php b/wp-includes/version.php
index ddfce2319f..993502b95f 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.2-alpha-63906';
+$wp_version = '7.2-alpha-63907';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.