Skip to content

Commit 67e73ad

Browse files
committed
Merge branch 'release/v1.7.2'
2 parents 8373d06 + 5d427ad commit 67e73ad

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [1.7.2] - 2021-08-03
10+
### Changed
11+
- Reverted full WordPress regex find-replace as the domain is used in the main site config not the full url
12+
13+
914
## [1.7.1] - 2021-07-30
1015
### Changed
1116
- Database dump no includes the --no-tablespaces option to stop PROCESS provilege error. (Requires n98-magerun >4.3.0).

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.1"
7+
# version="1.7.2"
88
#
99
# This is an optional arguments-only example of Argbash potential
1010
#

README.md

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

33
## About
44
A script to copy over a production database to another server, also has the ability to copy across imagery.

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.1"
10+
echo "v1.7.2"
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.1"
2+
version="1.7.2"
33

44
die()
55
{

utils/remote_backup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ fi
5656
5757
if [ $_arg_wordpress == 'on' ]; then
5858
cd wp
59-
wp search-replace 'http[s]?:\/\/(?:www\.)?$old_domain' 'https://$new_domain' --regex --export | gzip > $remote_backup_dir/latest-wp.sql.gz
59+
wp search-replace '$old_domain' '$new_domain' --export | gzip > $remote_backup_dir/latest-wp.sql.gz
6060
fi
6161
ENDSSH

0 commit comments

Comments
 (0)