diff --git a/wp-includes/class-wp-oembed.php b/wp-includes/class-wp-oembed.php index c428723537..546fa41f28 100644 --- a/wp-includes/class-wp-oembed.php +++ b/wp-includes/class-wp-oembed.php @@ -110,6 +110,7 @@ class WP_oEmbed { '#https?://(www\.)?wolframcloud\.com/obj/.+#i' => array( 'https://www.wolframcloud.com/oembed', true ), '#https?://pca\.st/.+#i' => array( 'https://pca.st/oembed.json', true ), '#https?://((play|www)\.)?anghami\.com/.*#i' => array( 'https://api.anghami.com/rest/v1/oembed.view', true ), + '#https?://bsky.app/profile/.*/post/.*#i' => array( 'https://embed.bsky.app/oembed', true ), ); if ( ! empty( self::$early_providers['add'] ) ) { @@ -190,6 +191,7 @@ class WP_oEmbed { * | Pocket Casts | pocketcasts.com | 6.1.0 | * | Crowdsignal | crowdsignal.net | 6.2.0 | * | Anghami | anghami.com | 6.3.0 | + * | Bluesky | bsky.app | 6.6.0 | * * No longer supported providers: * diff --git a/wp-includes/version.php b/wp-includes/version.php index bd601c36d5..5b0b988224 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-alpha-58090'; +$wp_version = '6.6-alpha-58091'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.