Skip to content

Commit

Permalink
Merge pull request #325 from InstaWP/main
Browse files Browse the repository at this point in the history
Release for 0.1.0.63
  • Loading branch information
jaedm97 authored Oct 29, 2024
2 parents 0fb259d + b1c7cf0 commit 7692cfc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/svn-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: New tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/checkout@master
- name: Build # Remove or modify this step as needed
run: |
echo "building"
Expand All @@ -20,4 +20,3 @@ jobs:
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SLUG: instawp-connect
6 changes: 4 additions & 2 deletions includes/class-instawp-tools.php
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,10 @@ public static function process_migration_settings( $migrate_settings = array() )
* staging creation.
* @since 0.1.0.58
*/
$migrate_settings['excluded_paths'][] = 'wp-admin';
$migrate_settings['excluded_paths'][] = 'wp-includes';
if ( empty( $migrate_settings['mode'] ) || 'push' !== $migrate_settings['mode'] ) {
$migrate_settings['excluded_paths'][] = 'wp-admin';
$migrate_settings['excluded_paths'][] = 'wp-includes';
}

// Remove __wp__ folder for WPC file structure
if ( is_dir( $wp_root_dir . '/__wp__' ) ) {
Expand Down
4 changes: 2 additions & 2 deletions instawp-connect.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @wordpress-plugin
* Plugin Name: InstaWP Connect
* Description: 1-click WordPress plugin for Staging, Migrations, Management, Sync and Companion plugin for InstaWP.
* Version: 0.1.0.62
* Version: 0.1.0.63
* Author: InstaWP Team
* Author URI: https://instawp.com/
* License: GPL-3.0+
Expand All @@ -27,7 +27,7 @@

global $wpdb;

defined( 'INSTAWP_PLUGIN_VERSION' ) || define( 'INSTAWP_PLUGIN_VERSION', '0.1.0.62' );
defined( 'INSTAWP_PLUGIN_VERSION' ) || define( 'INSTAWP_PLUGIN_VERSION', '0.1.0.63' );
defined( 'INSTAWP_API_DOMAIN_PROD' ) || define( 'INSTAWP_API_DOMAIN_PROD', 'https://app.instawp.io' );

$wp_plugin_url = WP_PLUGIN_URL . '/' . plugin_basename( __DIR__ ) . '/';
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: clone, migrate, staging, backup, restore
Requires at least: 5.6
Tested up to: 6.6
Requires PHP: 7.0
Stable tag: 0.1.0.62
Stable tag: 0.1.0.63
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html

Expand Down Expand Up @@ -98,6 +98,10 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro

== Changelog ==

= 0.1.0.63 - 29 October 2024 =
- NEW: Pull migration plugin and theme installation fallback to pages migration.
- FIX: Improve pull and push migration scripts.

= 0.1.0.62 - 28 October 2024 =
- FIX: Magic login not working if site is connected via InstaWP Dashboard.

Expand Down

0 comments on commit 7692cfc

Please sign in to comment.