File tree Expand file tree Collapse file tree 6 files changed +10
-5
lines changed Expand file tree Collapse file tree 6 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.7.3] - 2021-09-21
10
+ ### Changed
11
+ - Added the ` --all-tables ` flag to the WordPress database backup as some tables were missed without it
12
+
13
+
9
14
## [ 1.7.2] - 2021-08-03
10
15
### Changed
11
16
- Reverted full WordPress regex find-replace as the domain is used in the main site config not the full url
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Use the below to generate the menu.sh file from the site [https://argbash.io/gen
4
4
5
5
```
6
6
#!/bin/bash
7
- # version="1.7.2 "
7
+ # version="1.7.3 "
8
8
#
9
9
# This is an optional arguments-only example of Argbash potential
10
10
#
Original file line number Diff line number Diff line change 1
- # Magento 2 Production DB Sync v1.7.2
1
+ # Magento 2 Production DB Sync v1.7.3
2
2
3
3
## About
4
4
A script to copy over a production database to another server, also has the ability to copy across imagery.
Original file line number Diff line number Diff line change 7
7
}
8
8
9
9
dbsync_latest_version () {
10
- echo " v1.7.2 "
10
+ echo " v1.7.3 "
11
11
}
12
12
13
13
#
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- version=" 1.7.2 "
2
+ version=" 1.7.3 "
3
3
4
4
die ()
5
5
{
Original file line number Diff line number Diff line change 56
56
57
57
if [ $_arg_wordpress == 'on' ]; then
58
58
cd wp
59
- wp search-replace '$old_domain ' '$new_domain ' --export | gzip > $remote_backup_dir /latest-wp.sql.gz
59
+ wp search-replace '$old_domain ' '$new_domain ' --all-tables -- export | gzip > $remote_backup_dir /latest-wp.sql.gz
60
60
fi
61
61
ENDSSH
You can’t perform that action at this time.
0 commit comments