diff --git a/projects/plugins/jetpack/changelog/fix-sig-not-visible-on-publicize-off b/projects/plugins/jetpack/changelog/fix-sig-not-visible-on-publicize-off new file mode 100644 index 0000000000000..732e0d597ac66 --- /dev/null +++ b/projects/plugins/jetpack/changelog/fix-sig-not-visible-on-publicize-off @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +Enabled SIG even if publicize is disabled diff --git a/projects/plugins/jetpack/composer.json b/projects/plugins/jetpack/composer.json index 8b8b004e96978..34d01ac3a9c19 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ā“„13_4_a_3", + "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackā“„13_4_a_4", "allow-plugins": { "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true diff --git a/projects/plugins/jetpack/extensions/plugins/publicize/index.js b/projects/plugins/jetpack/extensions/plugins/publicize/index.js index ba5cd02b09819..ea955d1918d95 100644 --- a/projects/plugins/jetpack/extensions/plugins/publicize/index.js +++ b/projects/plugins/jetpack/extensions/plugins/publicize/index.js @@ -28,7 +28,7 @@ export const name = 'publicize'; const PublicizeSettings = () => { const { isLoadingModules, isChangingStatus, isModuleActive, changeStatus } = useModuleStatus( name ); - const { isSocialImageGeneratorAvailable, isPublicizeEnabled } = usePublicizeConfig(); + const { isSocialImageGeneratorAvailable } = usePublicizeConfig(); let children = null; let panels = null; @@ -49,7 +49,7 @@ const PublicizeSettings = () => { - { isSocialImageGeneratorAvailable && isPublicizeEnabled && } + { isSocialImageGeneratorAvailable && } ); panels = ( diff --git a/projects/plugins/jetpack/jetpack.php b/projects/plugins/jetpack/jetpack.php index 6c07eb3128a5f..dad4de0a00ba0 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: 13.4-a.3 + * Version: 13.4-a.4 * Author URI: https://jetpack.com * License: GPL2+ * Text Domain: jetpack @@ -34,7 +34,7 @@ define( 'JETPACK__MINIMUM_WP_VERSION', '6.3' ); define( 'JETPACK__MINIMUM_PHP_VERSION', '7.0' ); -define( 'JETPACK__VERSION', '13.4-a.3' ); +define( 'JETPACK__VERSION', '13.4-a.4' ); /** * Constant used to fetch the connection owner token diff --git a/projects/plugins/jetpack/package.json b/projects/plugins/jetpack/package.json index 33ff973b22207..70ca8ff301672 100644 --- a/projects/plugins/jetpack/package.json +++ b/projects/plugins/jetpack/package.json @@ -1,6 +1,6 @@ { "name": "Jetpack", - "version": "13.4.0-a.3", + "version": "13.4.0-a.4", "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",