diff --git a/projects/plugins/jetpack/CHANGELOG.md b/projects/plugins/jetpack/CHANGELOG.md index 26c4c36d815a5..ce8c8f35f9072 100644 --- a/projects/plugins/jetpack/CHANGELOG.md +++ b/projects/plugins/jetpack/CHANGELOG.md @@ -2,6 +2,10 @@ ### This is a list detailing changes for all Jetpack releases. +## 14.0-a.5 - 2024-10-16 +### Other changes +- Related Posts: refine how related posts are made available on singular views in block themes. [#39784] + ## 14.0-a.3 - 2024-10-14 ### Enhancements - Newsletter: Update the default "reply to" setting value from not allowed to replies being posted as public comments. [#39657] diff --git a/projects/plugins/jetpack/changelog/update-related-posts-availability-singular-views b/projects/plugins/jetpack/changelog/update-related-posts-availability-singular-views deleted file mode 100644 index 8767efe6e8a57..0000000000000 --- a/projects/plugins/jetpack/changelog/update-related-posts-availability-singular-views +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: other - -Related Posts: refine how related posts are made available on singular views in block themes. diff --git a/projects/plugins/jetpack/composer.json b/projects/plugins/jetpack/composer.json index e0b162513426c..eac7bdcd02b56 100644 --- a/projects/plugins/jetpack/composer.json +++ b/projects/plugins/jetpack/composer.json @@ -102,7 +102,7 @@ "platform": { "ext-intl": "0.0.0" }, - "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackā“„14_0_a_3", + "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackā“„14_0_a_5", "allow-plugins": { "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true diff --git a/projects/plugins/jetpack/jetpack.php b/projects/plugins/jetpack/jetpack.php index de76daf440e14..6469156e4f4dc 100644 --- a/projects/plugins/jetpack/jetpack.php +++ b/projects/plugins/jetpack/jetpack.php @@ -4,7 +4,7 @@ * Plugin URI: https://jetpack.com * Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things. * Author: Automattic - * Version: 14.0-a.3 + * Version: 14.0-a.5 * Author URI: https://jetpack.com * License: GPL2+ * Text Domain: jetpack @@ -34,7 +34,7 @@ define( 'JETPACK__MINIMUM_WP_VERSION', '6.5' ); define( 'JETPACK__MINIMUM_PHP_VERSION', '7.0' ); -define( 'JETPACK__VERSION', '14.0-a.3' ); +define( 'JETPACK__VERSION', '14.0-a.5' ); /** * Constant used to fetch the connection owner token diff --git a/projects/plugins/jetpack/package.json b/projects/plugins/jetpack/package.json index 1a57f97811920..75a84e7b516be 100644 --- a/projects/plugins/jetpack/package.json +++ b/projects/plugins/jetpack/package.json @@ -1,6 +1,6 @@ { "name": "Jetpack", - "version": "14.0.0-a.3", + "version": "14.0.0-a.5", "private": true, "description": "[Jetpack](https://jetpack.com/) is a WordPress plugin that supercharges your self-hosted WordPress site with the awesome cloud power of [WordPress.com](https://wordpress.com).", "homepage": "https://jetpack.com", diff --git a/projects/plugins/jetpack/readme.txt b/projects/plugins/jetpack/readme.txt index 342b5f6c93030..caa2d797608e3 100644 --- a/projects/plugins/jetpack/readme.txt +++ b/projects/plugins/jetpack/readme.txt @@ -326,23 +326,8 @@ Jetpack Backup can do a full website migration to a new host, migrate theme file == Changelog == -### 14.0-a.3 - 2024-10-14 -#### Enhancements -- Newsletter: Update the default "reply to" setting value from not allowed to replies being posted as public comments. -- Social: Add Bluesky to social previews. - -#### Improved compatibility -- Image CDN: URL encode image path parts for RSS feed compatibility. -- Related Posts: Allow Related Posts on non-post CPTs where the block is already able to be used. - -#### Bug fixes -- Blocks: Fix rendering of the goodreads block to avoid PHP warnings caused by missing attributes. -- Blocks: Render the slideshow block correctly inside an iframe editor. -- Contact Form: Ensure that submitted forms can only be accessed by logged in users allowed to view form submissions. -- General: Only include `wp-polyfill` as a script dependency when needed. -- Newsletter: Ensure `Enable featured image on your new post emails` setting displays the right value. -- Sharing: Ensure the sharing settings can be accessed even when a user is not connected to WordPress.com. -- Stats: Fix top post card on the Insight page. +### 14.0-a.5 - 2024-10-16 +Fix: do not include Related Posts on non-post posts on classic themes. --------