Version Description
Download this release
Release Info
Developer | sdixon194 |
Plugin | Jetpack by WordPress.com |
Version | 10.7-beta2 |
Comparing to | |
See all releases |
Code changes from version 10.7-beta to 10.7-beta2
- jetpack.php +1 -1
- jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md +8 -0
- jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php +1 -1
- jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php +2 -1
- jetpack_vendor/i18n-map.php +5 -5
- vendor/composer/autoload_files.php +1 -1
- vendor/composer/autoload_static.php +1 -1
- vendor/composer/installed.json +7 -7
- vendor/composer/installed.php +3 -3
- vendor/composer/jetpack_autoload_classmap.php +37 -37
- vendor/composer/jetpack_autoload_filemap.php +4 -4
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.7-
|
8 |
* Author URI: https://jetpack.com
|
9 |
* License: GPL2+
|
10 |
* Text Domain: jetpack
|
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.7-beta2
|
8 |
* Author URI: https://jetpack.com
|
9 |
* License: GPL2+
|
10 |
* Text Domain: jetpack
|
jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md
CHANGED
@@ -5,6 +5,13 @@ 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.6.2] - 2022-02-22
|
9 |
### Added
|
10 |
- Add Beta badge
|
@@ -265,6 +272,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
265 |
### Added
|
266 |
- Created package
|
267 |
|
|
|
268 |
[0.6.2]: https://github.com/Automattic/jetpack-my-jetpack/compare/0.6.1...0.6.2
|
269 |
[0.6.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/0.6.0...0.6.1
|
270 |
[0.6.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/0.5.0...0.6.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.6.3] - 2022-02-22
|
9 |
+
### Changed
|
10 |
+
- Updated inline documentation
|
11 |
+
|
12 |
+
### Fixed
|
13 |
+
- Use Jetpack namespace to fix fatal error
|
14 |
+
|
15 |
## [0.6.2] - 2022-02-22
|
16 |
### Added
|
17 |
- Add Beta badge
|
272 |
### Added
|
273 |
- Created package
|
274 |
|
275 |
+
[0.6.3]: https://github.com/Automattic/jetpack-my-jetpack/compare/0.6.2...0.6.3
|
276 |
[0.6.2]: https://github.com/Automattic/jetpack-my-jetpack/compare/0.6.1...0.6.2
|
277 |
[0.6.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/0.6.0...0.6.1
|
278 |
[0.6.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/0.5.0...0.6.0
|
jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php
CHANGED
@@ -27,7 +27,7 @@ class Initializer {
|
|
27 |
*
|
28 |
* @var string
|
29 |
*/
|
30 |
-
const PACKAGE_VERSION = '0.6.
|
31 |
|
32 |
/**
|
33 |
* Initialize My Jetapack
|
27 |
*
|
28 |
* @var string
|
29 |
*/
|
30 |
+
const PACKAGE_VERSION = '0.6.3';
|
31 |
|
32 |
/**
|
33 |
* Initialize My Jetapack
|
jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php
CHANGED
@@ -12,11 +12,12 @@ use Automattic\Jetpack\Connection\Manager as Connection_Manager;
|
|
12 |
use Automattic\Jetpack\My_Jetpack\Hybrid_Product;
|
13 |
use Automattic\Jetpack\My_Jetpack\Wpcom_Products;
|
14 |
use Automattic\Jetpack\Redirect;
|
|
|
15 |
use Jetpack_Options;
|
16 |
use WP_Error;
|
17 |
|
18 |
/**
|
19 |
-
* Class responsible for handling the
|
20 |
*/
|
21 |
class Backup extends Hybrid_Product {
|
22 |
|
12 |
use Automattic\Jetpack\My_Jetpack\Hybrid_Product;
|
13 |
use Automattic\Jetpack\My_Jetpack\Wpcom_Products;
|
14 |
use Automattic\Jetpack\Redirect;
|
15 |
+
use Jetpack;
|
16 |
use Jetpack_Options;
|
17 |
use WP_Error;
|
18 |
|
19 |
/**
|
20 |
+
* Class responsible for handling the Backup product
|
21 |
*/
|
22 |
class Backup extends Hybrid_Product {
|
23 |
|
jetpack_vendor/i18n-map.php
CHANGED
@@ -28,14 +28,14 @@ return array(
|
|
28 |
'path' => 'jetpack_vendor/automattic/jetpack-identity-crisis',
|
29 |
'ver' => '0.7.4',
|
30 |
),
|
31 |
-
'jetpack-sync' => array(
|
32 |
-
'path' => 'jetpack_vendor/automattic/jetpack-sync',
|
33 |
-
'ver' => '1.30.0',
|
34 |
-
),
|
35 |
'jetpack-backup-pkg' => array(
|
36 |
'path' => 'jetpack_vendor/automattic/jetpack-backup',
|
37 |
'ver' => '1.2.4',
|
38 |
),
|
|
|
|
|
|
|
|
|
39 |
'jetpack-config' => array(
|
40 |
'path' => 'jetpack_vendor/automattic/jetpack-config',
|
41 |
'ver' => '1.6.1',
|
@@ -62,7 +62,7 @@ return array(
|
|
62 |
),
|
63 |
'jetpack-my-jetpack' => array(
|
64 |
'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack',
|
65 |
-
'ver' => '0.6.
|
66 |
),
|
67 |
'jetpack-search-pkg' => array(
|
68 |
'path' => 'jetpack_vendor/automattic/jetpack-search',
|
28 |
'path' => 'jetpack_vendor/automattic/jetpack-identity-crisis',
|
29 |
'ver' => '0.7.4',
|
30 |
),
|
|
|
|
|
|
|
|
|
31 |
'jetpack-backup-pkg' => array(
|
32 |
'path' => 'jetpack_vendor/automattic/jetpack-backup',
|
33 |
'ver' => '1.2.4',
|
34 |
),
|
35 |
+
'jetpack-sync' => array(
|
36 |
+
'path' => 'jetpack_vendor/automattic/jetpack-sync',
|
37 |
+
'ver' => '1.30.0',
|
38 |
+
),
|
39 |
'jetpack-config' => array(
|
40 |
'path' => 'jetpack_vendor/automattic/jetpack-config',
|
41 |
'ver' => '1.6.1',
|
62 |
),
|
63 |
'jetpack-my-jetpack' => array(
|
64 |
'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack',
|
65 |
+
'ver' => '0.6.3',
|
66 |
),
|
67 |
'jetpack-search-pkg' => array(
|
68 |
'path' => 'jetpack_vendor/automattic/jetpack-search',
|
vendor/composer/autoload_files.php
CHANGED
@@ -9,6 +9,6 @@ return array(
|
|
9 |
'3773ef3f09c37da5478d578e32b03a4b' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/actions.php',
|
10 |
'd4eb94df91a729802d18373ee8cdc79f' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/actions.php',
|
11 |
'009de6aaa0d497eacea41fab13fc05f1' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/functions.php',
|
12 |
-
'd7b298d70ab0e8605f5d5b6edeab1bd2' => $vendorDir . '/automattic/jetpack-waf/actions.php',
|
13 |
'c41c8291342c1bc5fcb32cf6fda33a14' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/search.php',
|
|
|
14 |
);
|
9 |
'3773ef3f09c37da5478d578e32b03a4b' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/actions.php',
|
10 |
'd4eb94df91a729802d18373ee8cdc79f' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/actions.php',
|
11 |
'009de6aaa0d497eacea41fab13fc05f1' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/functions.php',
|
|
|
12 |
'c41c8291342c1bc5fcb32cf6fda33a14' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/search.php',
|
13 |
+
'd7b298d70ab0e8605f5d5b6edeab1bd2' => $vendorDir . '/automattic/jetpack-waf/actions.php',
|
14 |
);
|
vendor/composer/autoload_static.php
CHANGED
@@ -10,8 +10,8 @@ class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_7_beta
|
|
10 |
'3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/actions.php',
|
11 |
'd4eb94df91a729802d18373ee8cdc79f' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-backup/actions.php',
|
12 |
'009de6aaa0d497eacea41fab13fc05f1' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-compat/functions.php',
|
13 |
-
'd7b298d70ab0e8605f5d5b6edeab1bd2' => __DIR__ . '/..' . '/automattic/jetpack-waf/actions.php',
|
14 |
'c41c8291342c1bc5fcb32cf6fda33a14' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-search/search.php',
|
|
|
15 |
);
|
16 |
|
17 |
public static $prefixLengthsPsr4 = array (
|
10 |
'3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/actions.php',
|
11 |
'd4eb94df91a729802d18373ee8cdc79f' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-backup/actions.php',
|
12 |
'009de6aaa0d497eacea41fab13fc05f1' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-compat/functions.php',
|
|
|
13 |
'c41c8291342c1bc5fcb32cf6fda33a14' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-search/search.php',
|
14 |
+
'd7b298d70ab0e8605f5d5b6edeab1bd2' => __DIR__ . '/..' . '/automattic/jetpack-waf/actions.php',
|
15 |
);
|
16 |
|
17 |
public static $prefixLengthsPsr4 = array (
|
vendor/composer/installed.json
CHANGED
@@ -1109,17 +1109,17 @@
|
|
1109 |
},
|
1110 |
{
|
1111 |
"name": "automattic/jetpack-my-jetpack",
|
1112 |
-
"version": "v0.6.
|
1113 |
-
"version_normalized": "0.6.
|
1114 |
"source": {
|
1115 |
"type": "git",
|
1116 |
"url": "https://github.com/Automattic/jetpack-my-jetpack.git",
|
1117 |
-
"reference": "
|
1118 |
},
|
1119 |
"dist": {
|
1120 |
"type": "zip",
|
1121 |
-
"url": "https://api.github.com/repos/Automattic/jetpack-my-jetpack/zipball/
|
1122 |
-
"reference": "
|
1123 |
"shasum": ""
|
1124 |
},
|
1125 |
"require": {
|
@@ -1138,7 +1138,7 @@
|
|
1138 |
"automattic/wordbless": "@dev",
|
1139 |
"yoast/phpunit-polyfills": "1.0.3"
|
1140 |
},
|
1141 |
-
"time": "2022-02-
|
1142 |
"type": "jetpack-library",
|
1143 |
"extra": {
|
1144 |
"autotagger": true,
|
@@ -1167,7 +1167,7 @@
|
|
1167 |
],
|
1168 |
"description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins",
|
1169 |
"support": {
|
1170 |
-
"source": "https://github.com/Automattic/jetpack-my-jetpack/tree/v0.6.
|
1171 |
},
|
1172 |
"install-path": "../../jetpack_vendor/automattic/jetpack-my-jetpack"
|
1173 |
},
|
1109 |
},
|
1110 |
{
|
1111 |
"name": "automattic/jetpack-my-jetpack",
|
1112 |
+
"version": "v0.6.3",
|
1113 |
+
"version_normalized": "0.6.3.0",
|
1114 |
"source": {
|
1115 |
"type": "git",
|
1116 |
"url": "https://github.com/Automattic/jetpack-my-jetpack.git",
|
1117 |
+
"reference": "3618c40dd08403b83e2ed28263949403816f279b"
|
1118 |
},
|
1119 |
"dist": {
|
1120 |
"type": "zip",
|
1121 |
+
"url": "https://api.github.com/repos/Automattic/jetpack-my-jetpack/zipball/3618c40dd08403b83e2ed28263949403816f279b",
|
1122 |
+
"reference": "3618c40dd08403b83e2ed28263949403816f279b",
|
1123 |
"shasum": ""
|
1124 |
},
|
1125 |
"require": {
|
1138 |
"automattic/wordbless": "@dev",
|
1139 |
"yoast/phpunit-polyfills": "1.0.3"
|
1140 |
},
|
1141 |
+
"time": "2022-02-22T21:29:11+00:00",
|
1142 |
"type": "jetpack-library",
|
1143 |
"extra": {
|
1144 |
"autotagger": true,
|
1167 |
],
|
1168 |
"description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins",
|
1169 |
"support": {
|
1170 |
+
"source": "https://github.com/Automattic/jetpack-my-jetpack/tree/v0.6.3"
|
1171 |
},
|
1172 |
"install-path": "../../jetpack_vendor/automattic/jetpack-my-jetpack"
|
1173 |
},
|
vendor/composer/installed.php
CHANGED
@@ -209,12 +209,12 @@
|
|
209 |
'dev_requirement' => false,
|
210 |
),
|
211 |
'automattic/jetpack-my-jetpack' => array(
|
212 |
-
'pretty_version' => 'v0.6.
|
213 |
-
'version' => '0.6.
|
214 |
'type' => 'jetpack-library',
|
215 |
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack',
|
216 |
'aliases' => array(),
|
217 |
-
'reference' => '
|
218 |
'dev_requirement' => false,
|
219 |
),
|
220 |
'automattic/jetpack-options' => array(
|
209 |
'dev_requirement' => false,
|
210 |
),
|
211 |
'automattic/jetpack-my-jetpack' => array(
|
212 |
+
'pretty_version' => 'v0.6.3',
|
213 |
+
'version' => '0.6.3.0',
|
214 |
'type' => 'jetpack-library',
|
215 |
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack',
|
216 |
'aliases' => array(),
|
217 |
+
'reference' => '3618c40dd08403b83e2ed28263949403816f279b',
|
218 |
'dev_requirement' => false,
|
219 |
),
|
220 |
'automattic/jetpack-options' => array(
|
vendor/composer/jetpack_autoload_classmap.php
CHANGED
@@ -74,6 +74,26 @@ return array(
|
|
74 |
'version' => 'dev-master',
|
75 |
'path' => $baseDir . '/src/class-tracking.php'
|
76 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
'Automattic\\Jetpack\\Search\\Customberg2' => array(
|
78 |
'version' => '0.9.0.0',
|
79 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/customberg/class-customberg2.php'
|
@@ -150,92 +170,72 @@ return array(
|
|
150 |
'version' => '0.9.0.0',
|
151 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-cli.php'
|
152 |
),
|
153 |
-
'Automattic\\Jetpack\\Waf\\WafOperators' => array(
|
154 |
-
'version' => '0.1.0.0',
|
155 |
-
'path' => $vendorDir . '/automattic/jetpack-waf/src/class-waf-operators.php'
|
156 |
-
),
|
157 |
-
'Automattic\\Jetpack\\Waf\\WafTransforms' => array(
|
158 |
-
'version' => '0.1.0.0',
|
159 |
-
'path' => $vendorDir . '/automattic/jetpack-waf/src/class-waf-transforms.php'
|
160 |
-
),
|
161 |
-
'Automattic\\Jetpack\\Waf\\WafRunner' => array(
|
162 |
-
'version' => '0.1.0.0',
|
163 |
-
'path' => $vendorDir . '/automattic/jetpack-waf/src/class-waf-runner.php'
|
164 |
-
),
|
165 |
-
'Automattic\\Jetpack\\Waf\\WafRuleCompiler' => array(
|
166 |
-
'version' => '0.1.0.0',
|
167 |
-
'path' => $vendorDir . '/automattic/jetpack-waf/src/class-waf-rule-compiler.php'
|
168 |
-
),
|
169 |
-
'Automattic\\Jetpack\\Waf\\WafRuntime' => array(
|
170 |
-
'version' => '0.1.0.0',
|
171 |
-
'path' => $vendorDir . '/automattic/jetpack-waf/src/class-waf-runtime.php'
|
172 |
-
),
|
173 |
'Automattic\\Jetpack\\My_Jetpack\\REST_Products' => array(
|
174 |
-
'version' => '0.6.
|
175 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-products.php'
|
176 |
),
|
177 |
'Automattic\\Jetpack\\My_Jetpack\\Wpcom_Products' => array(
|
178 |
-
'version' => '0.6.
|
179 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php'
|
180 |
),
|
181 |
'Automattic\\Jetpack\\My_Jetpack\\REST_Purchases' => array(
|
182 |
-
'version' => '0.6.
|
183 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-purchases.php'
|
184 |
),
|
185 |
'Automattic\\Jetpack\\My_Jetpack\\Initializer' => array(
|
186 |
-
'version' => '0.6.
|
187 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php'
|
188 |
),
|
189 |
'Automattic\\Jetpack\\My_Jetpack\\Product' => array(
|
190 |
-
'version' => '0.6.
|
191 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-product.php'
|
192 |
),
|
193 |
'Automattic\\Jetpack\\My_Jetpack\\Module_Product' => array(
|
194 |
-
'version' => '0.6.
|
195 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-module-product.php'
|
196 |
),
|
197 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Videopress' => array(
|
198 |
-
'version' => '0.6.
|
199 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-videopress.php'
|
200 |
),
|
201 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Boost' => array(
|
202 |
-
'version' => '0.6.
|
203 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php'
|
204 |
),
|
205 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Search' => array(
|
206 |
-
'version' => '0.6.
|
207 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search.php'
|
208 |
),
|
209 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Scan' => array(
|
210 |
-
'version' => '0.6.
|
211 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-scan.php'
|
212 |
),
|
213 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Backup' => array(
|
214 |
-
'version' => '0.6.
|
215 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php'
|
216 |
),
|
217 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Security' => array(
|
218 |
-
'version' => '0.6.
|
219 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-security.php'
|
220 |
),
|
221 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Anti_Spam' => array(
|
222 |
-
'version' => '0.6.
|
223 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-anti-spam.php'
|
224 |
),
|
225 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Extras' => array(
|
226 |
-
'version' => '0.6.
|
227 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-extras.php'
|
228 |
),
|
229 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Crm' => array(
|
230 |
-
'version' => '0.6.
|
231 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-crm.php'
|
232 |
),
|
233 |
'Automattic\\Jetpack\\My_Jetpack\\Hybrid_Product' => array(
|
234 |
-
'version' => '0.6.
|
235 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-hybrid-product.php'
|
236 |
),
|
237 |
'Automattic\\Jetpack\\My_Jetpack\\Products' => array(
|
238 |
-
'version' => '0.6.
|
239 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-products.php'
|
240 |
),
|
241 |
'Automattic\\Jetpack\\Licensing' => array(
|
74 |
'version' => 'dev-master',
|
75 |
'path' => $baseDir . '/src/class-tracking.php'
|
76 |
),
|
77 |
+
'Automattic\\Jetpack\\Waf\\WafOperators' => array(
|
78 |
+
'version' => '0.1.0.0',
|
79 |
+
'path' => $vendorDir . '/automattic/jetpack-waf/src/class-waf-operators.php'
|
80 |
+
),
|
81 |
+
'Automattic\\Jetpack\\Waf\\WafTransforms' => array(
|
82 |
+
'version' => '0.1.0.0',
|
83 |
+
'path' => $vendorDir . '/automattic/jetpack-waf/src/class-waf-transforms.php'
|
84 |
+
),
|
85 |
+
'Automattic\\Jetpack\\Waf\\WafRunner' => array(
|
86 |
+
'version' => '0.1.0.0',
|
87 |
+
'path' => $vendorDir . '/automattic/jetpack-waf/src/class-waf-runner.php'
|
88 |
+
),
|
89 |
+
'Automattic\\Jetpack\\Waf\\WafRuleCompiler' => array(
|
90 |
+
'version' => '0.1.0.0',
|
91 |
+
'path' => $vendorDir . '/automattic/jetpack-waf/src/class-waf-rule-compiler.php'
|
92 |
+
),
|
93 |
+
'Automattic\\Jetpack\\Waf\\WafRuntime' => array(
|
94 |
+
'version' => '0.1.0.0',
|
95 |
+
'path' => $vendorDir . '/automattic/jetpack-waf/src/class-waf-runtime.php'
|
96 |
+
),
|
97 |
'Automattic\\Jetpack\\Search\\Customberg2' => array(
|
98 |
'version' => '0.9.0.0',
|
99 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/customberg/class-customberg2.php'
|
170 |
'version' => '0.9.0.0',
|
171 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-cli.php'
|
172 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
'Automattic\\Jetpack\\My_Jetpack\\REST_Products' => array(
|
174 |
+
'version' => '0.6.3.0',
|
175 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-products.php'
|
176 |
),
|
177 |
'Automattic\\Jetpack\\My_Jetpack\\Wpcom_Products' => array(
|
178 |
+
'version' => '0.6.3.0',
|
179 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php'
|
180 |
),
|
181 |
'Automattic\\Jetpack\\My_Jetpack\\REST_Purchases' => array(
|
182 |
+
'version' => '0.6.3.0',
|
183 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-purchases.php'
|
184 |
),
|
185 |
'Automattic\\Jetpack\\My_Jetpack\\Initializer' => array(
|
186 |
+
'version' => '0.6.3.0',
|
187 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php'
|
188 |
),
|
189 |
'Automattic\\Jetpack\\My_Jetpack\\Product' => array(
|
190 |
+
'version' => '0.6.3.0',
|
191 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-product.php'
|
192 |
),
|
193 |
'Automattic\\Jetpack\\My_Jetpack\\Module_Product' => array(
|
194 |
+
'version' => '0.6.3.0',
|
195 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-module-product.php'
|
196 |
),
|
197 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Videopress' => array(
|
198 |
+
'version' => '0.6.3.0',
|
199 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-videopress.php'
|
200 |
),
|
201 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Boost' => array(
|
202 |
+
'version' => '0.6.3.0',
|
203 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php'
|
204 |
),
|
205 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Search' => array(
|
206 |
+
'version' => '0.6.3.0',
|
207 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search.php'
|
208 |
),
|
209 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Scan' => array(
|
210 |
+
'version' => '0.6.3.0',
|
211 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-scan.php'
|
212 |
),
|
213 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Backup' => array(
|
214 |
+
'version' => '0.6.3.0',
|
215 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php'
|
216 |
),
|
217 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Security' => array(
|
218 |
+
'version' => '0.6.3.0',
|
219 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-security.php'
|
220 |
),
|
221 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Anti_Spam' => array(
|
222 |
+
'version' => '0.6.3.0',
|
223 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-anti-spam.php'
|
224 |
),
|
225 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Extras' => array(
|
226 |
+
'version' => '0.6.3.0',
|
227 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-extras.php'
|
228 |
),
|
229 |
'Automattic\\Jetpack\\My_Jetpack\\Products\\Crm' => array(
|
230 |
+
'version' => '0.6.3.0',
|
231 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-crm.php'
|
232 |
),
|
233 |
'Automattic\\Jetpack\\My_Jetpack\\Hybrid_Product' => array(
|
234 |
+
'version' => '0.6.3.0',
|
235 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-hybrid-product.php'
|
236 |
),
|
237 |
'Automattic\\Jetpack\\My_Jetpack\\Products' => array(
|
238 |
+
'version' => '0.6.3.0',
|
239 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-products.php'
|
240 |
),
|
241 |
'Automattic\\Jetpack\\Licensing' => array(
|
vendor/composer/jetpack_autoload_filemap.php
CHANGED
@@ -18,12 +18,12 @@ return array(
|
|
18 |
'version' => '1.6.8.0',
|
19 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/functions.php'
|
20 |
),
|
21 |
-
'd7b298d70ab0e8605f5d5b6edeab1bd2' => array(
|
22 |
-
'version' => '0.1.0.0',
|
23 |
-
'path' => $vendorDir . '/automattic/jetpack-waf/actions.php'
|
24 |
-
),
|
25 |
'c41c8291342c1bc5fcb32cf6fda33a14' => array(
|
26 |
'version' => '0.9.0.0',
|
27 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/search.php'
|
28 |
),
|
|
|
|
|
|
|
|
|
29 |
);
|
18 |
'version' => '1.6.8.0',
|
19 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/functions.php'
|
20 |
),
|
|
|
|
|
|
|
|
|
21 |
'c41c8291342c1bc5fcb32cf6fda33a14' => array(
|
22 |
'version' => '0.9.0.0',
|
23 |
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/search.php'
|
24 |
),
|
25 |
+
'd7b298d70ab0e8605f5d5b6edeab1bd2' => array(
|
26 |
+
'version' => '0.1.0.0',
|
27 |
+
'path' => $vendorDir . '/automattic/jetpack-waf/actions.php'
|
28 |
+
),
|
29 |
);
|