WP Migrate DB - Version 2.3.2

Version Description

Download this release

Release Info

Developer deliciousbrains
Plugin Icon 128x128 WP Migrate DB
Version 2.3.2
Comparing to
See all releases

Code changes from version 2.3.1 to 2.3.2

compatibility/wp-migrate-db-pro-compatibility.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Plugin Name: WP Migrate DB Pro Compatibility
4
  Plugin URI: http://deliciousbrains.com/wp-migrate-db-pro/
5
  Description: Prevents 3rd party plugins from being loaded during WP Migrate DB specific operations
6
  Author: Delicious Brains
1
  <?php
2
  /*
3
+ Plugin Name: WP Migrate Lite Compatibility
4
  Plugin URI: http://deliciousbrains.com/wp-migrate-db-pro/
5
  Description: Prevents 3rd party plugins from being loaded during WP Migrate DB specific operations
6
  Author: Delicious Brains
compatibility/wp-migrate-db-pro-compatibility.php-e ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Plugin Name: ##PLUGIN_NAME_PLACEHOLDER##
4
+ Plugin URI: http://deliciousbrains.com/wp-migrate-db-pro/
5
+ Description: Prevents 3rd party plugins from being loaded during WP Migrate DB specific operations
6
+ Author: Delicious Brains
7
+ Version: 1.2
8
+ Author URI: http://deliciousbrains.com
9
+ */
10
+
11
+ defined( 'ABSPATH' ) || exit;
12
+
13
+ if ( ! version_compare( PHP_VERSION, '5.4', '>=' ) ) {
14
+ return;
15
+ }
16
+
17
+ $GLOBALS['wpmdb_compatibility']['active'] = true;
18
+
19
+ if ( defined( 'WP_PLUGIN_DIR' ) ) {
20
+ $plugins_dir = trailingslashit( WP_PLUGIN_DIR );
21
+
22
+ } else if ( defined( 'WPMU_PLUGIN_DIR' ) ) {
23
+ $plugins_dir = trailingslashit( WPMU_PLUGIN_DIR );
24
+
25
+ } else if ( defined( 'WP_CONTENT_DIR' ) ) {
26
+ $plugins_dir = trailingslashit( WP_CONTENT_DIR ) . 'plugins/';
27
+
28
+ } else {
29
+ $plugins_dir = plugin_dir_path( __FILE__ ) . '../plugins/';
30
+ }
31
+
32
+ $compat_class_path = 'class/Common/Compatibility/Compatibility.php';
33
+ $compat_class_name = 'DeliciousBrains\WPMDB\Common\Compatibility\Compatibility';
34
+ $wpmdbpro_compatibility_class = $plugins_dir . 'wp-migrate-db-pro/' . $compat_class_path;
35
+ $wpmdb_compatibility_class = $plugins_dir . 'wp-migrate-db/' . $compat_class_path;
36
+
37
+ if ( file_exists( $wpmdbpro_compatibility_class ) ) {
38
+ include_once $wpmdbpro_compatibility_class;
39
+ } elseif ( file_exists( $wpmdb_compatibility_class ) ) {
40
+ include_once $wpmdb_compatibility_class;
41
+ }
42
+
43
+ if ( class_exists( $compat_class_name ) ) {
44
+ new $compat_class_name;
45
+ }
languages/wp-migrate-db-en.pot CHANGED
@@ -8,7 +8,7 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-migrate-db-pro\n"
10
  "Report-Msgid-Bugs-To: nom@deliciousbrains.com\n"
11
- "POT-Creation-Date: 2022-05-19 14:03-0400\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
8
  msgstr ""
9
  "Project-Id-Version: wp-migrate-db-pro\n"
10
  "Report-Msgid-Bugs-To: nom@deliciousbrains.com\n"
11
+ "POT-Creation-Date: 2022-07-11 12:05-0400\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: Export WordPress, Migrate WordPress, WordPress database plugin, WordPress
5
  Requires at least: 5.2
6
  Tested up to: 6.0
7
  Requires PHP: 5.6
