Skip to content

Commit aed39d5

Browse files
committed
Update Jetpack plugin from 16.0 to 16.0.1
1 parent ebe69de commit aed39d5

34 files changed

Lines changed: 105 additions & 80 deletions

wp-content/plugins/jetpack/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
### This is a list detailing changes for all Jetpack releases.
44

5+
## 16.0.1 - 2026-07-15
6+
### Bug fixes
7+
- Fix the Forms and VideoPress admin dashboards rendering a blank "Something went wrong!" error on WordPress 6.9. [#50515]
8+
- My Jetpack: Fix route changes in Chrome when scroll APIs return promises. [#50465]
9+
- Poll shortcode: Require HTTPS and an exact script path when loading the poll script.
10+
511
## 16.0 - 2026-07-07
612
### Enhancements
713
- Add AI-powered "Generate/Improve with Jetpack" buttons to the Content Guidelines admin page. [#47959]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'd9e8b1d5885c8948faee');
1+
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '1f5261e780b39ac2a099');

wp-content/plugins/jetpack/_inc/build/polldaddy-shortcode.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wp-content/plugins/jetpack/_inc/polldaddy-shortcode.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,17 @@
2727
} catch {
2828
return false;
2929
}
30+
if ( poll_url.protocol !== 'https:' ) {
31+
return false;
32+
}
3033
if (
3134
poll_url.hostname !== 'secure.polldaddy.com' &&
3235
poll_url.hostname !== 'static.polldaddy.com'
3336
) {
3437
return false;
3538
}
3639
const pathname = poll_url.pathname;
37-
if ( ! /\/?p\/\d+\.js/.test( pathname ) ) {
40+
if ( ! /^\/p\/\d+\.js$/.test( pathname ) ) {
3841
return false;
3942
}
4043
const wp_pd_js = d.createElement( 'script' );

wp-content/plugins/jetpack/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"automattic/jetpack-licensing": "^3.1.9",
4242
"automattic/jetpack-logo": "^3.0.9",
4343
"automattic/jetpack-masterbar": "^0.27.32",
44-
"automattic/jetpack-my-jetpack": "^5.40.5",
44+
"automattic/jetpack-my-jetpack": "^5.40.5.1",
4545
"automattic/jetpack-newsletter": "^0.11.2",
4646
"automattic/jetpack-paypal-payments": "^0.7.7",
4747
"automattic/jetpack-plugins-installer": "^0.5.11",
@@ -107,7 +107,7 @@
107107
"platform": {
108108
"ext-intl": "0.0.0"
109109
},
110-
"autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ16_0",
110+
"autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ16_0_1",
111111
"allow-plugins": {
112112
"automattic/jetpack-autoloader": true,
113113
"automattic/jetpack-composer-plugin": true

wp-content/plugins/jetpack/jetpack.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Plugin URI: https://jetpack.com
55
* Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things.
66
* Author: Automattic
7-
* Version: 16.0
7+
* Version: 16.0.1
88
* Author URI: https://jetpack.com
99
* License: GPL2+
1010
* Text Domain: jetpack
@@ -37,7 +37,7 @@
3737

3838
if ( ! defined( 'JETPACK__VERSION' ) ) {
3939
// This breaks the project version checks when a one-liner.
40-
define( 'JETPACK__VERSION', '16.0' );
40+
define( 'JETPACK__VERSION', '16.0.1' );
4141
}
4242
defined( 'JETPACK__MINIMUM_WP_VERSION' ) || define( 'JETPACK__MINIMUM_WP_VERSION', '6.9' );
4343
defined( 'JETPACK__MINIMUM_PHP_VERSION' ) || define( 'JETPACK__MINIMUM_PHP_VERSION', '7.2' );

wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [5.40.5.1] - 2026-07-15
9+
### Fixed
10+
- Fix route changes in Chrome when scroll APIs return promises. [#50465]
11+
812
## [5.40.5] - 2026-07-06
913
### Changed
1014
- Consume the resolved actions from the Connection package instead of duplicating the action-resolution logic. [#50081]
@@ -2763,6 +2767,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
27632767
### Added
27642768
- Created package
27652769

2770+
[5.40.5.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.40.5...5.40.5.1
27662771
[5.40.5]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.40.4...5.40.5
27672772
[5.40.4]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.40.3...5.40.4
27682773
[5.40.3]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.40.2...5.40.3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?php return array('dependencies' => array('jetpack-connection', 'jetpack-script-data', 'jetpack-shared-stores', 'react', 'react-dom', 'react-jsx-runtime', 'wp-a11y', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-element', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-polyfill', 'wp-primitives', 'wp-private-apis', 'wp-url', 'wp-warning'), 'version' => '97de5d630e76b084383c');
1+
<?php return array('dependencies' => array('jetpack-connection', 'jetpack-script-data', 'jetpack-shared-stores', 'react', 'react-dom', 'react-jsx-runtime', 'wp-a11y', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-element', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-polyfill', 'wp-primitives', 'wp-private-apis', 'wp-url', 'wp-warning'), 'version' => '3d501f46848e13850a20');

wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/build/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Initializer {
4040
*
4141
* @var string
4242
*/
43-
const PACKAGE_VERSION = '5.40.5';
43+
const PACKAGE_VERSION = '5.40.5.1';
4444

4545
/**
4646
* HTML container ID for the IDC screen on My Jetpack page.

0 commit comments

Comments
 (0)