Skip to content

Commit

Permalink
Merge branch 'release/1.2.9'
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Oct 29, 2018
2 parents a2b4ab5 + 5e46812 commit 3b088e8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Craft-Scripts Changelog

## 1.2.9 - 2018.10.29
### Changed
* Add `templatecachequeries` to the db tables excluded from database dumps

## 1.2.8 - 2018.08.20
### Changed
* Refactor out to functions thanks to `preposthuman `
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ There are several scripts included in `craft-scripts`, each of which perform dif

Craft-Scripts works with both Craft 2.x & Craft 3.x, and has built-in support for both `mysql` as well as `postgres` databases.

## Installation
* Copy the scripts folder into the root directory of your Craft CMS project
* Duplicate the example.env.sh file, and rename it to .env.sh
* Add .env.sh to your .gitignore file
* Then open up the .env.sh file into your favorite editor, and replace REPLACE_ME with the appropriate settings.

## Upgrading

To upgrade to a later version of Craft-Scripts, replace the contents of your `scripts` folder with the newest Craft-Scripts, while preserving your existing `.env.sh` file.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nystudio107/craft-scripts",
"description": "Shell scripts to manage database backups, asset backups, file permissions, asset syncing, cache clearing, and database syncing between Craft CMS environments",
"version": "1.2.8",
"version": "1.2.9",
"keywords": [
"craft",
"craftcms",
Expand Down
1 change: 1 addition & 0 deletions scripts/common/common_db.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ EXCLUDED_DB_TABLES=(
"templatecaches"
"templatecachecriteria"
"templatecacheelements"
"templatecachequeries"
)

TMP_DB_DUMP_CREDS_PATH="/tmp/craftscripts.creds"

0 comments on commit 3b088e8

Please sign in to comment.