diff --git a/wp-content/plugins/jetpack/CHANGELOG.md b/wp-content/plugins/jetpack/CHANGELOG.md index c83d162c7..e9cbe34e5 100644 --- a/wp-content/plugins/jetpack/CHANGELOG.md +++ b/wp-content/plugins/jetpack/CHANGELOG.md @@ -2,8 +2,17 @@ ### This is a list detailing changes for all Jetpack releases. +## 13.8.1 - 2024-09-10 + +### Bug Fixes +- Contact Form: Prevent unexpected payload contents from causing fatal errors. [#39271] +- General: Silence noisy warnings. [#39270] [#39272] +- Jetpack AI: Update default_content filter to not enforce the second parameter type to prevent fatal errors. [#39276] +- REST API: Fix missing requirement in admin-menu endpoint which could lead to a broken admin menu. [#39256] +- Web Application Firewall: Prevent incorrect parsing of unsupported HTTP content types. [#39262] + ## 13.8 - 2024-09-04 -### Major Enhancements +### Major enhancements - Custom CSS: Remove feature in favor of WordPress core implementation. [#38865] - Embeds: Remove YouTube and Vimeo embeds in favor of WordPress core implementation. [#39096] - WordPress.com Toolbar: The feature has been removed. [#38804] diff --git a/wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-admin-menu.php b/wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-admin-menu.php index c139cbe55..18da8107d 100644 --- a/wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-admin-menu.php +++ b/wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-admin-menu.php @@ -6,6 +6,8 @@ * @since 9.1.0 */ +use Automattic\Jetpack\Status\Host; + /** * Class WPCOM_REST_API_V2_Endpoint_Admin_Menu */ @@ -83,6 +85,9 @@ public function get_item_permissions_check( $request ) { // phpcs:ignore Generic * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure. */ public function get_item( $request ) { // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter, VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable + if ( ! ( new Host() )->is_wpcom_platform() ) { + require_once JETPACK__PLUGIN_DIR . 'jetpack_vendor/automattic/jetpack-masterbar/src/admin-menu/load.php'; + } // All globals need to be declared for menu items to properly register. global $admin_page_hooks, $menu, $menu_order, $submenu, $_wp_menu_nopriv, $_wp_submenu_nopriv; // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable diff --git a/wp-content/plugins/jetpack/composer.json b/wp-content/plugins/jetpack/composer.json index bfeaafe92..058500d93 100644 --- a/wp-content/plugins/jetpack/composer.json +++ b/wp-content/plugins/jetpack/composer.json @@ -23,11 +23,11 @@ "automattic/jetpack-compat": "^3.0.2", "automattic/jetpack-composer-plugin": "^2.0.3", "automattic/jetpack-config": "^2.0.4", - "automattic/jetpack-connection": "^2.12.5", + "automattic/jetpack-connection": "^2.12.6", "automattic/jetpack-constants": "^2.0.4", "automattic/jetpack-device-detection": "^2.1.4", "automattic/jetpack-error": "^2.0.3", - "automattic/jetpack-forms": "^0.32.13", + "automattic/jetpack-forms": "^0.32.13.1", "automattic/jetpack-image-cdn": "^0.4.8", "automattic/jetpack-import": "^0.8.7", "automattic/jetpack-ip": "^0.2.3", @@ -35,7 +35,7 @@ "automattic/jetpack-licensing": "^2.0.7", "automattic/jetpack-logo": "^2.0.4", "automattic/jetpack-masterbar": "^0.8.1", - "automattic/jetpack-my-jetpack": "^4.34.0", + "automattic/jetpack-my-jetpack": "^4.34.1", "automattic/jetpack-plugins-installer": "^0.4.2", "automattic/jetpack-post-list": "^0.6.3", "automattic/jetpack-publicize": "^0.51.0", @@ -44,10 +44,10 @@ "automattic/jetpack-search": "^0.45.0", "automattic/jetpack-stats": "^0.13.1", "automattic/jetpack-stats-admin": "^0.21.1", - "automattic/jetpack-status": "^3.3.4", + "automattic/jetpack-status": "^3.3.5", "automattic/jetpack-sync": "^3.9.0", "automattic/jetpack-videopress": "^0.24.4", - "automattic/jetpack-waf": "^0.18.4", + "automattic/jetpack-waf": "^0.18.4.1", "automattic/jetpack-wordads": "^0.3.29", "automattic/woocommerce-analytics": "^0.1.8", "scssphp/scssphp": "1.12.0" @@ -94,7 +94,7 @@ "platform": { "ext-intl": "0.0.0" }, - "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8", + "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1", "allow-plugins": { "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true diff --git a/wp-content/plugins/jetpack/jetpack.php b/wp-content/plugins/jetpack/jetpack.php index 5845e8cb1..e6fc6e20c 100644 --- a/wp-content/plugins/jetpack/jetpack.php +++ b/wp-content/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.8 + * Version: 13.8.1 * 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', '13.8' ); +define( 'JETPACK__VERSION', '13.8.1' ); /** * Constant used to fetch the connection owner token diff --git a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md index ada08c236..432ab3242 100644 --- a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md +++ b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.12.6] - 2024-09-10 +### Removed +- Removed throwing of warning if a given Jetpack options does not exist. [#39270] + ## [2.12.5] - 2024-08-29 ### Changed - Sync: Remove the checksum for active plugins if present when sync is not active, so it gets recalculated when sync gets activated [#39098] @@ -1167,6 +1171,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Separate the connection library into its own package. +[2.12.6]: https://github.com/Automattic/jetpack-connection/compare/v2.12.5...v2.12.6 [2.12.5]: https://github.com/Automattic/jetpack-connection/compare/v2.12.4...v2.12.5 [2.12.4]: https://github.com/Automattic/jetpack-connection/compare/v2.12.3...v2.12.4 [2.12.3]: https://github.com/Automattic/jetpack-connection/compare/v2.12.2...v2.12.3 diff --git a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php index f949794a5..cf90e649f 100644 --- a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php +++ b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php @@ -231,8 +231,6 @@ private static function get_option_from_database( $name, $default = false ) { } } - trigger_error( sprintf( 'Invalid Jetpack option name: %s', esc_html( $name ) ), E_USER_WARNING ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_trigger_error -- Don't wish to change legacy behavior. - return $default; } diff --git a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php index 05b648572..10ee06d40 100644 --- a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php +++ b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '2.12.5'; + const PACKAGE_VERSION = '2.12.6'; const PACKAGE_SLUG = 'connection'; diff --git a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-forms/CHANGELOG.md b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-forms/CHANGELOG.md index e81007a9a..3cb5ece7e 100644 --- a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-forms/CHANGELOG.md +++ b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-forms/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.32.13.1] - 2024-09-10 +### Fixed +- Contact Forms: Add checks for unexpected contents of textarea elements. [#39271] + ## [0.32.13] - 2024-09-04 ### Changed - Check for private and password-protected posts when handling the contact form submissions. [#39238] @@ -647,6 +651,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added a new jetpack/forms package [#28409] - Added a public load_contact_form method for initializing the contact form module. [#28416] +[0.32.13.1]: https://github.com/automattic/jetpack-forms/compare/v0.32.13...v0.32.13.1 [0.32.13]: https://github.com/automattic/jetpack-forms/compare/v0.32.12...v0.32.13 [0.32.12]: https://github.com/automattic/jetpack-forms/compare/v0.32.11...v0.32.12 [0.32.11]: https://github.com/automattic/jetpack-forms/compare/v0.32.10...v0.32.11 diff --git a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-forms/src/class-jetpack-forms.php b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-forms/src/class-jetpack-forms.php index d0a50c582..43b2aa120 100644 --- a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-forms/src/class-jetpack-forms.php +++ b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-forms/src/class-jetpack-forms.php @@ -15,7 +15,7 @@ */ class Jetpack_Forms { - const PACKAGE_VERSION = '0.32.13'; + const PACKAGE_VERSION = '0.32.13.1'; /** * Load the contact form module. diff --git a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form.php b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form.php index eebfd3ade..0ce3ef48e 100644 --- a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form.php +++ b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form.php @@ -1102,8 +1102,13 @@ public function process_submission() { } if ( isset( $field_ids['textarea'] ) ) { - $field = $this->fields[ $field_ids['textarea'] ]; - $comment_content = trim( Contact_Form_Plugin::strip_tags( $field->value ) ); + $field = $this->fields[ $field_ids['textarea'] ]; + + if ( is_string( $field->value ) ) { + $comment_content = trim( Contact_Form_Plugin::strip_tags( $field->value ) ); + } else { + $field->value = ''; + } } if ( isset( $field_ids['subject'] ) ) { diff --git a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md index 8d2134728..5c1a97ff4 100644 --- a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md +++ b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [4.34.1] - 2024-09-10 +### Fixed +- Jetpack AI: Fix default_content filter so it doesn't enforce parameter type. [#39276] + ## [4.34.0] - 2024-09-02 ### Changed - My Jetpack: show over quota notice and period usage counter for unlimited plans [#39129] @@ -1687,6 +1691,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Created package +[4.34.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.34.0...4.34.1 [4.34.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.33.1...4.34.0 [4.33.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.33.0...4.33.1 [4.33.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.32.4...4.33.0 diff --git a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php index 9097277bb..1c28478c6 100644 --- a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php +++ b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php @@ -42,7 +42,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '4.34.0'; + const PACKAGE_VERSION = '4.34.1'; /** * HTML container ID for the IDC screen on My Jetpack page. diff --git a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-jetpack-ai.php b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-jetpack-ai.php index dc3ddce2e..4f1eb5bc2 100644 --- a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-jetpack-ai.php +++ b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-jetpack-ai.php @@ -648,9 +648,11 @@ public static function admin_enqueue_scripts() { * @param WP_Post $post The post object. * @return string */ - public static function add_ai_block( $content, WP_Post $post ) { + public static function add_ai_block( $content, $post ) { if ( isset( $_GET['use_ai_block'] ) && isset( $_GET['_wpnonce'] ) && wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET['_wpnonce'] ) ), 'ai-assistant-content-nonce' ) + && ! empty( $post ) + && ! is_wp_error( $post ) && current_user_can( 'edit_post', $post->ID ) && '' === $content ) { diff --git a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/CHANGELOG.md b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/CHANGELOG.md index ed2449849..e455f0287 100644 --- a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/CHANGELOG.md +++ b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.3.5] - 2024-09-10 +### Removed +- Removed usage of _deprecated_function when deprecating Status::is_onboarding. [#39272] + ## [3.3.4] - 2024-08-23 ### Changed - Updated package dependencies. [#39004] @@ -389,6 +393,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Packages: Introduce a status package +[3.3.5]: https://github.com/Automattic/jetpack-status/compare/v3.3.4...v3.3.5 [3.3.4]: https://github.com/Automattic/jetpack-status/compare/v3.3.3...v3.3.4 [3.3.3]: https://github.com/Automattic/jetpack-status/compare/v3.3.2...v3.3.3 [3.3.2]: https://github.com/Automattic/jetpack-status/compare/v3.3.1...v3.3.2 diff --git a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-waf/CHANGELOG.md b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-waf/CHANGELOG.md index 0ea7bf778..825508a88 100644 --- a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-waf/CHANGELOG.md +++ b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-waf/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.18.4.1] - 2024-09-10 +### Fixed +- Ensure that request body is parsed correctly. [#39262] + ## [0.18.4] - 2024-08-26 ### Changed - Updated package dependencies. [#39004] @@ -359,6 +363,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Core: do not ship .phpcs.dir.xml in production builds. +[0.18.4.1]: https://github.com/Automattic/jetpack-waf/compare/v0.18.4...v0.18.4.1 [0.18.4]: https://github.com/Automattic/jetpack-waf/compare/v0.18.3...v0.18.4 [0.18.3]: https://github.com/Automattic/jetpack-waf/compare/v0.18.2...v0.18.3 [0.18.2]: https://github.com/Automattic/jetpack-waf/compare/v0.18.1...v0.18.2 diff --git a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-waf/src/class-waf-request.php b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-waf/src/class-waf-request.php index 32ac5eb39..5017a2e25 100644 --- a/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-waf/src/class-waf-request.php +++ b/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-waf/src/class-waf-request.php @@ -334,17 +334,21 @@ public function get_get_vars() { * @return array{string, scalar}[] */ public function get_post_vars() { + $content_type = $this->get_header( 'content-type' ); if ( ! empty( $_POST ) ) { + // If $_POST is populated, use it. return flatten_array( $_POST ); - } elseif ( strpos( $this->get_header( 'content-type' ), 'application/json' ) !== false ) { + } elseif ( strpos( $content_type, 'application/json' ) !== false ) { // Attempt to decode JSON requests. $decoded_json = json_decode( $this->get_body(), true ) ?? array(); return flatten_array( $decoded_json, 'json', true ); - } else { - // Attempt to retrieve all parameters when method used isn't POST - $body = $this->get_body(); - parse_str( $body, $params ); + } elseif ( strpos( $content_type, 'application/x-www-form-urlencoded' ) !== false ) { + // Attempt to decode url-encoded data + parse_str( $this->get_body(), $params ); return flatten_array( $params ); + } else { + // Don't try to parse any other content types + return array(); } } diff --git a/wp-content/plugins/jetpack/jetpack_vendor/i18n-map.php b/wp-content/plugins/jetpack/jetpack_vendor/i18n-map.php index 9eeb97257..35d8d810a 100644 --- a/wp-content/plugins/jetpack/jetpack_vendor/i18n-map.php +++ b/wp-content/plugins/jetpack/jetpack_vendor/i18n-map.php @@ -42,7 +42,7 @@ ), 'jetpack-connection' => array( 'path' => 'jetpack_vendor/automattic/jetpack-connection', - 'ver' => '2.12.5', + 'ver' => '2.12.6', ), 'jetpack-explat' => array( 'path' => 'jetpack_vendor/automattic/jetpack-explat', @@ -78,7 +78,7 @@ ), 'jetpack-my-jetpack' => array( 'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack', - 'ver' => '4.34.0', + 'ver' => '4.34.1', ), 'jetpack-password-checker' => array( 'path' => 'jetpack_vendor/automattic/jetpack-password-checker', diff --git a/wp-content/plugins/jetpack/readme.txt b/wp-content/plugins/jetpack/readme.txt index b78612085..86ea75637 100644 --- a/wp-content/plugins/jetpack/readme.txt +++ b/wp-content/plugins/jetpack/readme.txt @@ -1,7 +1,7 @@ === Jetpack - WP Security, Backup, Speed, & Growth === Contributors: automattic, adamkheckler, adrianmoldovanwp, aduth, akirk, allendav, alternatekev, andy, annamcphee, annezazu, apeatling, arcangelini, arsihasi, azaozz, barry, batmoo, beaulebens, bindlegirl, biskobe, bjorsch, blobaugh, brbrr, brileyhooper, cainm, cena, cfinke, cgastrell, chaselivingston, chellycat, clickysteve, csonnek, danielbachhuber, daniloercoli, davoraltman, delawski, designsimply, dkmyta, dllh, drawmyface, dsmart, dun2mis, dzver, ebinnion, egregor, eliorivero, enej, eoigal, erania-pinnera, ethitter, fgiannar, gcorne, georgestephanis, gibrown, goldsounds, hew, hugobaeta, hypertextranch, iammattthomas, iandunn, joen, jblz, jeffgolenski, jeherve, jenhooks, jenia, jessefriedman, jgs, jkudish, jmdodd, joanrho, johnjamesjacoby, jshreve, kbrownkd, keoshi, koke, kraftbj, lancewillett, leogermani, lhkowalski, lschuyler, macmanx, martinremy, matt, mattwiebe, matveb, maverick3x6, mcsf, mdawaffe, mdbitz, MichaelArestad, migueluy, miguelxavierpenha, mikeyarce, mkaz, nancythanki, nickmomrik, njweller, nunyvega, obenland, oskosk, pento, professor44, rachelsquirrel, rdcoll, renatoagds, retrofox, richardmtl, richardmuscat, robertbpugh, roccotripaldi, ryancowles, samhotchkiss, samiff, scarstocea, scottsweb, sdixon194, sdquirk, sermitr, simison, stephdau, thehenridev, tmoorewp, tyxla, Viper007Bond, westi, williamvianas, wpkaren, yoavf, zinigor Tags: Security, backup, malware, scan, performance -Stable tag: 13.8 +Stable tag: 13.8.1 Requires at least: 6.5 Requires PHP: 7.0 Tested up to: 6.6 @@ -326,31 +326,14 @@ Jetpack Backup can do a full website migration to a new host, migrate theme file == Changelog == -### 13.8 - 2024-09-04 -#### Major Enhancements -- Custom CSS: Remove feature in favor of WordPress core implementation. -- Embeds: Remove YouTube and Vimeo embeds in favor of WordPress core implementation. -- WordPress.com Toolbar: The feature has been removed. - -#### Enhancements -- Admin Menu: Update order of Jetpack sub-menu items. -- AI Assistant: Add spelling mistakes check for English language. -- Newsletters: Add the plugin icon to the Block Editor header, with a dedicated sidebar with an email preview feature. -- Social: Display Fediverse creator meta tag when a post has an active Mastodon connection. - -#### Improved compatibility -- Sharing Block: Improve performance when hooking the block into single post templates. -- Tiled Galleries: Defer loading of the Tiled Gallery script for improved performance. - -#### Bug fixes -- AI Assistant: Disable Write Brief for free plan users when AI Assistant block is disabled. -- AMP: Avoid fatal errors when using Jetpack's classic slideshows on a site where Jetpack blocks are disabled. -- Blocks: Ensure the stylesheets for Contact Info and Payment Button blocks are loaded correctly. -- Blocks: Fix the editor freeze after inserting a pattern with the Donations block. -- Mailchimp Block: Do not attempt to fetch groups when a site is not connected to Mailchimp yet. -- REST API: Avoid PHP warnings in the comment endpoint when the parent comment does not exist. -- Social Icons Widget: Ensure the social network icons display correctly. -- Subscriptions: Prevent the subscribe modal from automatically turning on when discussion settings are saved. +### 13.8.1 - 2024-09-10 + +#### Bug Fixes +- Contact Form: Prevent unexpected payload contents from causing fatal errors. +- General: Silence noisy warnings. +- Jetpack AI: Update default_content filter to not enforce the second parameter type to prevent fatal errors. +- REST API: Fix missing requirement in admin-menu endpoint which could lead to a broken admin menu. +- Web Application Firewall: Prevent incorrect parsing of unsupported HTTP content types. -------- diff --git a/wp-content/plugins/jetpack/vendor/autoload.php b/wp-content/plugins/jetpack/vendor/autoload.php index 38cdda003..c3d5f88a4 100644 --- a/wp-content/plugins/jetpack/vendor/autoload.php +++ b/wp-content/plugins/jetpack/vendor/autoload.php @@ -22,4 +22,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8::getLoader(); +return ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1::getLoader(); diff --git a/wp-content/plugins/jetpack/vendor/autoload_packages.php b/wp-content/plugins/jetpack/vendor/autoload_packages.php index 40565d846..87e908a17 100644 --- a/wp-content/plugins/jetpack/vendor/autoload_packages.php +++ b/wp-content/plugins/jetpack/vendor/autoload_packages.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8\al3_0_10; +namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1\al3_0_10; // phpcs:ignore diff --git a/wp-content/plugins/jetpack/vendor/composer/autoload_real.php b/wp-content/plugins/jetpack/vendor/composer/autoload_real.php index f481f4ccd..fcb1f172b 100644 --- a/wp-content/plugins/jetpack/vendor/composer/autoload_real.php +++ b/wp-content/plugins/jetpack/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8 +class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1 { private static $loader; @@ -24,17 +24,17 @@ public static function getLoader() require __DIR__ . '/platform_check.php'; - spl_autoload_register(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); - spl_autoload_unregister(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1', 'loadClassLoader')); require __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1::getInitializer($loader)); $loader->setClassMapAuthoritative(true); $loader->register(true); - $filesToLoad = \Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8::$files; + $filesToLoad = \Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1::$files; $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; diff --git a/wp-content/plugins/jetpack/vendor/composer/autoload_static.php b/wp-content/plugins/jetpack/vendor/composer/autoload_static.php index 8ab79a194..fac579533 100644 --- a/wp-content/plugins/jetpack/vendor/composer/autoload_static.php +++ b/wp-content/plugins/jetpack/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8 +class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1 { public static $files = array ( '3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/actions.php', @@ -506,9 +506,9 @@ class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8 public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8::$prefixDirsPsr4; - $loader->classMap = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1::$classMap; }, null, ClassLoader::class); } diff --git a/wp-content/plugins/jetpack/vendor/composer/installed.json b/wp-content/plugins/jetpack/vendor/composer/installed.json index 7c459f75d..8748b1a3d 100644 --- a/wp-content/plugins/jetpack/vendor/composer/installed.json +++ b/wp-content/plugins/jetpack/vendor/composer/installed.json @@ -852,17 +852,17 @@ }, { "name": "automattic/jetpack-connection", - "version": "v2.12.5", - "version_normalized": "2.12.5.0", + "version": "v2.12.6", + "version_normalized": "2.12.6.0", "source": { "type": "git", "url": "https://github.com/Automattic/jetpack-connection.git", - "reference": "7411d1c519da9a8d88f3c66e4eaab054068bc98e" + "reference": "afb215aef302414dba6a01e7cc38b4502d3677cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Automattic/jetpack-connection/zipball/7411d1c519da9a8d88f3c66e4eaab054068bc98e", - "reference": "7411d1c519da9a8d88f3c66e4eaab054068bc98e", + "url": "https://api.github.com/repos/Automattic/jetpack-connection/zipball/afb215aef302414dba6a01e7cc38b4502d3677cf", + "reference": "afb215aef302414dba6a01e7cc38b4502d3677cf", "shasum": "" }, "require": { @@ -872,7 +872,7 @@ "automattic/jetpack-constants": "^2.0.4", "automattic/jetpack-redirect": "^2.0.3", "automattic/jetpack-roles": "^2.0.3", - "automattic/jetpack-status": "^3.3.4", + "automattic/jetpack-status": "^3.3.5", "php": ">=7.0" }, "require-dev": { @@ -884,7 +884,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, - "time": "2024-08-29T08:39:59+00:00", + "time": "2024-09-10T17:56:31+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -921,7 +921,7 @@ ], "description": "Everything needed to connect to the Jetpack infrastructure", "support": { - "source": "https://github.com/Automattic/jetpack-connection/tree/v2.12.5" + "source": "https://github.com/Automattic/jetpack-connection/tree/v2.12.6" }, "install-path": "../../jetpack_vendor/automattic/jetpack-connection" }, @@ -1145,38 +1145,38 @@ }, { "name": "automattic/jetpack-forms", - "version": "v0.32.13", - "version_normalized": "0.32.13.0", + "version": "v0.32.13.1", + "version_normalized": "0.32.13.1", "source": { "type": "git", "url": "https://github.com/Automattic/jetpack-forms.git", - "reference": "81c0283c5b0c06c245722942893c7f110df31ac1" + "reference": "245ccb8dd2babf06d5f826892a2a74336a7da85c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Automattic/jetpack-forms/zipball/81c0283c5b0c06c245722942893c7f110df31ac1", - "reference": "81c0283c5b0c06c245722942893c7f110df31ac1", + "url": "https://api.github.com/repos/Automattic/jetpack-forms/zipball/245ccb8dd2babf06d5f826892a2a74336a7da85c", + "reference": "245ccb8dd2babf06d5f826892a2a74336a7da85c", "shasum": "" }, "require": { "automattic/jetpack-assets": "^2.3.5", "automattic/jetpack-blocks": "^2.0.5", - "automattic/jetpack-connection": "^2.12.5", + "automattic/jetpack-connection": "^2.12.6", "automattic/jetpack-logo": "^2.0.4", - "automattic/jetpack-status": "^3.3.4", + "automattic/jetpack-status": "^3.3.5", "automattic/jetpack-sync": "^3.9.0", "php": ">=7.0" }, "require-dev": { "automattic/jetpack-changelogger": "^4.2.6", - "automattic/jetpack-connection": "^2.12.5", + "automattic/jetpack-connection": "^2.12.6", "automattic/wordbless": "^0.4.1", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, - "time": "2024-09-04T18:19:29+00:00", + "time": "2024-09-10T17:57:02+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1204,7 +1204,7 @@ ], "description": "Jetpack Forms", "support": { - "source": "https://github.com/Automattic/jetpack-forms/tree/v0.32.13" + "source": "https://github.com/Automattic/jetpack-forms/tree/v0.32.13.1" }, "install-path": "../../jetpack_vendor/automattic/jetpack-forms" }, @@ -1631,24 +1631,24 @@ }, { "name": "automattic/jetpack-my-jetpack", - "version": "v4.34.0", - "version_normalized": "4.34.0.0", + "version": "v4.34.1", + "version_normalized": "4.34.1.0", "source": { "type": "git", "url": "https://github.com/Automattic/jetpack-my-jetpack.git", - "reference": "9cd762f7b1919584ea28fb6178f5fbee2c7d086f" + "reference": "fb28c252b84b2fd2d72c9061a102fba126863b65" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Automattic/jetpack-my-jetpack/zipball/9cd762f7b1919584ea28fb6178f5fbee2c7d086f", - "reference": "9cd762f7b1919584ea28fb6178f5fbee2c7d086f", + "url": "https://api.github.com/repos/Automattic/jetpack-my-jetpack/zipball/fb28c252b84b2fd2d72c9061a102fba126863b65", + "reference": "fb28c252b84b2fd2d72c9061a102fba126863b65", "shasum": "" }, "require": { "automattic/jetpack-admin-ui": "^0.4.4", "automattic/jetpack-assets": "^2.3.5", "automattic/jetpack-boost-speed-score": "^0.3.12", - "automattic/jetpack-connection": "^2.12.5", + "automattic/jetpack-connection": "^2.12.6", "automattic/jetpack-constants": "^2.0.4", "automattic/jetpack-explat": "^0.1.5", "automattic/jetpack-jitm": "^3.1.19", @@ -1657,7 +1657,7 @@ "automattic/jetpack-plugins-installer": "^0.4.2", "automattic/jetpack-protect-status": "^0.1.3", "automattic/jetpack-redirect": "^2.0.3", - "automattic/jetpack-status": "^3.3.4", + "automattic/jetpack-status": "^3.3.5", "automattic/jetpack-sync": "^3.9.0", "php": ">=7.0" }, @@ -1669,7 +1669,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, - "time": "2024-09-02T12:18:50+00:00", + "time": "2024-09-10T17:57:09+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1704,7 +1704,7 @@ ], "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", "support": { - "source": "https://github.com/Automattic/jetpack-my-jetpack/tree/v4.34.0" + "source": "https://github.com/Automattic/jetpack-my-jetpack/tree/v4.34.1" }, "install-path": "../../jetpack_vendor/automattic/jetpack-my-jetpack" }, @@ -2418,17 +2418,17 @@ }, { "name": "automattic/jetpack-status", - "version": "v3.3.4", - "version_normalized": "3.3.4.0", + "version": "v3.3.5", + "version_normalized": "3.3.5.0", "source": { "type": "git", "url": "https://github.com/Automattic/jetpack-status.git", - "reference": "cf023b164ded674d66998b5b5870a3b6cf26679a" + "reference": "69d5d8a8f31adf2b297a539bcddd9a9162d1320b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/cf023b164ded674d66998b5b5870a3b6cf26679a", - "reference": "cf023b164ded674d66998b5b5870a3b6cf26679a", + "url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/69d5d8a8f31adf2b297a539bcddd9a9162d1320b", + "reference": "69d5d8a8f31adf2b297a539bcddd9a9162d1320b", "shasum": "" }, "require": { @@ -2446,7 +2446,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, - "time": "2024-08-23T14:28:43+00:00", + "time": "2024-09-10T17:55:40+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -2476,7 +2476,7 @@ ], "description": "Used to retrieve information about the current status of Jetpack and the site overall.", "support": { - "source": "https://github.com/Automattic/jetpack-status/tree/v3.3.4" + "source": "https://github.com/Automattic/jetpack-status/tree/v3.3.5" }, "install-path": "../../jetpack_vendor/automattic/jetpack-status" }, @@ -2618,24 +2618,24 @@ }, { "name": "automattic/jetpack-waf", - "version": "v0.18.4", - "version_normalized": "0.18.4.0", + "version": "v0.18.4.1", + "version_normalized": "0.18.4.1", "source": { "type": "git", "url": "https://github.com/Automattic/jetpack-waf.git", - "reference": "09d4a2d0182e9914efc93163d394dea4f01f1633" + "reference": "733d1cb90613af712fa21a892ceb6cfe5dd163bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Automattic/jetpack-waf/zipball/09d4a2d0182e9914efc93163d394dea4f01f1633", - "reference": "09d4a2d0182e9914efc93163d394dea4f01f1633", + "url": "https://api.github.com/repos/Automattic/jetpack-waf/zipball/733d1cb90613af712fa21a892ceb6cfe5dd163bb", + "reference": "733d1cb90613af712fa21a892ceb6cfe5dd163bb", "shasum": "" }, "require": { - "automattic/jetpack-connection": "^2.12.4", + "automattic/jetpack-connection": "^2.12.6", "automattic/jetpack-constants": "^2.0.4", "automattic/jetpack-ip": "^0.2.3", - "automattic/jetpack-status": "^3.3.4", + "automattic/jetpack-status": "^3.3.5", "php": ">=7.0", "wikimedia/aho-corasick": "^1.0" }, @@ -2647,7 +2647,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, - "time": "2024-08-26T14:49:55+00:00", + "time": "2024-09-10T17:56:40+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -2675,7 +2675,7 @@ ], "description": "Tools to assist with the Jetpack Web Application Firewall", "support": { - "source": "https://github.com/Automattic/jetpack-waf/tree/v0.18.4" + "source": "https://github.com/Automattic/jetpack-waf/tree/v0.18.4.1" }, "install-path": "../../jetpack_vendor/automattic/jetpack-waf" }, diff --git a/wp-content/plugins/jetpack/vendor/composer/installed.php b/wp-content/plugins/jetpack/vendor/composer/installed.php index 17f31963e..1ca3f832b 100644 --- a/wp-content/plugins/jetpack/vendor/composer/installed.php +++ b/wp-content/plugins/jetpack/vendor/composer/installed.php @@ -146,9 +146,9 @@ 'dev_requirement' => false, ), 'automattic/jetpack-connection' => array( - 'pretty_version' => 'v2.12.5', - 'version' => '2.12.5.0', - 'reference' => '7411d1c519da9a8d88f3c66e4eaab054068bc98e', + 'pretty_version' => 'v2.12.6', + 'version' => '2.12.6.0', + 'reference' => 'afb215aef302414dba6a01e7cc38b4502d3677cf', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), @@ -191,9 +191,9 @@ 'dev_requirement' => false, ), 'automattic/jetpack-forms' => array( - 'pretty_version' => 'v0.32.13', - 'version' => '0.32.13.0', - 'reference' => '81c0283c5b0c06c245722942893c7f110df31ac1', + 'pretty_version' => 'v0.32.13.1', + 'version' => '0.32.13.1', + 'reference' => '245ccb8dd2babf06d5f826892a2a74336a7da85c', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-forms', 'aliases' => array(), @@ -263,9 +263,9 @@ 'dev_requirement' => false, ), 'automattic/jetpack-my-jetpack' => array( - 'pretty_version' => 'v4.34.0', - 'version' => '4.34.0.0', - 'reference' => '9cd762f7b1919584ea28fb6178f5fbee2c7d086f', + 'pretty_version' => 'v4.34.1', + 'version' => '4.34.1.0', + 'reference' => 'fb28c252b84b2fd2d72c9061a102fba126863b65', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), @@ -380,9 +380,9 @@ 'dev_requirement' => false, ), 'automattic/jetpack-status' => array( - 'pretty_version' => 'v3.3.4', - 'version' => '3.3.4.0', - 'reference' => 'cf023b164ded674d66998b5b5870a3b6cf26679a', + 'pretty_version' => 'v3.3.5', + 'version' => '3.3.5.0', + 'reference' => '69d5d8a8f31adf2b297a539bcddd9a9162d1320b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), @@ -407,9 +407,9 @@ 'dev_requirement' => false, ), 'automattic/jetpack-waf' => array( - 'pretty_version' => 'v0.18.4', - 'version' => '0.18.4.0', - 'reference' => '09d4a2d0182e9914efc93163d394dea4f01f1633', + 'pretty_version' => 'v0.18.4.1', + 'version' => '0.18.4.1', + 'reference' => '733d1cb90613af712fa21a892ceb6cfe5dd163bb', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-waf', 'aliases' => array(), diff --git a/wp-content/plugins/jetpack/vendor/composer/jetpack_autoload_classmap.php b/wp-content/plugins/jetpack/vendor/composer/jetpack_autoload_classmap.php index e5044eaeb..87e8c114b 100644 --- a/wp-content/plugins/jetpack/vendor/composer/jetpack_autoload_classmap.php +++ b/wp-content/plugins/jetpack/vendor/composer/jetpack_autoload_classmap.php @@ -211,119 +211,119 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-config/src/class-config.php' ), 'Automattic\\Jetpack\\Connection\\Authorize_Json_Api' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-authorize-json-api.php' ), 'Automattic\\Jetpack\\Connection\\Client' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-client.php' ), 'Automattic\\Jetpack\\Connection\\Connection_Notice' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-connection-notice.php' ), 'Automattic\\Jetpack\\Connection\\Error_Handler' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php' ), 'Automattic\\Jetpack\\Connection\\Initial_State' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php' ), 'Automattic\\Jetpack\\Connection\\Manager' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php' ), 'Automattic\\Jetpack\\Connection\\Manager_Interface' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php' ), 'Automattic\\Jetpack\\Connection\\Nonce_Handler' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php' ), 'Automattic\\Jetpack\\Connection\\Plugin' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php' ), 'Automattic\\Jetpack\\Connection\\Plugin_Storage' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php' ), 'Automattic\\Jetpack\\Connection\\REST_Connector' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php' ), 'Automattic\\Jetpack\\Connection\\Rest_Authentication' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php' ), 'Automattic\\Jetpack\\Connection\\SSO' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-sso.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Force_2FA' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-force-2fa.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Helpers' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-helpers.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Notices' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-notices.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\User_Admin' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-user-admin.php' ), 'Automattic\\Jetpack\\Connection\\Secrets' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php' ), 'Automattic\\Jetpack\\Connection\\Server_Sandbox' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php' ), 'Automattic\\Jetpack\\Connection\\Tokens' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php' ), 'Automattic\\Jetpack\\Connection\\Tokens_Locks' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens-locks.php' ), 'Automattic\\Jetpack\\Connection\\Urls' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php' ), 'Automattic\\Jetpack\\Connection\\Utils' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks\\Authorize_Redirect' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/webhooks/class-authorize-redirect.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php' ), 'Automattic\\Jetpack\\Constants' => array( @@ -331,7 +331,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-constants/src/class-constants.php' ), 'Automattic\\Jetpack\\CookieState' => array( - 'version' => '3.3.4.0', + 'version' => '3.3.5.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-cookiestate.php' ), 'Automattic\\Jetpack\\Current_Plan' => array( @@ -351,7 +351,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-error/src/class-error.php' ), 'Automattic\\Jetpack\\Errors' => array( - 'version' => '3.3.4.0', + 'version' => '3.3.5.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-errors.php' ), 'Automattic\\Jetpack\\ExPlat' => array( @@ -363,75 +363,75 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-explat/src/class-rest-controller.php' ), 'Automattic\\Jetpack\\Extensions\\Contact_Form\\Contact_Form_Block' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/blocks/contact-form/class-contact-form-block.php' ), 'Automattic\\Jetpack\\Files' => array( - 'version' => '3.3.4.0', + 'version' => '3.3.5.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-files.php' ), 'Automattic\\Jetpack\\Forms\\ContactForm\\Admin' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-admin.php' ), 'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form.php' ), 'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Endpoint' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-endpoint.php' ), 'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Field' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-field.php' ), 'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Plugin' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-plugin.php' ), 'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Shortcode' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-shortcode.php' ), 'Automattic\\Jetpack\\Forms\\ContactForm\\Editor_View' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-editor-view.php' ), 'Automattic\\Jetpack\\Forms\\ContactForm\\Form_View' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-form-view.php' ), 'Automattic\\Jetpack\\Forms\\ContactForm\\Util' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-util.php' ), 'Automattic\\Jetpack\\Forms\\Dashboard\\Dashboard' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/dashboard/class-dashboard.php' ), 'Automattic\\Jetpack\\Forms\\Dashboard\\Dashboard_View_Switch' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/dashboard/class-dashboard-view-switch.php' ), 'Automattic\\Jetpack\\Forms\\Jetpack_Forms' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/class-jetpack-forms.php' ), 'Automattic\\Jetpack\\Forms\\Service\\Google_Drive' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/service/class-google-drive.php' ), 'Automattic\\Jetpack\\Forms\\Service\\Post_To_Url' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/service/class-post-to-url.php' ), 'Automattic\\Jetpack\\Forms\\WPCOM_REST_API_V2_Endpoint_Forms' => array( - 'version' => '0.32.13.0', + 'version' => '0.32.13.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/class-wpcom-rest-api-v2-endpoint-forms.php' ), 'Automattic\\Jetpack\\Heartbeat' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-heartbeat.php' ), 'Automattic\\Jetpack\\IP\\Utils' => array( @@ -439,23 +439,23 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-ip/src/class-utils.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\Exception' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-exception.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\REST_Endpoints' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\UI' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-ui.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\URL_Secret' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-url-secret.php' ), 'Automattic\\Jetpack\\Identity_Crisis' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-identity-crisis.php' ), 'Automattic\\Jetpack\\Image_CDN\\Image_CDN' => array( @@ -659,135 +659,135 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-masterbar/src/admin-menu/class-wpcom-admin-menu.php' ), 'Automattic\\Jetpack\\Modules' => array( - 'version' => '3.3.4.0', + 'version' => '3.3.5.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-modules.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Activitylog' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-activitylog.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Hybrid_Product' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-hybrid-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Initializer' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Jetpack_Manage' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-jetpack-manage.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Module_Product' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-module-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Product' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Anti_Spam' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-anti-spam.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Backup' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Boost' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Creator' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-creator.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Crm' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-crm.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Extras' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-extras.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Jetpack_Ai' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-jetpack-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Protect' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-protect.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Scan' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-scan.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search_Stats' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Security' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-security.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Social' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-social.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Starter' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-starter.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Stats' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Videopress' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-videopress.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_AI' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Product_Data' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-product-data.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Products' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Purchases' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-purchases.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Recommendations_Evaluation' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-recommendations-evaluation.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Zendesk_Chat' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-zendesk-chat.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Wpcom_Products' => array( - 'version' => '4.34.0.0', + 'version' => '4.34.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php' ), 'Automattic\\Jetpack\\Partner' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner.php' ), 'Automattic\\Jetpack\\Partner_Coupon' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner-coupon.php' ), 'Automattic\\Jetpack\\Password_Checker' => array( @@ -795,7 +795,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-password-checker/src/class-password-checker.php' ), 'Automattic\\Jetpack\\Paths' => array( - 'version' => '3.3.4.0', + 'version' => '3.3.5.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-paths.php' ), 'Automattic\\Jetpack\\Plans' => array( @@ -1103,19 +1103,19 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-stats-admin/src/class-wp-dashboard-odyssey-widget.php' ), 'Automattic\\Jetpack\\Status' => array( - 'version' => '3.3.4.0', + 'version' => '3.3.5.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-status.php' ), 'Automattic\\Jetpack\\Status\\Cache' => array( - 'version' => '3.3.4.0', + 'version' => '3.3.5.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-cache.php' ), 'Automattic\\Jetpack\\Status\\Host' => array( - 'version' => '3.3.4.0', + 'version' => '3.3.5.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-host.php' ), 'Automattic\\Jetpack\\Status\\Visitor' => array( - 'version' => '3.3.4.0', + 'version' => '3.3.5.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-visitor.php' ), 'Automattic\\Jetpack\\Sync\\Actions' => array( @@ -1343,11 +1343,11 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php' ), 'Automattic\\Jetpack\\Terms_Of_Service' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-terms-of-service.php' ), 'Automattic\\Jetpack\\Tracking' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tracking.php' ), 'Automattic\\Jetpack\\VideoPress\\AJAX' => array( @@ -1467,87 +1467,87 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-xmlrpc.php' ), 'Automattic\\Jetpack\\Waf\\Brute_Force_Protection\\Brute_Force_Protection' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/class-brute-force-protection.php' ), 'Automattic\\Jetpack\\Waf\\Brute_Force_Protection\\Brute_Force_Protection_Blocked_Login_Page' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/brute-force-protection/class-blocked-login-page.php' ), 'Automattic\\Jetpack\\Waf\\Brute_Force_Protection\\Brute_Force_Protection_Math_Authenticate' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/brute-force-protection/class-math-fallback.php' ), 'Automattic\\Jetpack\\Waf\\Brute_Force_Protection\\Brute_Force_Protection_Shared_Functions' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/brute-force-protection/class-shared-functions.php' ), 'Automattic\\Jetpack\\Waf\\Brute_Force_Protection\\Brute_Force_Protection_Transient_Cleanup' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/brute-force-protection/class-transient-cleanup.php' ), 'Automattic\\Jetpack\\Waf\\CLI' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/class-waf-cli.php' ), 'Automattic\\Jetpack\\Waf\\File_System_Exception' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/exceptions/class-file-system-exception.php' ), 'Automattic\\Jetpack\\Waf\\REST_Controller' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/class-rest-controller.php' ), 'Automattic\\Jetpack\\Waf\\Rules_API_Exception' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/exceptions/class-rules-api-exception.php' ), 'Automattic\\Jetpack\\Waf\\Waf_Compatibility' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/class-compatibility.php' ), 'Automattic\\Jetpack\\Waf\\Waf_Constants' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/class-waf-constants.php' ), 'Automattic\\Jetpack\\Waf\\Waf_Exception' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/exceptions/class-waf-exception.php' ), 'Automattic\\Jetpack\\Waf\\Waf_Initializer' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/class-waf-initializer.php' ), 'Automattic\\Jetpack\\Waf\\Waf_Operators' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/class-waf-operators.php' ), 'Automattic\\Jetpack\\Waf\\Waf_Request' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/class-waf-request.php' ), 'Automattic\\Jetpack\\Waf\\Waf_Rules_Manager' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/class-waf-rules-manager.php' ), 'Automattic\\Jetpack\\Waf\\Waf_Runner' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/class-waf-runner.php' ), 'Automattic\\Jetpack\\Waf\\Waf_Runtime' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/class-waf-runtime.php' ), 'Automattic\\Jetpack\\Waf\\Waf_Standalone_Bootstrap' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/class-waf-standalone-bootstrap.php' ), 'Automattic\\Jetpack\\Waf\\Waf_Stats' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/class-waf-stats.php' ), 'Automattic\\Jetpack\\Waf\\Waf_Transforms' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/src/class-waf-transforms.php' ), 'Automattic\\Jetpack\\WordAds\\Dashboard' => array( @@ -1607,11 +1607,11 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-classic-theme-helper/src/content-options/customizer.php' ), 'Jetpack_IXR_Client' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php' ), 'Jetpack_IXR_ClientMulticall' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php' ), 'Jetpack_Modules_Overrides' => array( @@ -1619,23 +1619,23 @@ 'path' => $baseDir . '/src/class-jetpack-modules-overrides.php' ), 'Jetpack_Options' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php' ), 'Jetpack_Signature' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php' ), 'Jetpack_Tracks_Client' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-client.php' ), 'Jetpack_Tracks_Event' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-event.php' ), 'Jetpack_XMLRPC_Server' => array( - 'version' => '2.12.5.0', + 'version' => '2.12.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php' ), 'Latest_Autoloader_Guard' => array( diff --git a/wp-content/plugins/jetpack/vendor/composer/jetpack_autoload_filemap.php b/wp-content/plugins/jetpack/vendor/composer/jetpack_autoload_filemap.php index cf13855b8..c52933a0f 100644 --- a/wp-content/plugins/jetpack/vendor/composer/jetpack_autoload_filemap.php +++ b/wp-content/plugins/jetpack/vendor/composer/jetpack_autoload_filemap.php @@ -23,7 +23,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/social-image-generator/utilities.php' ), '3d45c7e6a7f0e71849e33afe4b3b3ede' => array( - 'version' => '0.18.4.0', + 'version' => '0.18.4.1', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-waf/cli.php' ), ); diff --git a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader-handler.php b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader-handler.php index 6b4b35cd2..be1f886e1 100644 --- a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader-handler.php +++ b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader-handler.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8\al3_0_10; +namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1\al3_0_10; // phpcs:ignore diff --git a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader-locator.php b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader-locator.php index 3da362ac5..4ac779de5 100644 --- a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader-locator.php +++ b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader-locator.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8\al3_0_10; +namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1\al3_0_10; // phpcs:ignore diff --git a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader.php b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader.php index 343e0dbcf..2b3b4903a 100644 --- a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader.php +++ b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-autoloader.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8\al3_0_10; +namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1\al3_0_10; // phpcs:ignore diff --git a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-container.php b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-container.php index 1192374e6..9db64799f 100644 --- a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-container.php +++ b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-container.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8\al3_0_10; +namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1\al3_0_10; // phpcs:ignore diff --git a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-hook-manager.php b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-hook-manager.php index 658aabeff..8f0a6424a 100644 --- a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-hook-manager.php +++ b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-hook-manager.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8\al3_0_10; +namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1\al3_0_10; // phpcs:ignore diff --git a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-latest-autoloader-guard.php b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-latest-autoloader-guard.php index 465153c6f..e7667a40e 100644 --- a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-latest-autoloader-guard.php +++ b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-latest-autoloader-guard.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8\al3_0_10; +namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1\al3_0_10; // phpcs:ignore diff --git a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-manifest-reader.php b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-manifest-reader.php index 73540745e..08c6fa3ca 100644 --- a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-manifest-reader.php +++ b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-manifest-reader.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8\al3_0_10; +namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1\al3_0_10; // phpcs:ignore diff --git a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-path-processor.php b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-path-processor.php index 8674483dd..63c831ed9 100644 --- a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-path-processor.php +++ b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-path-processor.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8\al3_0_10; +namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1\al3_0_10; // phpcs:ignore diff --git a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-php-autoloader.php b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-php-autoloader.php index 2ed64756e..c504f4942 100644 --- a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-php-autoloader.php +++ b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-php-autoloader.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8\al3_0_10; +namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1\al3_0_10; // phpcs:ignore diff --git a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-plugin-locator.php b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-plugin-locator.php index e7a87339c..f384ff0ea 100644 --- a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-plugin-locator.php +++ b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-plugin-locator.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8\al3_0_10; +namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1\al3_0_10; // phpcs:ignore diff --git a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-plugins-handler.php b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-plugins-handler.php index e3c5b1917..69d6fca12 100644 --- a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-plugins-handler.php +++ b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-plugins-handler.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8\al3_0_10; +namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1\al3_0_10; // phpcs:ignore diff --git a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-shutdown-handler.php b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-shutdown-handler.php index 30ea0de4d..8fb987cae 100644 --- a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-shutdown-handler.php +++ b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-shutdown-handler.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8\al3_0_10; +namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1\al3_0_10; // phpcs:ignore diff --git a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-version-loader.php b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-version-loader.php index a40ff1a23..e1f3a83ad 100644 --- a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-version-loader.php +++ b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-version-loader.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8\al3_0_10; +namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1\al3_0_10; // phpcs:ignore diff --git a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-version-selector.php b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-version-selector.php index e6976e24d..42d107b58 100644 --- a/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-version-selector.php +++ b/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-version-selector.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8\al3_0_10; +namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_8_1\al3_0_10; // phpcs:ignore