Skip to content

Commit

Permalink
Merge branch 'release/1.2.10'
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Nov 23, 2018
2 parents 3b088e8 + 7052d6f commit ca4a59d
Show file tree
Hide file tree
Showing 3 changed files with 8 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.10 - 2018.11.23
### Changed
* Don’t dump permission/ownership info for postgres

## 1.2.9 - 2018.10.29
### Changed
* Add `templatecachequeries` to the db tables excluded from database dumps
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.9",
"version": "1.2.10",
"keywords": [
"craft",
"craftcms",
Expand Down
3 changes: 3 additions & 0 deletions scripts/common/common_pgsql.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ PG_DUMP_ADDITIONAL_ARGS=""
PG_DUMP_ADDITIONAL_ARGS+="--no-password "
PG_DUMP_ADDITIONAL_ARGS+="--if-exists "
PG_DUMP_ADDITIONAL_ARGS+="--clean "
PG_DUMP_ADDITIONAL_ARGS+="--no-owner "
PG_DUMP_ADDITIONAL_ARGS+="--no-privileges "
PG_DUMP_ADDITIONAL_ARGS+="--no-acl "

# Arguments to dump just the data
PG_DUMP_ARGS=""
Expand Down

0 comments on commit ca4a59d

Please sign in to comment.