8
- Stable tag: 2.3.1
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -186,6 +186,9 @@ Find out all relevant [pricing information over on our official site](https://de
186
 
187
  == Changelog ==
188
 
 
 
 
189
  = WP Migrate 2.3.1 - 2022-05-19 =
190
  * Bug Fix: WP Migrate no longer initializes on pages outside of WP Admin in order to improve front-end performance
191
 
5
  Requires at least: 5.2
6
  Tested up to: 6.0
7
  Requires PHP: 5.6
8
+ Stable tag: 2.3.2
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
186
 
187
  == Changelog ==
188
 
189
+ = WP Migrate 2.3.2 - 2022-07-11 =
190
+ * Bug Fix: Activating or upgrading WP Migrate Lite no longer results in the following error: “The plugin does not have a valid header.”
191
+
192
  = WP Migrate 2.3.1 - 2022-05-19 =
193
  * Bug Fix: WP Migrate no longer initializes on pages outside of WP Admin in order to improve front-end performance
194
 
vendor/composer/InstalledVersions.php CHANGED
@@ -5,7 +5,7 @@ namespace DeliciousBrains\WPMDB\Container\Composer;
5
  use DeliciousBrains\WPMDB\Container\Composer\Semver\VersionParser;
6
  class InstalledVersions
7
  {
8
- private static $installed = array('root' => array('pretty_version' => 'dev-develop', 'version' => 'dev-develop', 'aliases' => array(), 'reference' => '5d3732d6eca8b34cec8538be00bd15d9e2c613e2', 'name' => 'deliciousbrains/composer-tmp'), 'versions' => array('container-interop/container-interop' => array('pretty_version' => '1.2.0', 'version' => '1.2.0.0', 'aliases' => array(), 'reference' => '79cbf1341c22ec75643d841642dd5d6acd83bdb8'), 'container-interop/container-interop-implementation' => array('provided' => array(0 => '^1.0')), 'deliciousbrains/composer-tmp' => array('pretty_version' => 'dev-develop', 'version' => 'dev-develop', 'aliases' => array(), 'reference' => '5d3732d6eca8b34cec8538be00bd15d9e2c613e2'), 'doctrine/cache' => array('pretty_version' => 'v1.4.0', 'version' => '1.4.0.0', 'aliases' => array(), 'reference' => '2346085d2b027b233ae1d5de59b07440b9f288c8'), 'mnapoli/php-di' => array('replaced' => array(0 => '*')), 'php-di/invoker' => array('pretty_version' => '1.3.3', 'version' => '1.3.3.0', 'aliases' => array(), 'reference' => '1f4ca63b9abc66109e53b255e465d0ddb5c2e3f7'), 'php-di/php-di' => array('pretty_version' => '5.4.0', 'version' => '5.4.0.0', 'aliases' => array(), 'reference' => 'e348393488fa909e4bc0707ba5c9c44cd602a1cb'), 'php-di/phpdoc-reader' => array('pretty_version' => '2.1.1', 'version' => '2.1.1.0', 'aliases' => array(), 'reference' => '15678f7451c020226807f520efb867ad26fbbfcf'), 'phpoption/phpoption' => array('pretty_version' => '1.7.5', 'version' => '1.7.5.0', 'aliases' => array(), 'reference' => '994ecccd8f3283ecf5ac33254543eb0ac946d525'), 'psr/container' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'aliases' => array(), 'reference' => 'b7ce3b176482dbbc1245ebf52b181af44c2cf55f'), 'symfony/polyfill-ctype' => array('pretty_version' => 'v1.19.0', 'version' => '1.19.0.0', 'aliases' => array(), 'reference' => 'aed596913b70fae57be53d86faa2e9ef85a2297b'), 'vlucas/phpdotenv' => array('pretty_version' => 'v4.2.0', 'version' => '4.2.0.0', 'aliases' => array(), 'reference' => 'da64796370fc4eb03cc277088f6fede9fde88482')));
9
  public static function getInstalledPackages()
10
  {
11
  return \array_keys(self::$installed['versions']);
5
  use DeliciousBrains\WPMDB\Container\Composer\Semver\VersionParser;
6
  class InstalledVersions
7
  {
8
+ private static $installed = array('root' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'aliases' => array(), 'reference' => '1e6cf00000b6f6a943092bc3008fdf1367b318d5', 'name' => 'deliciousbrains/composer-tmp'), 'versions' => array('container-interop/container-interop' => array('pretty_version' => '1.2.0', 'version' => '1.2.0.0', 'aliases' => array(), 'reference' => '79cbf1341c22ec75643d841642dd5d6acd83bdb8'), 'container-interop/container-interop-implementation' => array('provided' => array(0 => '^1.0')), 'deliciousbrains/composer-tmp' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'aliases' => array(), 'reference' => '1e6cf00000b6f6a943092bc3008fdf1367b318d5'), 'doctrine/cache' => array('pretty_version' => 'v1.4.0', 'version' => '1.4.0.0', 'aliases' => array(), 'reference' => '2346085d2b027b233ae1d5de59b07440b9f288c8'), 'mnapoli/php-di' => array('replaced' => array(0 => '*')), 'php-di/invoker' => array('pretty_version' => '1.3.3', 'version' => '1.3.3.0', 'aliases' => array(), 'reference' => '1f4ca63b9abc66109e53b255e465d0ddb5c2e3f7'), 'php-di/php-di' => array('pretty_version' => '5.4.0', 'version' => '5.4.0.0', 'aliases' => array(), 'reference' => 'e348393488fa909e4bc0707ba5c9c44cd602a1cb'), 'php-di/phpdoc-reader' => array('pretty_version' => '2.1.1', 'version' => '2.1.1.0', 'aliases' => array(), 'reference' => '15678f7451c020226807f520efb867ad26fbbfcf'), 'phpoption/phpoption' => array('pretty_version' => '1.7.5', 'version' => '1.7.5.0', 'aliases' => array(), 'reference' => '994ecccd8f3283ecf5ac33254543eb0ac946d525'), 'psr/container' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'aliases' => array(), 'reference' => 'b7ce3b176482dbbc1245ebf52b181af44c2cf55f'), 'symfony/polyfill-ctype' => array('pretty_version' => 'v1.19.0', 'version' => '1.19.0.0', 'aliases' => array(), 'reference' => 'aed596913b70fae57be53d86faa2e9ef85a2297b'), 'vlucas/phpdotenv' => array('pretty_version' => 'v4.2.0', 'version' => '4.2.0.0', 'aliases' => array(), 'reference' => 'da64796370fc4eb03cc277088f6fede9fde88482')));
9
  public static function getInstalledPackages()
