Version Description
Download this release
Release Info
Developer | jeherve |
Plugin | Jetpack by WordPress.com |
Version | 10.6 |
Comparing to | |
See all releases |
Code changes from version 10.6-beta to 10.6
- 3rd-party/debug-bar/class-jetpack-search-debug-bar.php +7 -1
- CHANGELOG.md +6 -4
- class.jetpack-plan.php +4 -0
- composer.json +4 -4
- jetpack.php +2 -2
- jetpack_vendor/automattic/jetpack-assets/CHANGELOG.md +5 -0
- jetpack_vendor/automattic/jetpack-assets/package.json +1 -1
- jetpack_vendor/automattic/jetpack-search/CHANGELOG.md +10 -0
- jetpack_vendor/automattic/jetpack-search/src/class-plan.php +7 -4
- jetpack_vendor/i18n-map.php +10 -10
- modules/markdown/easy-markdown.php +2 -2
- readme.txt +3 -2
- vendor/autoload.php +1 -1
- vendor/autoload_packages.php +1 -1
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +5 -5
- vendor/composer/installed.json +14 -14
- vendor/composer/installed.php +6 -6
- vendor/composer/jetpack_autoload_classmap.php +18 -18
- vendor/composer/jetpack_autoload_filemap.php +1 -1
- vendor/jetpack-autoloader/class-autoloader-handler.php +1 -1
- vendor/jetpack-autoloader/class-autoloader-locator.php +1 -1
- vendor/jetpack-autoloader/class-autoloader.php +1 -1
- vendor/jetpack-autoloader/class-container.php +1 -1
- vendor/jetpack-autoloader/class-hook-manager.php +1 -1
- vendor/jetpack-autoloader/class-latest-autoloader-guard.php +1 -1
- vendor/jetpack-autoloader/class-manifest-reader.php +1 -1
- vendor/jetpack-autoloader/class-path-processor.php +1 -1
- vendor/jetpack-autoloader/class-php-autoloader.php +1 -1
- vendor/jetpack-autoloader/class-plugin-locator.php +1 -1
- vendor/jetpack-autoloader/class-plugins-handler.php +1 -1
- vendor/jetpack-autoloader/class-shutdown-handler.php +1 -1
- vendor/jetpack-autoloader/class-version-loader.php +1 -1
- vendor/jetpack-autoloader/class-version-selector.php +1 -1
3rd-party/debug-bar/class-jetpack-search-debug-bar.php
CHANGED
@@ -5,6 +5,8 @@
|
|
5 |
* @package automattic/jetpack
|
6 |
*/
|
7 |
|
|
|
|
|
8 |
/**
|
9 |
* Singleton class instantiated by Jetpack_Searc_Debug_Bar::instance() that handles
|
10 |
* rendering the Jetpack Search debug bar menu item and panel.
|
@@ -91,7 +93,11 @@ class Jetpack_Search_Debug_Bar extends Debug_Bar_Panel {
|
|
91 |
* @return void
|
92 |
*/
|
93 |
public function render() {
|
94 |
-
$jetpack_search =
|
|
|
|
|
|
|
|
|
95 |
$last_query_info = $jetpack_search->get_last_query_info();
|
96 |
|
97 |
// If not empty, let's reshuffle the order of some things.
|
5 |
* @package automattic/jetpack
|
6 |
*/
|
7 |
|
8 |
+
use Automattic\Jetpack\Search as Jetpack_Search;
|
9 |
+
|
10 |
/**
|
11 |
* Singleton class instantiated by Jetpack_Searc_Debug_Bar::instance() that handles
|
12 |
* rendering the Jetpack Search debug bar menu item and panel.
|
93 |
* @return void
|
94 |
*/
|
95 |
public function render() {
|
96 |
+
$jetpack_search = (
|
97 |
+
Jetpack_Search\Options::is_instant_enabled() ?
|
98 |
+
Jetpack_Search\Instant_Search::instance() :
|
99 |
+
Jetpack_Search\Classic_Search::instance()
|
100 |
+
);
|
101 |
$last_query_info = $jetpack_search->get_last_query_info();
|
102 |
|
103 |
// If not empty, let's reshuffle the order of some things.
|
CHANGELOG.md
CHANGED
@@ -2,26 +2,28 @@
|
|
2 |
|
3 |
### This is a list detailing changes for all Jetpack releases.
|
4 |
|
5 |
-
## 10.6
|
6 |
### Enhancements
|
7 |
-
- Dashboard: support Beta versions of Automattic plugins in plugin cards.
|
8 |
- Contact Info and Markdown Blocks: add color, typography and spacing features.
|
9 |
-
-
|
10 |
- Search: improve accessibility via headings hierarchy and aria roles.
|
|
|
11 |
|
12 |
### Improved compatibility
|
13 |
-
- Sharing / AMP plugin: avoid adding sharing's CSS on AMP pages when the sharing feature is not active.
|
14 |
- Instant Search: synchronize more meta data so the search feature can be used with more third-party plugins.
|
|
|
15 |
|
16 |
### Bug fixes
|
17 |
- Backups: hide backup preparation message for sites without backup.
|
18 |
- Connection: correctly request list of active features so they can be activated on a reconnection.
|
19 |
- Pay with Paypal Block: properly display the card icons below the button.
|
20 |
- Scan: avoid PHP notice when non-admin users access the dashboard.
|
|
|
21 |
- Widget Visibility: ensure it remains possible to edit visibility for legacy widgets in the block-based widget editor.
|
22 |
|
23 |
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
24 |
- Add a comment to explain the reasoning behind an empty scss file.
|
|
|
25 |
- Comment: phpcs linting cleanup.
|
26 |
- Cover block: avoid the block's placeholder rendering on top of other blocks.
|
27 |
- Dashboard: update CTAs (wording, layout) in the At A Glance section.
|
2 |
|
3 |
### This is a list detailing changes for all Jetpack releases.
|
4 |
|
5 |
+
## 10.6 - 2022-02-01
|
6 |
### Enhancements
|
|
|
7 |
- Contact Info and Markdown Blocks: add color, typography and spacing features.
|
8 |
+
- Dashboard: support Beta versions of Automattic plugins in plugin cards.
|
9 |
- Search: improve accessibility via headings hierarchy and aria roles.
|
10 |
+
- Tiled Gallery Block: improve the block so it can be used within the mobile applications.
|
11 |
|
12 |
### Improved compatibility
|
|
|
13 |
- Instant Search: synchronize more meta data so the search feature can be used with more third-party plugins.
|
14 |
+
- Sharing / AMP plugin: avoid adding sharing's CSS on AMP pages when the sharing feature is not active.
|
15 |
|
16 |
### Bug fixes
|
17 |
- Backups: hide backup preparation message for sites without backup.
|
18 |
- Connection: correctly request list of active features so they can be activated on a reconnection.
|
19 |
- Pay with Paypal Block: properly display the card icons below the button.
|
20 |
- Scan: avoid PHP notice when non-admin users access the dashboard.
|
21 |
+
- Search: Initialize debug bar using correct class
|
22 |
- Widget Visibility: ensure it remains possible to edit visibility for legacy widgets in the block-based widget editor.
|
23 |
|
24 |
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
|
25 |
- Add a comment to explain the reasoning behind an empty scss file.
|
26 |
+
- Change usage of filter_var to filter_input in markdown file.
|
27 |
- Comment: phpcs linting cleanup.
|
28 |
- Cover block: avoid the block's placeholder rendering on top of other blocks.
|
29 |
- Dashboard: update CTAs (wording, layout) in the At A Glance section.
|
class.jetpack-plan.php
CHANGED
@@ -90,6 +90,10 @@ class Jetpack_Plan {
|
|
90 |
'jetpack_security_daily_monthly',
|
91 |
'jetpack_security_realtime',
|
92 |
'jetpack_security_realtime_monthly',
|
|
|
|
|
|
|
|
|
93 |
),
|
94 |
'supports' => array(),
|
95 |
),
|
90 |
'jetpack_security_daily_monthly',
|
91 |
'jetpack_security_realtime',
|
92 |
'jetpack_security_realtime_monthly',
|
93 |
+
'jetpack_security_t1_yearly',
|
94 |
+
'jetpack_security_t1_monthly',
|
95 |
+
'jetpack_security_t2_yearly',
|
96 |
+
'jetpack_security_t2_monthly',
|
97 |
),
|
98 |
'supports' => array(),
|
99 |
),
|
composer.json
CHANGED
@@ -26,17 +26,17 @@
|
|
26 |
"automattic/jetpack-device-detection": "^1.4",
|
27 |
"automattic/jetpack-error": "^1.3",
|
28 |
"automattic/jetpack-heartbeat": "^1.4",
|
29 |
-
"automattic/jetpack-identity-crisis": "^0.6
|
30 |
"automattic/jetpack-jitm": "^2.2",
|
31 |
"automattic/jetpack-lazy-images": "^2.1",
|
32 |
"automattic/jetpack-licensing": "^1.6",
|
33 |
"automattic/jetpack-logo": "^1.5",
|
34 |
-
"automattic/jetpack-my-jetpack": "^0.4
|
35 |
"automattic/jetpack-options": "^1.14",
|
36 |
"automattic/jetpack-partner": "^1.6",
|
37 |
"automattic/jetpack-redirect": "^1.7",
|
38 |
"automattic/jetpack-roles": "^1.4",
|
39 |
-
"automattic/jetpack-search": "^0.5
|
40 |
"automattic/jetpack-status": "^1.10",
|
41 |
"automattic/jetpack-sync": "^1.29",
|
42 |
"automattic/jetpack-terms-of-service": "^1.9",
|
@@ -88,7 +88,7 @@
|
|
88 |
"platform": {
|
89 |
"ext-intl": "0.0.0"
|
90 |
},
|
91 |
-
"autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
92 |
"allow-plugins": {
|
93 |
"automattic/jetpack-autoloader": true,
|
94 |
"automattic/jetpack-composer-plugin": true
|
26 |
"automattic/jetpack-device-detection": "^1.4",
|
27 |
"automattic/jetpack-error": "^1.3",
|
28 |
"automattic/jetpack-heartbeat": "^1.4",
|
29 |
+
"automattic/jetpack-identity-crisis": "^0.6",
|
30 |
"automattic/jetpack-jitm": "^2.2",
|
31 |
"automattic/jetpack-lazy-images": "^2.1",
|
32 |
"automattic/jetpack-licensing": "^1.6",
|
33 |
"automattic/jetpack-logo": "^1.5",
|
34 |
+
"automattic/jetpack-my-jetpack": "^0.4",
|
35 |
"automattic/jetpack-options": "^1.14",
|
36 |
"automattic/jetpack-partner": "^1.6",
|
37 |
"automattic/jetpack-redirect": "^1.7",
|
38 |
"automattic/jetpack-roles": "^1.4",
|
39 |
+
"automattic/jetpack-search": "^0.5",
|
40 |
"automattic/jetpack-status": "^1.10",
|
41 |
"automattic/jetpack-sync": "^1.29",
|
42 |
"automattic/jetpack-terms-of-service": "^1.9",
|
88 |
"platform": {
|
89 |
"ext-intl": "0.0.0"
|
90 |
},
|
91 |
+
"autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6",
|
92 |
"allow-plugins": {
|
93 |
"automattic/jetpack-autoloader": true,
|
94 |
"automattic/jetpack-composer-plugin": true
|
jetpack.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: https://jetpack.com
|
5 |
* Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things.
|
6 |
* Author: Automattic
|
7 |
-
* Version: 10.6
|
8 |
* Author URI: https://jetpack.com
|
9 |
* License: GPL2+
|
10 |
* Text Domain: jetpack
|
@@ -32,7 +32,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
32 |
|
33 |
define( 'JETPACK__MINIMUM_WP_VERSION', '5.8' );
|
34 |
define( 'JETPACK__MINIMUM_PHP_VERSION', '5.6' );
|
35 |
-
define( 'JETPACK__VERSION', '10.6
|
36 |
|
37 |
/**
|
38 |
* Constant used to fetch the connection owner token
|
4 |
* Plugin URI: https://jetpack.com
|
5 |
* Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things.
|
6 |
* Author: Automattic
|
7 |
+
* Version: 10.6
|
8 |
* Author URI: https://jetpack.com
|
9 |
* License: GPL2+
|
10 |
* Text Domain: jetpack
|
32 |
|
33 |
define( 'JETPACK__MINIMUM_WP_VERSION', '5.8' );
|
34 |
define( 'JETPACK__MINIMUM_PHP_VERSION', '5.6' );
|
35 |
+
define( 'JETPACK__VERSION', '10.6' );
|
36 |
|
37 |
/**
|
38 |
* Constant used to fetch the connection owner token
|
jetpack_vendor/automattic/jetpack-assets/CHANGELOG.md
CHANGED
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|
5 |
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
6 |
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7 |
|
|
|
|
|
|
|
|
|
8 |
## [1.17.0] - 2022-01-25
|
9 |
### Added
|
10 |
- Accept package path prefixes from jetpack-composer-plugin and use them when lazy-loading JS translations.
|
@@ -178,6 +182,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
178 |
|
179 |
- Statically access asset tools
|
180 |
|
|
|
181 |
[1.17.0]: https://github.com/Automattic/jetpack-assets/compare/v1.16.2...v1.17.0
|
182 |
[1.16.2]: https://github.com/Automattic/jetpack-assets/compare/v1.16.1...v1.16.2
|
183 |
[1.16.1]: https://github.com/Automattic/jetpack-assets/compare/v1.16.0...v1.16.1
|
5 |
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
6 |
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7 |
|
8 |
+
## [1.17.1] - 2022-01-27
|
9 |
+
### Changed
|
10 |
+
- Updated package dependencies.
|
11 |
+
|
12 |
## [1.17.0] - 2022-01-25
|
13 |
### Added
|
14 |
- Accept package path prefixes from jetpack-composer-plugin and use them when lazy-loading JS translations.
|
182 |
|
183 |
- Statically access asset tools
|
184 |
|
185 |
+
[1.17.1]: https://github.com/Automattic/jetpack-assets/compare/v1.17.0...v1.17.1
|
186 |
[1.17.0]: https://github.com/Automattic/jetpack-assets/compare/v1.16.2...v1.17.0
|
187 |
[1.16.2]: https://github.com/Automattic/jetpack-assets/compare/v1.16.1...v1.16.2
|
188 |
[1.16.1]: https://github.com/Automattic/jetpack-assets/compare/v1.16.0...v1.16.1
|
jetpack_vendor/automattic/jetpack-assets/package.json
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
"validate": "pnpm exec validate-es build/"
|
13 |
},
|
14 |
"devDependencies": {
|
15 |
-
"@automattic/jetpack-webpack-config": "workspace:^1.1.
|
16 |
"md5-es": "1.8.2",
|
17 |
"jest": "27.3.1",
|
18 |
"webpack": "5.65.0"
|
12 |
"validate": "pnpm exec validate-es build/"
|
13 |
},
|
14 |
"devDependencies": {
|
15 |
+
"@automattic/jetpack-webpack-config": "workspace:^1.1.1",
|
16 |
"md5-es": "1.8.2",
|
17 |
"jest": "27.3.1",
|
18 |
"webpack": "5.65.0"
|
jetpack_vendor/automattic/jetpack-search/CHANGELOG.md
CHANGED
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
5 |
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
6 |
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
## [0.5.2] - 2022-01-25
|
9 |
### Added
|
10 |
- Added a watch command for building assets
|
@@ -70,6 +78,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
70 |
- Updated package dependencies.
|
71 |
- Update PHPUnit configs to include just what needs coverage rather than include everything then try to exclude stuff that doesn't.
|
72 |
|
|
|
|
|
73 |
[0.5.2]: https://github.com/Automattic/jetpack-search/compare/v0.5.1...v0.5.2
|
74 |
[0.5.1]: https://github.com/Automattic/jetpack-search/compare/v0.5.0...v0.5.1
|
75 |
[0.5.0]: https://github.com/Automattic/jetpack-search/compare/v0.4.0...v0.5.0
|
5 |
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
6 |
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7 |
|
8 |
+
## [0.5.4] - 2022-01-31
|
9 |
+
### Fixed
|
10 |
+
- Search: Fetch plan info as blog, not as user, to allow nonconnected admins to use dashboard
|
11 |
+
|
12 |
+
## [0.5.3] - 2022-01-27
|
13 |
+
### Fixed
|
14 |
+
- Search package: fixed compatibility issue with plan activation
|
15 |
+
|
16 |
## [0.5.2] - 2022-01-25
|
17 |
### Added
|
18 |
- Added a watch command for building assets
|
78 |
- Updated package dependencies.
|
79 |
- Update PHPUnit configs to include just what needs coverage rather than include everything then try to exclude stuff that doesn't.
|
80 |
|
81 |
+
[0.5.4]: https://github.com/Automattic/jetpack-search/compare/v0.5.3...v0.5.4
|
82 |
+
[0.5.3]: https://github.com/Automattic/jetpack-search/compare/v0.5.2...v0.5.3
|
83 |
[0.5.2]: https://github.com/Automattic/jetpack-search/compare/v0.5.1...v0.5.2
|
84 |
[0.5.1]: https://github.com/Automattic/jetpack-search/compare/v0.5.0...v0.5.1
|
85 |
[0.5.0]: https://github.com/Automattic/jetpack-search/compare/v0.4.0...v0.5.0
|
jetpack_vendor/automattic/jetpack-search/src/class-plan.php
CHANGED
@@ -43,9 +43,12 @@ class Plan {
|
|
43 |
*/
|
44 |
public function get_plan_info_from_wpcom() {
|
45 |
$blog_id = Jetpack_Options::get_option( 'id' );
|
46 |
-
$response = Client::
|
47 |
'/sites/' . $blog_id . '/jetpack-search/plan',
|
48 |
-
'2'
|
|
|
|
|
|
|
49 |
);
|
50 |
|
51 |
// store plan in options.
|
@@ -84,7 +87,7 @@ class Plan {
|
|
84 |
*/
|
85 |
public function supports_instant_search() {
|
86 |
$plan_info = $this->get_plan_info();
|
87 |
-
return isset( $plan_info['supports_instant_search'] ) && $plan_info['supports_instant_search'];
|
88 |
}
|
89 |
|
90 |
/**
|
@@ -92,7 +95,7 @@ class Plan {
|
|
92 |
*/
|
93 |
public function supports_search() {
|
94 |
$plan_info = $this->get_plan_info();
|
95 |
-
return isset( $plan_info['supports_search'] ) && $plan_info['supports_search'];
|
96 |
}
|
97 |
|
98 |
/**
|
43 |
*/
|
44 |
public function get_plan_info_from_wpcom() {
|
45 |
$blog_id = Jetpack_Options::get_option( 'id' );
|
46 |
+
$response = Client::wpcom_json_api_request_as_blog(
|
47 |
'/sites/' . $blog_id . '/jetpack-search/plan',
|
48 |
+
'2',
|
49 |
+
array(),
|
50 |
+
null,
|
51 |
+
'wpcom'
|
52 |
);
|
53 |
|
54 |
// store plan in options.
|
87 |
*/
|
88 |
public function supports_instant_search() {
|
89 |
$plan_info = $this->get_plan_info();
|
90 |
+
return ( isset( $plan_info['supports_instant_search'] ) && $plan_info['supports_instant_search'] ) || $this->has_jetpack_search_product();
|
91 |
}
|
92 |
|
93 |
/**
|
95 |
*/
|
96 |
public function supports_search() {
|
97 |
$plan_info = $this->get_plan_info();
|
98 |
+
return ( isset( $plan_info['supports_search'] ) && $plan_info['supports_search'] ) || $this->has_jetpack_search_product();
|
99 |
}
|
100 |
|
101 |
/**
|
jetpack_vendor/i18n-map.php
CHANGED
@@ -6,7 +6,7 @@ return array(
|
|
6 |
'packages' => array(
|
7 |
'jetpack-assets' => array(
|
8 |
'path' => 'jetpack_vendor/automattic/jetpack-assets',
|
9 |
-
'ver' => '1.17.
|
10 |
),
|
11 |
'jetpack-tracking' => array(
|
12 |
'path' => 'jetpack_vendor/automattic/jetpack-tracking',
|
@@ -16,6 +16,10 @@ return array(
|
|
16 |
'path' => 'jetpack_vendor/automattic/jetpack-heartbeat',
|
17 |
'ver' => '1.4.0',
|
18 |
),
|
|
|
|
|
|
|
|
|
19 |
'jetpack-password-checker' => array(
|
20 |
'path' => 'jetpack_vendor/automattic/jetpack-password-checker',
|
21 |
'ver' => '0.2.2',
|
@@ -24,18 +28,14 @@ return array(
|
|
24 |
'path' => 'jetpack_vendor/automattic/jetpack-identity-crisis',
|
25 |
'ver' => '0.6.4',
|
26 |
),
|
27 |
-
'jetpack-backup-pkg' => array(
|
28 |
-
'path' => 'jetpack_vendor/automattic/jetpack-backup',
|
29 |
-
'ver' => '1.2.3',
|
30 |
-
),
|
31 |
-
'jetpack-connection' => array(
|
32 |
-
'path' => 'jetpack_vendor/automattic/jetpack-connection',
|
33 |
-
'ver' => '1.36.1',
|
34 |
-
),
|
35 |
'jetpack-sync' => array(
|
36 |
'path' => 'jetpack_vendor/automattic/jetpack-sync',
|
37 |
'ver' => '1.29.0',
|
38 |
),
|
|
|
|
|
|
|
|
|
39 |
'jetpack-config' => array(
|
40 |
'path' => 'jetpack_vendor/automattic/jetpack-config',
|
41 |
'ver' => '1.6.0',
|
@@ -62,7 +62,7 @@ return array(
|
|
62 |
),
|
63 |
'jetpack-search-pkg' => array(
|
64 |
'path' => 'jetpack_vendor/automattic/jetpack-search',
|
65 |
-
'ver' => '0.5.
|
66 |
),
|
67 |
),
|
68 |
);
|
6 |
'packages' => array(
|
7 |
'jetpack-assets' => array(
|
8 |
'path' => 'jetpack_vendor/automattic/jetpack-assets',
|
9 |
+
'ver' => '1.17.1',
|
10 |
),
|
11 |
'jetpack-tracking' => array(
|
12 |
'path' => 'jetpack_vendor/automattic/jetpack-tracking',
|
16 |
'path' => 'jetpack_vendor/automattic/jetpack-heartbeat',
|
17 |
'ver' => '1.4.0',
|
18 |
),
|
19 |
+
'jetpack-connection' => array(
|
20 |
+
'path' => 'jetpack_vendor/automattic/jetpack-connection',
|
21 |
+
'ver' => '1.36.1',
|
22 |
+
),
|
23 |
'jetpack-password-checker' => array(
|
24 |
'path' => 'jetpack_vendor/automattic/jetpack-password-checker',
|
25 |
'ver' => '0.2.2',
|
28 |
'path' => 'jetpack_vendor/automattic/jetpack-identity-crisis',
|
29 |
'ver' => '0.6.4',
|
30 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
'jetpack-sync' => array(
|
32 |
'path' => 'jetpack_vendor/automattic/jetpack-sync',
|
33 |
'ver' => '1.29.0',
|
34 |
),
|
35 |
+
'jetpack-backup-pkg' => array(
|
36 |
+
'path' => 'jetpack_vendor/automattic/jetpack-backup',
|
37 |
+
'ver' => '1.2.3',
|
38 |
+
),
|
39 |
'jetpack-config' => array(
|
40 |
'path' => 'jetpack_vendor/automattic/jetpack-config',
|
41 |
'ver' => '1.6.0',
|
62 |
),
|
63 |
'jetpack-search-pkg' => array(
|
64 |
'path' => 'jetpack_vendor/automattic/jetpack-search',
|
65 |
+
'ver' => '0.5.4',
|
66 |
),
|
67 |
),
|
68 |
);
|
modules/markdown/easy-markdown.php
CHANGED
@@ -412,8 +412,8 @@ class WPCom_Markdown {
|
|
412 |
*/
|
413 |
protected function get_post_screen_post_type() {
|
414 |
global $pagenow;
|
415 |
-
$post_type =
|
416 |
-
$post_id =
|
417 |
|
418 |
if ( 'post-new.php' === $pagenow ) {
|
419 |
return ! empty( $post_type ) ? $post_type : 'post';
|
412 |
*/
|
413 |
protected function get_post_screen_post_type() {
|
414 |
global $pagenow;
|
415 |
+
$post_type = filter_input( INPUT_GET, 'post_type', FILTER_SANITIZE_STRING );
|
416 |
+
$post_id = filter_input( INPUT_GET, 'post', FILTER_SANITIZE_NUMBER_INT );
|
417 |
|
418 |
if ( 'post-new.php' === $pagenow ) {
|
419 |
return ! empty( $post_type ) ? $post_type : 'post';
|
readme.txt
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
=== Jetpack - WP Security, Backup, Speed, & Growth ===
|
2 |
Contributors: automattic, adamkheckler, adrianmoldovanwp, aduth, akirk, allendav, alternatekev, andy, annamcphee, annezazu, apeatling, arcangelini, azaozz, batmoo, barry, beaulebens, biskobe, blobaugh, bjorsch, brbrr, cainm, cena, cfinke, chaselivingston, chellycat, clickysteve, csonnek, danielbachhuber, davoraltman, daniloercoli, delawski, designsimply, dllh, drawmyface, dsmart, dzver, ebinnion, egregor, eliorivero, enej, eoigal, erania-pinnera, ethitter, fgiannar, gcorne, georgestephanis, gibrown, goldsounds, hew, hugobaeta, hypertextranch, iammattthomas, iandunn, jblz, jasmussen, jeffgolenski, jeherve, jenhooks, jenia, jessefriedman, jgs, jkudish, jmdodd, joanrho, johnjamesjacoby, jshreve, kbrownkd, keoshi, koke, kraftbj, lancewillett, leogermani, lschuyler, macmanx, martinremy, matt, matveb, mattwiebe, maverick3x6, mcsf, mdawaffe, mdbitz, MichaelArestad, migueluy, mikeyarce, mkaz, nancythanki, nickmomrik, obenland, oskosk, pento, professor44, rachelsquirrel, rdcoll, ryancowles, richardmuscat, richardmtl, robertbpugh, roccotripaldi, samhotchkiss, samiff, scarstocea, scottsweb, sdixon194, sdquirk, sermitr, simison, stephdau, tmoorewp, tyxla, Viper007Bond, westi, yoavf, zinigor
|
3 |
Tags: Security, backup, Woo, malware, scan, spam, CDN, search, social
|
4 |
-
Stable tag: 10.
|
5 |
Requires at least: 5.8
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 5.9
|
@@ -242,7 +242,7 @@ Jetpack Backup can do a full website migration to a new host, migrate theme file
|
|
242 |
4. Promote your newest posts, pages, and products across your social media channels.
|
243 |
|
244 |
== Changelog ==
|
245 |
-
### 10.6
|
246 |
#### Enhancements
|
247 |
- Contact Info and Markdown Blocks: add color, typography and spacing features.
|
248 |
- Dashboard: support Beta versions of Automattic plugins in plugin cards.
|
@@ -268,6 +268,7 @@ Jetpack Backup can do a full website migration to a new host, migrate theme file
|
|
268 |
- Pay with Paypal Block: properly display the card icons below the button.
|
269 |
- Protect: fixed math fallback's input accessibility and display.
|
270 |
- Scan: avoid PHP notice when non-admin users access the dashboard.
|
|
|
271 |
- Subscription form: adding a default line-height to avoid differences using different font-faces on input and button elements
|
272 |
- Widget Visibility: ensure it remains possible to edit visibility for legacy widgets in the block-based widget editor.
|
273 |
|
1 |
=== Jetpack - WP Security, Backup, Speed, & Growth ===
|
2 |
Contributors: automattic, adamkheckler, adrianmoldovanwp, aduth, akirk, allendav, alternatekev, andy, annamcphee, annezazu, apeatling, arcangelini, azaozz, batmoo, barry, beaulebens, biskobe, blobaugh, bjorsch, brbrr, cainm, cena, cfinke, chaselivingston, chellycat, clickysteve, csonnek, danielbachhuber, davoraltman, daniloercoli, delawski, designsimply, dllh, drawmyface, dsmart, dzver, ebinnion, egregor, eliorivero, enej, eoigal, erania-pinnera, ethitter, fgiannar, gcorne, georgestephanis, gibrown, goldsounds, hew, hugobaeta, hypertextranch, iammattthomas, iandunn, jblz, jasmussen, jeffgolenski, jeherve, jenhooks, jenia, jessefriedman, jgs, jkudish, jmdodd, joanrho, johnjamesjacoby, jshreve, kbrownkd, keoshi, koke, kraftbj, lancewillett, leogermani, lschuyler, macmanx, martinremy, matt, matveb, mattwiebe, maverick3x6, mcsf, mdawaffe, mdbitz, MichaelArestad, migueluy, mikeyarce, mkaz, nancythanki, nickmomrik, obenland, oskosk, pento, professor44, rachelsquirrel, rdcoll, ryancowles, richardmuscat, richardmtl, robertbpugh, roccotripaldi, samhotchkiss, samiff, scarstocea, scottsweb, sdixon194, sdquirk, sermitr, simison, stephdau, tmoorewp, tyxla, Viper007Bond, westi, yoavf, zinigor
|
3 |
Tags: Security, backup, Woo, malware, scan, spam, CDN, search, social
|
4 |
+
Stable tag: 10.6
|
5 |
Requires at least: 5.8
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 5.9
|
242 |
4. Promote your newest posts, pages, and products across your social media channels.
|
243 |
|
244 |
== Changelog ==
|
245 |
+
### 10.6 - 2022-02-01
|
246 |
#### Enhancements
|
247 |
- Contact Info and Markdown Blocks: add color, typography and spacing features.
|
248 |
- Dashboard: support Beta versions of Automattic plugins in plugin cards.
|
268 |
- Pay with Paypal Block: properly display the card icons below the button.
|
269 |
- Protect: fixed math fallback's input accessibility and display.
|
270 |
- Scan: avoid PHP notice when non-admin users access the dashboard.
|
271 |
+
- Search: Initialize debug bar using correct class
|
272 |
- Subscription form: adding a default line-height to avoid differences using different font-faces on input and button elements
|
273 |
- Widget Visibility: ensure it remains possible to edit visibility for legacy widgets in the block-based widget editor.
|
274 |
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6::getLoader();
|
vendor/autoload_packages.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -24,15 +24,15 @@ class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6_beta
|
|
24 |
|
25 |
require __DIR__ . '/platform_check.php';
|
26 |
|
27 |
-
spl_autoload_register(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
|
29 |
-
spl_autoload_unregister(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
30 |
|
31 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
32 |
if ($useStaticLoader) {
|
33 |
require __DIR__ . '/autoload_static.php';
|
34 |
|
35 |
-
call_user_func(\Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
36 |
} else {
|
37 |
$classMap = require __DIR__ . '/autoload_classmap.php';
|
38 |
if ($classMap) {
|
@@ -44,12 +44,12 @@ class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6_beta
|
|
44 |
$loader->register(true);
|
45 |
|
46 |
if ($useStaticLoader) {
|
47 |
-
$includeFiles = Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
48 |
} else {
|
49 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
50 |
}
|
51 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
52 |
-
composerRequiref11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
53 |
}
|
54 |
|
55 |
return $loader;
|
@@ -61,7 +61,7 @@ class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6_beta
|
|
61 |
* @param string $file
|
62 |
* @return void
|
63 |
*/
|
64 |
-
function composerRequiref11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
65 |
{
|
66 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
67 |
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
24 |
|
25 |
require __DIR__ . '/platform_check.php';
|
26 |
|
27 |
+
spl_autoload_register(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6', 'loadClassLoader'), true, true);
|
28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
|
29 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6', 'loadClassLoader'));
|
30 |
|
31 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
32 |
if ($useStaticLoader) {
|
33 |
require __DIR__ . '/autoload_static.php';
|
34 |
|
35 |
+
call_user_func(\Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6::getInitializer($loader));
|
36 |
} else {
|
37 |
$classMap = require __DIR__ . '/autoload_classmap.php';
|
38 |
if ($classMap) {
|
44 |
$loader->register(true);
|
45 |
|
46 |
if ($useStaticLoader) {
|
47 |
+
$includeFiles = Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6::$files;
|
48 |
} else {
|
49 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
50 |
}
|
51 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
52 |
+
composerRequiref11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6($fileIdentifier, $file);
|
53 |
}
|
54 |
|
55 |
return $loader;
|
61 |
* @param string $file
|
62 |
* @return void
|
63 |
*/
|
64 |
+
function composerRequiref11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6($fileIdentifier, $file)
|
65 |
{
|
66 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
67 |
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/actions.php',
|
@@ -202,10 +202,10 @@ class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6_beta
|
|
202 |
public static function getInitializer(ClassLoader $loader)
|
203 |
{
|
204 |
return \Closure::bind(function () use ($loader) {
|
205 |
-
$loader->prefixLengthsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
206 |
-
$loader->prefixDirsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
207 |
-
$loader->prefixesPsr0 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
208 |
-
$loader->classMap = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
209 |
|
210 |
}, null, ClassLoader::class);
|
211 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/actions.php',
|
202 |
public static function getInitializer(ClassLoader $loader)
|
203 |
{
|
204 |
return \Closure::bind(function () use ($loader) {
|
205 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6::$prefixLengthsPsr4;
|
206 |
+
$loader->prefixDirsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6::$prefixDirsPsr4;
|
207 |
+
$loader->prefixesPsr0 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6::$prefixesPsr0;
|
208 |
+
$loader->classMap = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6::$classMap;
|
209 |
|
210 |
}, null, ClassLoader::class);
|
211 |
}
|
vendor/composer/installed.json
CHANGED
@@ -152,17 +152,17 @@
|
|
152 |
},
|
153 |
{
|
154 |
"name": "automattic/jetpack-assets",
|
155 |
-
"version": "v1.17.
|
156 |
-
"version_normalized": "1.17.
|
157 |
"source": {
|
158 |
"type": "git",
|
159 |
"url": "https://github.com/Automattic/jetpack-assets.git",
|
160 |
-
"reference": "
|
161 |
},
|
162 |
"dist": {
|
163 |
"type": "zip",
|
164 |
-
"url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/
|
165 |
-
"reference": "
|
166 |
"shasum": ""
|
167 |
},
|
168 |
"require": {
|
@@ -174,7 +174,7 @@
|
|
174 |
"wikimedia/testing-access-wrapper": "^1.0 | ^2.0",
|
175 |
"yoast/phpunit-polyfills": "1.0.3"
|
176 |
},
|
177 |
-
"time": "2022-01-
|
178 |
"type": "jetpack-library",
|
179 |
"extra": {
|
180 |
"autotagger": true,
|
@@ -202,7 +202,7 @@
|
|
202 |
],
|
203 |
"description": "Asset management utilities for Jetpack ecosystem packages",
|
204 |
"support": {
|
205 |
-
"source": "https://github.com/Automattic/jetpack-assets/tree/v1.17.
|
206 |
},
|
207 |
"install-path": "../../jetpack_vendor/automattic/jetpack-assets"
|
208 |
},
|
@@ -1413,17 +1413,17 @@
|
|
1413 |
},
|
1414 |
{
|
1415 |
"name": "automattic/jetpack-search",
|
1416 |
-
"version": "v0.5.
|
1417 |
-
"version_normalized": "0.5.
|
1418 |
"source": {
|
1419 |
"type": "git",
|
1420 |
"url": "https://github.com/Automattic/jetpack-search.git",
|
1421 |
-
"reference": "
|
1422 |
},
|
1423 |
"dist": {
|
1424 |
"type": "zip",
|
1425 |
-
"url": "https://api.github.com/repos/Automattic/jetpack-search/zipball/
|
1426 |
-
"reference": "
|
1427 |
"shasum": ""
|
1428 |
},
|
1429 |
"require": {
|
@@ -1439,7 +1439,7 @@
|
|
1439 |
"automattic/wordbless": "0.3.1",
|
1440 |
"yoast/phpunit-polyfills": "1.0.3"
|
1441 |
},
|
1442 |
-
"time": "2022-01-
|
1443 |
"type": "jetpack-library",
|
1444 |
"extra": {
|
1445 |
"autotagger": true,
|
@@ -1464,7 +1464,7 @@
|
|
1464 |
],
|
1465 |
"description": "Tools to assist with enabling cloud search for Jetpack sites.",
|
1466 |
"support": {
|
1467 |
-
"source": "https://github.com/Automattic/jetpack-search/tree/v0.5.
|
1468 |
},
|
1469 |
"install-path": "../../jetpack_vendor/automattic/jetpack-search"
|
1470 |
},
|
152 |
},
|
153 |
{
|
154 |
"name": "automattic/jetpack-assets",
|
155 |
+
"version": "v1.17.1",
|
156 |
+
"version_normalized": "1.17.1.0",
|
157 |
"source": {
|
158 |
"type": "git",
|
159 |
"url": "https://github.com/Automattic/jetpack-assets.git",
|
160 |
+
"reference": "d4e2134acb8d7a397625cb90754fbae9c2c39e80"
|
161 |
},
|
162 |
"dist": {
|
163 |
"type": "zip",
|
164 |
+
"url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/d4e2134acb8d7a397625cb90754fbae9c2c39e80",
|
165 |
+
"reference": "d4e2134acb8d7a397625cb90754fbae9c2c39e80",
|
166 |
"shasum": ""
|
167 |
},
|
168 |
"require": {
|
174 |
"wikimedia/testing-access-wrapper": "^1.0 | ^2.0",
|
175 |
"yoast/phpunit-polyfills": "1.0.3"
|
176 |
},
|
177 |
+
"time": "2022-01-27T15:05:26+00:00",
|
178 |
"type": "jetpack-library",
|
179 |
"extra": {
|
180 |
"autotagger": true,
|
202 |
],
|
203 |
"description": "Asset management utilities for Jetpack ecosystem packages",
|
204 |
"support": {
|
205 |
+
"source": "https://github.com/Automattic/jetpack-assets/tree/v1.17.1"
|
206 |
},
|
207 |
"install-path": "../../jetpack_vendor/automattic/jetpack-assets"
|
208 |
},
|
1413 |
},
|
1414 |
{
|
1415 |
"name": "automattic/jetpack-search",
|
1416 |
+
"version": "v0.5.4",
|
1417 |
+
"version_normalized": "0.5.4.0",
|
1418 |
"source": {
|
1419 |
"type": "git",
|
1420 |
"url": "https://github.com/Automattic/jetpack-search.git",
|
1421 |
+
"reference": "f1d95d607dfe4bdf0c0c7b7d18cf33b694bc9954"
|
1422 |
},
|
1423 |
"dist": {
|
1424 |
"type": "zip",
|
1425 |
+
"url": "https://api.github.com/repos/Automattic/jetpack-search/zipball/f1d95d607dfe4bdf0c0c7b7d18cf33b694bc9954",
|
1426 |
+
"reference": "f1d95d607dfe4bdf0c0c7b7d18cf33b694bc9954",
|
1427 |
"shasum": ""
|
1428 |
},
|
1429 |
"require": {
|
1439 |
"automattic/wordbless": "0.3.1",
|
1440 |
"yoast/phpunit-polyfills": "1.0.3"
|
1441 |
},
|
1442 |
+
"time": "2022-01-31T11:48:51+00:00",
|
1443 |
"type": "jetpack-library",
|
1444 |
"extra": {
|
1445 |
"autotagger": true,
|
1464 |
],
|
1465 |
"description": "Tools to assist with enabling cloud search for Jetpack sites.",
|
1466 |
"support": {
|
1467 |
+
"source": "https://github.com/Automattic/jetpack-search/tree/v0.5.4"
|
1468 |
},
|
1469 |
"install-path": "../../jetpack_vendor/automattic/jetpack-search"
|
1470 |
},
|
vendor/composer/installed.php
CHANGED
@@ -47,12 +47,12 @@
|
|
47 |
'dev_requirement' => false,
|
48 |
),
|
49 |
'automattic/jetpack-assets' => array(
|
50 |
-
'pretty_version' => 'v1.17.
|
51 |
-
'version' => '1.17.
|
52 |
'type' => 'jetpack-library',
|
53 |
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets',
|
54 |
'aliases' => array(),
|
55 |
-
'reference' => '
|
56 |
'dev_requirement' => false,
|
57 |
),
|
58 |
'automattic/jetpack-autoloader' => array(
|
@@ -263,12 +263,12 @@
|
|
263 |
'dev_requirement' => false,
|
264 |
),
|
265 |
'automattic/jetpack-search' => array(
|
266 |
-
'pretty_version' => 'v0.5.
|
267 |
-
'version' => '0.5.
|
268 |
'type' => 'jetpack-library',
|
269 |
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-search',
|
270 |
'aliases' => array(),
|
271 |
-
'reference' => '
|
272 |
'dev_requirement' => false,
|
273 |
),
|
274 |
'automattic/jetpack-status' => array(
|
47 |
'dev_requirement' => false,
|
48 |
),
|
49 |
'automattic/jetpack-assets' => array(
|
50 |
+
'pretty_version' => 'v1.17.1',
|
51 |
+
'version' => '1.17.1.0',
|
52 |
'type' => 'jetpack-library',
|
53 |
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets',
|
54 |
'aliases' => array(),
|
55 |
+
'reference' => 'd4e2134acb8d7a397625cb90754fbae9c2c39e80',
|
56 |
'dev_requirement' => false,
|
57 |
),
|
58 |
'automattic/jetpack-autoloader' => array(
|
263 |
'dev_requirement' => false,
|
264 |
),
|
265 |
'automattic/jetpack-search' => array(
|
266 |
+
'pretty_version' => 'v0.5.4',
|
267 |
+
'version' => '0.5.4.0',
|
268 |
'type' => 'jetpack-library',
|
269 |
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-search',
|
270 |
'aliases' => array(),
|
271 |
+
'reference' => 'f1d95d607dfe4bdf0c0c7b7d18cf33b694bc9954',
|
272 |
'dev_requirement' => false,
|
273 |
),
|
274 |
'automattic/jetpack-status' => array(
|
vendor/composer/jetpack_autoload_classmap.php
CHANGED
@@ -75,67 +75,67 @@ return array(
|
|
75 |
'path' => $baseDir . '/src/class-tracking.php'
|
76 |
),
|
77 |
'Automattic\\Jetpack\\Search\\Instant_Search' => array(
|
78 |
-
'version' => '0.5.
|
79 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/instant-search/class-instant-search.php'
|
80 |
),
|
81 |
'Automattic\\Jetpack\\Search\\Options' => array(
|
82 |
-
'version' => '0.5.
|
83 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-options.php'
|
84 |
),
|
85 |
'Automattic\\Jetpack\\Search\\Settings' => array(
|
86 |
-
'version' => '0.5.
|
87 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-settings.php'
|
88 |
),
|
89 |
'Automattic\\Jetpack\\Search\\Classic_Search' => array(
|
90 |
-
'version' => '0.5.
|
91 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/classic-search/class-classic-search.php'
|
92 |
),
|
93 |
'Automattic\\Jetpack\\Search\\Customberg2' => array(
|
94 |
-
'version' => '0.5.
|
95 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/customberg/class-customberg2.php'
|
96 |
),
|
97 |
'Automattic\\Jetpack\\Search\\Plan' => array(
|
98 |
-
'version' => '0.5.
|
99 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-plan.php'
|
100 |
),
|
101 |
'Automattic\\Jetpack\\Search\\REST_Controller' => array(
|
102 |
-
'version' => '0.5.
|
103 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-rest-controller.php'
|
104 |
),
|
105 |
'Automattic\\Jetpack\\Search\\Jetpack_Initializer' => array(
|
106 |
-
'version' => '0.5.
|
107 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/initializers/class-jetpack-initializer.php'
|
108 |
),
|
109 |
'Automattic\\Jetpack\\Search\\Initializer' => array(
|
110 |
-
'version' => '0.5.
|
111 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/initializers/class-initializer.php'
|
112 |
),
|
113 |
'Automattic\\Jetpack\\Search\\Template_Tags' => array(
|
114 |
-
'version' => '0.5.
|
115 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-template-tags.php'
|
116 |
),
|
117 |
'Automattic\\Jetpack\\Search\\WPES\\Query_Parser' => array(
|
118 |
-
'version' => '0.5.
|
119 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-parser.php'
|
120 |
),
|
121 |
'Automattic\\Jetpack\\Search\\WPES\\Query_Builder' => array(
|
122 |
-
'version' => '0.5.
|
123 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-builder.php'
|
124 |
),
|
125 |
'Automattic\\Jetpack\\Search\\Helper' => array(
|
126 |
-
'version' => '0.5.
|
127 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-helper.php'
|
128 |
),
|
129 |
'Automattic\\Jetpack\\Search\\Dashboard' => array(
|
130 |
-
'version' => '0.5.
|
131 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/dashboard/class-dashboard.php'
|
132 |
),
|
133 |
'Automattic\\Jetpack\\Search\\Initial_State' => array(
|
134 |
-
'version' => '0.5.
|
135 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/dashboard/class-initial-state.php'
|
136 |
),
|
137 |
'Automattic\\Jetpack\\Search\\Module_Control' => array(
|
138 |
-
'version' => '0.5.
|
139 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-module-control.php'
|
140 |
),
|
141 |
'Automattic\\Jetpack\\My_Jetpack\\Products' => array(
|
@@ -607,11 +607,11 @@ return array(
|
|
607 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-tracking/src/class-tracking.php'
|
608 |
),
|
609 |
'Automattic\\Jetpack\\Assets' => array(
|
610 |
-
'version' => '1.17.
|
611 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-assets.php'
|
612 |
),
|
613 |
'Automattic\\Jetpack\\Assets\\Semver' => array(
|
614 |
-
'version' => '1.17.
|
615 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-semver.php'
|
616 |
),
|
617 |
'Automattic\\Jetpack\\A8c_Mc_Stats' => array(
|
75 |
'path' => $baseDir . '/src/class-tracking.php'
|
76 |
),
|
77 |
'Automattic\\Jetpack\\Search\\Instant_Search' => array(
|
78 |
+
'version' => '0.5.4.0',
|
79 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/instant-search/class-instant-search.php'
|
80 |
),
|
81 |
'Automattic\\Jetpack\\Search\\Options' => array(
|
82 |
+
'version' => '0.5.4.0',
|
83 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-options.php'
|
84 |
),
|
85 |
'Automattic\\Jetpack\\Search\\Settings' => array(
|
86 |
+
'version' => '0.5.4.0',
|
87 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-settings.php'
|
88 |
),
|
89 |
'Automattic\\Jetpack\\Search\\Classic_Search' => array(
|
90 |
+
'version' => '0.5.4.0',
|
91 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/classic-search/class-classic-search.php'
|
92 |
),
|
93 |
'Automattic\\Jetpack\\Search\\Customberg2' => array(
|
94 |
+
'version' => '0.5.4.0',
|
95 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/customberg/class-customberg2.php'
|
96 |
),
|
97 |
'Automattic\\Jetpack\\Search\\Plan' => array(
|
98 |
+
'version' => '0.5.4.0',
|
99 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-plan.php'
|
100 |
),
|
101 |
'Automattic\\Jetpack\\Search\\REST_Controller' => array(
|
102 |
+
'version' => '0.5.4.0',
|
103 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-rest-controller.php'
|
104 |
),
|
105 |
'Automattic\\Jetpack\\Search\\Jetpack_Initializer' => array(
|
106 |
+
'version' => '0.5.4.0',
|
107 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/initializers/class-jetpack-initializer.php'
|
108 |
),
|
109 |
'Automattic\\Jetpack\\Search\\Initializer' => array(
|
110 |
+
'version' => '0.5.4.0',
|
111 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/initializers/class-initializer.php'
|
112 |
),
|
113 |
'Automattic\\Jetpack\\Search\\Template_Tags' => array(
|
114 |
+
'version' => '0.5.4.0',
|
115 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-template-tags.php'
|
116 |
),
|
117 |
'Automattic\\Jetpack\\Search\\WPES\\Query_Parser' => array(
|
118 |
+
'version' => '0.5.4.0',
|
119 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-parser.php'
|
120 |
),
|
121 |
'Automattic\\Jetpack\\Search\\WPES\\Query_Builder' => array(
|
122 |
+
'version' => '0.5.4.0',
|
123 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-builder.php'
|
124 |
),
|
125 |
'Automattic\\Jetpack\\Search\\Helper' => array(
|
126 |
+
'version' => '0.5.4.0',
|
127 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-helper.php'
|
128 |
),
|
129 |
'Automattic\\Jetpack\\Search\\Dashboard' => array(
|
130 |
+
'version' => '0.5.4.0',
|
131 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/dashboard/class-dashboard.php'
|
132 |
),
|
133 |
'Automattic\\Jetpack\\Search\\Initial_State' => array(
|
134 |
+
'version' => '0.5.4.0',
|
135 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/dashboard/class-initial-state.php'
|
136 |
),
|
137 |
'Automattic\\Jetpack\\Search\\Module_Control' => array(
|
138 |
+
'version' => '0.5.4.0',
|
139 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-module-control.php'
|
140 |
),
|
141 |
'Automattic\\Jetpack\\My_Jetpack\\Products' => array(
|
607 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-tracking/src/class-tracking.php'
|
608 |
),
|
609 |
'Automattic\\Jetpack\\Assets' => array(
|
610 |
+
'version' => '1.17.1.0',
|
611 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-assets.php'
|
612 |
),
|
613 |
'Automattic\\Jetpack\\Assets\\Semver' => array(
|
614 |
+
'version' => '1.17.1.0',
|
615 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-semver.php'
|
616 |
),
|
617 |
'Automattic\\Jetpack\\A8c_Mc_Stats' => array(
|
vendor/composer/jetpack_autoload_filemap.php
CHANGED
@@ -7,7 +7,7 @@ $baseDir = dirname($vendorDir);
|
|
7 |
|
8 |
return array(
|
9 |
'3773ef3f09c37da5478d578e32b03a4b' => array(
|
10 |
-
'version' => '1.17.
|
11 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/actions.php'
|
12 |
),
|
13 |
'd4eb94df91a729802d18373ee8cdc79f' => array(
|
7 |
|
8 |
return array(
|
9 |
'3773ef3f09c37da5478d578e32b03a4b' => array(
|
10 |
+
'version' => '1.17.1.0',
|
11 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/actions.php'
|
12 |
),
|
13 |
'd4eb94df91a729802d18373ee8cdc79f' => array(
|
vendor/jetpack-autoloader/class-autoloader-handler.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-autoloader-locator.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-autoloader.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-container.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-hook-manager.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-latest-autoloader-guard.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-manifest-reader.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-path-processor.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-php-autoloader.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-plugin-locator.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-plugins-handler.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-shutdown-handler.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-version-loader.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-version-selector.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_6;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|