File tree Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.2.1] - 2020-07-10
10
+ ### Changed
11
+ - Fixed message spacing issue.
12
+ - Added version number to the menu help option.
13
+ - Added reminder to be in a Magento 2 directory before trying to run the command.
14
+
15
+ ### Fixed
16
+ - Installation link was pointing to old version.
17
+
18
+
9
19
## [ 1.2.0] - 2020-07-10
10
20
### Added
11
21
- Added menu option to allow full customer and order backups.
Original file line number Diff line number Diff line change 1
- # Magento 2 Production DB Sync v1.2.0
1
+ # Magento 2 Production DB Sync v1.2.1
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.
@@ -14,7 +14,7 @@ Currently the script is configured to attempt Magento 2 and WordPress database m
14
14
15
15
## Installing and Updating
16
16
To install or update the script run the following curl script
17
- ``` curl -o- https://raw.githubusercontent.com/clivewalkden/bash-magento2-db-sync/v1.2.0 /install.sh | bash ```
17
+ ``` curl -o- https://raw.githubusercontent.com/clivewalkden/bash-magento2-db-sync/v1.2.1 /install.sh | bash ```
18
18
19
19
## Usage
20
20
To copy over a production database first get a shell on the system you want to copy the data to.
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ dbsync_install_dir() {
7
7
}
8
8
9
9
dbsync_latest_version () {
10
- echo " v1.2.0 "
10
+ echo " v1.2.1 "
11
11
}
12
12
13
13
#
Original file line number Diff line number Diff line change @@ -25,10 +25,12 @@ _arg_full="off"
25
25
26
26
dbsynchelp () {
27
27
cat << -HEREDOC
28
- Magento 2 DB Sync
28
+ Magento 2 DB Sync v1.2.1
29
29
30
30
Syncronize a database from production to staging, testing or development environments.
31
31
32
+ Make sure you are in a Magento 2 directory before trying to run any scripts.
33
+
32
34
Usage: db-sync.sh [-f|--(no-)full] [-h|--help]
33
35
Options:
34
36
-f, --full, --no-full: full database dump (off by default)
You can’t perform that action at this time.
0 commit comments