10
  {
11
  return \array_keys(self::$installed['versions']);
vendor/composer/installed.php CHANGED
@@ -2,4 +2,4 @@
2
 
3
  namespace DeliciousBrains\WPMDB\Container;
4
 
5
- return array('root' => array('pretty_version' => 'dev-develop', 'version' => 'dev-develop', 'aliases' => array(), 'reference' => '5d3732d6eca8b34cec8538be00bd15d9e2c613e2', 'name' => 'deliciousbrains/composer-tmp'), 'versions' => array('container-interop/container-interop' => array('pretty_version' => '1.2.0', 'version' => '1.2.0.0', 'aliases' => array(), 'reference' => '79cbf1341c22ec75643d841642dd5d6acd83bdb8'), 'container-interop/container-interop-implementation' => array('provided' => array(0 => '^1.0')), 'deliciousbrains/composer-tmp' => array('pretty_version' => 'dev-develop', 'version' => 'dev-develop', 'aliases' => array(), 'reference' => '5d3732d6eca8b34cec8538be00bd15d9e2c613e2'), 'doctrine/cache' => array('pretty_version' => 'v1.4.0', 'version' => '1.4.0.0', 'aliases' => array(), 'reference' => '2346085d2b027b233ae1d5de59b07440b9f288c8'), 'mnapoli/php-di' => array('replaced' => array(0 => '*')), 'php-di/invoker' => array('pretty_version' => '1.3.3', 'version' => '1.3.3.0', 'aliases' => array(), 'reference' => '1f4ca63b9abc66109e53b255e465d0ddb5c2e3f7'), 'php-di/php-di' => array('pretty_version' => '5.4.0', 'version' => '5.4.0.0', 'aliases' => array(), 'reference' => 'e348393488fa909e4bc0707ba5c9c44cd602a1cb'), 'php-di/phpdoc-reader' => array('pretty_version' => '2.1.1', 'version' => '2.1.1.0', 'aliases' => array(), 'reference' => '15678f7451c020226807f520efb867ad26fbbfcf'), 'phpoption/phpoption' => array('pretty_version' => '1.7.5', 'version' => '1.7.5.0', 'aliases' => array(), 'reference' => '994ecccd8f3283ecf5ac33254543eb0ac946d525'), 'psr/container' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'aliases' => array(), 'reference' => 'b7ce3b176482dbbc1245ebf52b181af44c2cf55f'), 'symfony/polyfill-ctype' => array('pretty_version' => 'v1.19.0', 'version' => '1.19.0.0', 'aliases' => array(), 'reference' => 'aed596913b70fae57be53d86faa2e9ef85a2297b'), 'vlucas/phpdotenv' => array('pretty_version' => 'v4.2.0', 'version' => '4.2.0.0', 'aliases' => array(), 'reference' => 'da64796370fc4eb03cc277088f6fede9fde88482')));
2
 
