Skip to content

Commit 0a8af50

Browse files
committed
Merge tag 'v1.7.1' into development
Changed - Database dump no includes the --no-tablespaces option to stop PROCESS provilege error. (Requires n98-magerun >4.3.0). - WordPress backup now runs search-replace on remote host export. - Magento database import now uses n98-magerun to import database. - WordPress import now uses wp-cli to import database. - Tidy up of unneeded variables.
2 parents 2b600a1 + 8373d06 commit 0a8af50

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.7.1] - 2021-07-30
910
### Changed
1011
- Database dump no includes the --no-tablespaces option to stop PROCESS provilege error. (Requires n98-magerun >4.3.0).
1112
- WordPress backup now runs search-replace on remote host export.

MENU.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Use the below to generate the menu.sh file from the site [https://argbash.io/gen
44

55
```
66
#!/bin/bash
7-
# version="1.7.0"
7+
# version="1.7.1"
88
#
99
# This is an optional arguments-only example of Argbash potential
1010
#

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Magento 2 Production DB Sync v1.7.0
1+
# Magento 2 Production DB Sync v1.7.1
22

33
## About
44
A script to copy over a production database to another server, also has the ability to copy across imagery.
@@ -8,6 +8,7 @@ Currently the script is configured to attempt Magento 2 and WordPress database m
88
## Requirements
99
- You need curl installed locally.
1010
- The excellent [n98-magerun2](https://github.com/netz98/n98-magerun2) needs to be installed on both the local machine and the production machine. (Needs to be executable as n98-magerun).
11+
- WP-CLI needs to be installed when working with WordPress as well.
1112
- MySQL (or equivalent) needs to be installed on both the local machine and the server (obviously).
1213
- Magento 2 needs to be installed and configured on both the local and the host machine.
1314
- rsync needs to be installed locally.

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
}
88

99
dbsync_latest_version() {
10-
echo "v1.7.0"
10+
echo "v1.7.1"
1111
}
1212

1313
#

utils/menu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
version="1.7.0"
2+
version="1.7.1"
33

44
die()
55
{

0 commit comments

Comments
 (0)