VaultPress - Version 2.1.3

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 Icon 128x128 VaultPress
Version 2.1.3
Comparing to
See all releases

Code changes from version 2.1.2 to 2.1.3

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.2
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.2 =
53
 
54
- * Release date: August 4, 2020
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&amp;utm_medium=plugin-description&amp;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&amp;utm_medium=plugin-description&amp;utm_campaign=1.0" rel="nofollow">Need some help?</a>
6
- * Version: 2.1.2
7
  * Author: Automattic
8
  * Author URI: http://vaultpress.com/?utm_source=author-uri&amp;utm_medium=plugin-description&amp;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.2' );
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&amp;utm_medium=plugin-description&amp;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&amp;utm_medium=plugin-description&amp;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&amp;utm_medium=plugin-description&amp;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&amp;utm_medium=plugin-description&amp;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 ComposerAutoloaderInitf733b826e082db99519415f102671fe9::getLoader();
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\jp8e4bd021160ba30631028144cededd1f;
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\jp8e4bd021160ba30631028144cededd1f;
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\jp8e4bd021160ba30631028144cededd1f;
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\jp8e4bd021160ba30631028144cededd1f;
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\jp8e4bd021160ba30631028144cededd1f;
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\jp8e4bd021160ba30631028144cededd1f;
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\jp8e4bd021160ba30631028144cededd1f;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp81114e817f576996f858e1e4e18c97c5;
9
 
10
  // phpcs:ignore
11