Version Description
- Release date: August 6, 2020
** Compatibility **
- General: Handle new user meta actions.
- General: Implement the spread operator for our IXR class methods to match WordPress Core behavior in 5.5.
- General: Update some miscellaneous dependencies.
Download this release
Release Info
Developer | georgestephanis |
Plugin | VaultPress |
Version | 2.1.3 |
Comparing to | |
See all releases |
Code changes from version 2.1.2 to 2.1.3
- readme.txt +8 -3
- vaultpress.php +7 -2
- vendor/autoload.php +1 -1
- vendor/autoload_functions.php +1 -1
- vendor/autoload_packages.php +1 -1
- vendor/class-autoloader-handler.php +1 -1
- vendor/class-classes-handler.php +1 -1
- vendor/class-files-handler.php +1 -1
- vendor/class-plugins-handler.php +1 -1
- vendor/class-version-selector.php +1 -1
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: automattic, apokalyptik, briancolinger, josephscott, shaunandrews,
|
|
3 |
Tags: security, malware, virus, archive, back up, back ups, backup, backups, scanning, restore, wordpress backup, site backup, website backup
|
4 |
Requires at least: 5.2
|
5 |
Tested up to: 5.5
|
6 |
-
Stable tag: 2.1.
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2
|
9 |
|
@@ -49,15 +49,20 @@ Yes, VaultPress supports Multisite installs. Each site will require its own subs
|
|
49 |
|
50 |
== Changelog ==
|
51 |
|
52 |
-
= 2.1.
|
53 |
|
54 |
-
* Release date: August
|
55 |
|
56 |
** Compatibility **
|
57 |
|
|
|
58 |
* General: Implement the spread operator for our IXR class methods to match WordPress Core behavior in 5.5.
|
59 |
* General: Update some miscellaneous dependencies.
|
60 |
|
|
|
|
|
|
|
|
|
61 |
= 2.1.1 =
|
62 |
|
63 |
* Release date: December 10, 2019
|
3 |
Tags: security, malware, virus, archive, back up, back ups, backup, backups, scanning, restore, wordpress backup, site backup, website backup
|
4 |
Requires at least: 5.2
|
5 |
Tested up to: 5.5
|
6 |
+
Stable tag: 2.1.3
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2
|
9 |
|
49 |
|
50 |
== Changelog ==
|
51 |
|
52 |
+
= 2.1.3 =
|
53 |
|
54 |
+
* Release date: August 6, 2020
|
55 |
|
56 |
** Compatibility **
|
57 |
|
58 |
+
* General: Handle new user meta actions.
|
59 |
* General: Implement the spread operator for our IXR class methods to match WordPress Core behavior in 5.5.
|
60 |
* General: Update some miscellaneous dependencies.
|
61 |
|
62 |
+
= 2.1.2 =
|
63 |
+
|
64 |
+
* Release date: Not publicly released, all changes shipped in subsequent version instead.
|
65 |
+
|
66 |
= 2.1.1 =
|
67 |
|
68 |
* Release date: December 10, 2019
|
vaultpress.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: VaultPress
|
4 |
* Plugin URI: http://vaultpress.com/?utm_source=plugin-uri&utm_medium=plugin-description&utm_campaign=1.0
|
5 |
* Description: Protect your content, themes, plugins, and settings with <strong>realtime backup</strong> and <strong>automated security scanning</strong> from <a href="http://vaultpress.com/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">VaultPress</a>. Activate, enter your registration key, and never worry again. <a href="http://vaultpress.com/help/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">Need some help?</a>
|
6 |
-
* Version: 2.1.
|
7 |
* Author: Automattic
|
8 |
* Author URI: http://vaultpress.com/?utm_source=author-uri&utm_medium=plugin-description&utm_campaign=1.0
|
9 |
* License: GPL2+
|
@@ -17,7 +17,7 @@
|
|
17 |
defined( 'ABSPATH' ) || die();
|
18 |
|
19 |
define( 'VAULTPRESS__MINIMUM_PHP_VERSION', '5.6' );
|
20 |
-
define( 'VAULTPRESS__VERSION', '2.1.
|
21 |
define( 'VAULTPRESS__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
22 |
|
23 |
/**
|
@@ -2896,9 +2896,14 @@ JS;
|
|
2896 |
|
2897 |
// Usermeta
|
2898 |
if ( $this->is_main_site() ) {
|
|
|
2899 |
add_action( 'added_usermeta', array( $this, 'usermeta_action_handler' ), 10, 4 );
|
2900 |
add_action( 'update_usermeta', array( $this, 'usermeta_action_handler' ), 10, 4 );
|
2901 |
add_action( 'delete_usermeta', array( $this, 'usermeta_action_handler' ), 10, 4 );
|
|
|
|
|
|
|
|
|
2902 |
}
|
2903 |
|
2904 |
// Posts
|
3 |
* Plugin Name: VaultPress
|
4 |
* Plugin URI: http://vaultpress.com/?utm_source=plugin-uri&utm_medium=plugin-description&utm_campaign=1.0
|
5 |
* Description: Protect your content, themes, plugins, and settings with <strong>realtime backup</strong> and <strong>automated security scanning</strong> from <a href="http://vaultpress.com/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">VaultPress</a>. Activate, enter your registration key, and never worry again. <a href="http://vaultpress.com/help/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">Need some help?</a>
|
6 |
+
* Version: 2.1.3
|
7 |
* Author: Automattic
|
8 |
* Author URI: http://vaultpress.com/?utm_source=author-uri&utm_medium=plugin-description&utm_campaign=1.0
|
9 |
* License: GPL2+
|
17 |
defined( 'ABSPATH' ) || die();
|
18 |
|
19 |
define( 'VAULTPRESS__MINIMUM_PHP_VERSION', '5.6' );
|
20 |
+
define( 'VAULTPRESS__VERSION', '2.1.3' );
|
21 |
define( 'VAULTPRESS__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
22 |
|
23 |
/**
|
2896 |
|
2897 |
// Usermeta
|
2898 |
if ( $this->is_main_site() ) {
|
2899 |
+
// Keeping these action hooks for backward compatibility
|
2900 |
add_action( 'added_usermeta', array( $this, 'usermeta_action_handler' ), 10, 4 );
|
2901 |
add_action( 'update_usermeta', array( $this, 'usermeta_action_handler' ), 10, 4 );
|
2902 |
add_action( 'delete_usermeta', array( $this, 'usermeta_action_handler' ), 10, 4 );
|
2903 |
+
|
2904 |
+
add_action( 'added_user_meta', array( $this, 'usermeta_action_handler' ), 10, 4 );
|
2905 |
+
add_action( 'update_user_meta', array( $this, 'usermeta_action_handler' ), 10, 4 );
|
2906 |
+
add_action( 'delete_user_meta', array( $this, 'usermeta_action_handler' ), 10, 4 );
|
2907 |
}
|
2908 |
|
2909 |
// Posts
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit373b2f296178305839844a9c51510640::getLoader();
|
vendor/autoload_functions.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp81114e817f576996f858e1e4e18c97c5;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/autoload_packages.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp81114e817f576996f858e1e4e18c97c5;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/class-autoloader-handler.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp81114e817f576996f858e1e4e18c97c5;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/class-classes-handler.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp81114e817f576996f858e1e4e18c97c5;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/class-files-handler.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp81114e817f576996f858e1e4e18c97c5;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/class-plugins-handler.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp81114e817f576996f858e1e4e18c97c5;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/class-version-selector.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp81114e817f576996f858e1e4e18c97c5;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|