3
  namespace DeliciousBrains\WPMDB\Container;
4
 
5
+ return array('root' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'aliases' => array(), 'reference' => '1e6cf00000b6f6a943092bc3008fdf1367b318d5', 'name' => 'deliciousbrains/composer-tmp'), 'versions' => array('container-interop/container-interop' => array('pretty_version' => '1.2.0', 'version' => '1.2.0.0', 'aliases' => array(), 'reference' => '79cbf1341c22ec75643d841642dd5d6acd83bdb8'), 'container-interop/container-interop-implementation' => array('provided' => array(0 => '^1.0')), 'deliciousbrains/composer-tmp' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'aliases' => array(), 'reference' => '1e6cf00000b6f6a943092bc3008fdf1367b318d5'), 'doctrine/cache' => array('pretty_version' => 'v1.4.0', 'version' => '1.4.0.0', 'aliases' => array(), 'reference' => '2346085d2b027b233ae1d5de59b07440b9f288c8'), 'mnapoli/php-di' => array('replaced' => array(0 => '*')), 'php-di/invoker' => array('pretty_version' => '1.3.3', 'version' => '1.3.3.0', 'aliases' => array(), 'reference' => '1f4ca63b9abc66109e53b255e465d0ddb5c2e3f7'), 'php-di/php-di' => array('pretty_version' => '5.4.0', 'version' => '5.4.0.0', 'aliases' => array(), 'reference' => 'e348393488fa909e4bc0707ba5c9c44cd602a1cb'), 'php-di/phpdoc-reader' => array('pretty_version' => '2.1.1', 'version' => '2.1.1.0', 'aliases' => array(), 'reference' => '15678f7451c020226807f520efb867ad26fbbfcf'), 'phpoption/phpoption' => array('pretty_version' => '1.7.5', 'version' => '1.7.5.0', 'aliases' => array(), 'reference' => '994ecccd8f3283ecf5ac33254543eb0ac946d525'), 'psr/container' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'aliases' => array(), 'reference' => 'b7ce3b176482dbbc1245ebf52b181af44c2cf55f'), 'symfony/polyfill-ctype' => array('pretty_version' => 'v1.19.0', 'version' => '1.19.0.0', 'aliases' => array(), 'reference' => 'aed596913b70fae57be53d86faa2e9ef85a2297b'), 'vlucas/phpdotenv' => array('pretty_version' => 'v4.2.0', 'version' => '4.2.0.0', 'aliases' => array(), 'reference' => 'da64796370fc4eb03cc277088f6fede9fde88482')));
wp-migrate-db.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Migrate Lite
4
  Plugin URI: https://wordpress.org/plugins/wp-migrate-db/
5
  Description: Exports your database as a MySQL data dump (much like phpMyAdmin), does a find and replace on URLs and file paths, then allows you to save it to your computer.
6
  Author: Delicious Brains
7
- Version: 2.3.1
8
  Author URI: https://deliciousbrains.com/?utm_campaign=WP%2BMigrate%2BDB%2BPro%2BUpgrade&utm_source=wordpress.org&utm_medium=free%2Bplugin%2Blisting
9
  Network: True
10
  Text Domain: wp-migrate-db
@@ -26,7 +26,7 @@ defined( 'ABSPATH' ) || exit;
26
 
27
  $wpmdb_base_path = dirname( __FILE__ );
28
 
29
- $GLOBALS['wpmdb_meta']['wp-migrate-db']['version'] = '2.3.1';
30
 
31
 
32
  $plugin_root = '/';
4
  Plugin URI: https://wordpress.org/plugins/wp-migrate-db/
5
  Description: Exports your database as a MySQL data dump (much like phpMyAdmin), does a find and replace on URLs and file paths, then allows you to save it to your computer.
6
  Author: Delicious Brains
7
+ Version: 2.3.2
8
  Author URI: https://deliciousbrains.com/?utm_campaign=WP%2BMigrate%2BDB%2BPro%2BUpgrade&utm_source=wordpress.org&utm_medium=free%2Bplugin%2Blisting
9
  Network: True
10
  Text Domain: wp-migrate-db
26
 
27
  $wpmdb_base_path = dirname( __FILE__ );
28
 
29
+ $GLOBALS['wpmdb_meta']['wp-migrate-db']['version'] = '2.3.2';
30
 
31
 
32
  $plugin_root = '/';