Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
release v9.1.1: use --no-tablespaces with mysqldump
Browse files Browse the repository at this point in the history
  • Loading branch information
ncreuschling committed Aug 21, 2020
1 parent b1e21a2 commit d3929e4
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,23 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [9.1.1]
### Summary

- use --no-tablespaces with mysqldump

## [9.1.0]
### Summary

- Use correct capistrano context at copy scm
- Update capistrano 3.10.1
- Always execute tasks for each server or at rollback

## [9.0.1]
### Summary

- use --no-tablespaces with mysqldump

## [9.0.0]
### Summary

Expand All @@ -29,6 +39,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- remove TYPO3 specific configuration
- change some SCM roles from app to all

## [8.0.2] - 2020-08-21
### Summary

- use --no-tablespaces with mysqldump

## [8.0.1] - 2017-05-15
### Summary

Expand All @@ -40,7 +55,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- first public release

[Unreleased]: https://github.com/dkdeploy/dkdeploy-core/compare/master...develop
[9.1.1]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.1.1
[9.1.0]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.1.0
[9.0.1]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.0.1
[9.0.0]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.0.0
[8.0.2]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v8.0.2
[8.0.1]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v8.0.1
[8.0.0]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v8.0.0
2 changes: 1 addition & 1 deletion lib/dkdeploy/core/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Core
class Version
MAJOR = 9
MINOR = 1
PATCH = 0
PATCH = 1

def self.to_s
[MAJOR, MINOR, PATCH].join('.')
Expand Down
9 changes: 5 additions & 4 deletions lib/dkdeploy/tasks/db.rake
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ namespace :db do
execute :rm, '-f', remote_dump_file
execute :rm, '-f', remote_zipped_dump_file
execute :mysqldump,
'--no-data', '--skip-set-charset',
'--no-data', '--skip-set-charset', '--no-tablespaces',
"--default-character-set=#{db_settings.fetch('charset')}",
'-u', db_settings.fetch('username'),
'-p',
Expand Down Expand Up @@ -150,6 +150,7 @@ namespace :db do
execute :mysqldump,
"--default-character-set=#{db_settings.fetch('charset')}",
'--skip-set-charset',
'--no-tablespaces',
'-u', db_settings.fetch('username'),
'-p',
'-h', db_settings.fetch('host'), '-P', db_settings.fetch('port'), ignore_tables_command_line, db_settings.fetch('name'),
Expand Down Expand Up @@ -179,7 +180,7 @@ namespace :db do
execute :rm, '-f', remote_dump_file
execute :rm, '-f', remote_zipped_dump_file
execute :mysqldump,
'--no-data', '--skip-set-charset',
'--no-data', '--skip-set-charset', '--no-tablespaces',
"--default-character-set=#{db_settings.fetch('charset')}",
'-u', db_settings.fetch('username'),
'-p',
Expand Down Expand Up @@ -214,7 +215,7 @@ namespace :db do
execute :rm, '-f', remote_file_name
execute :rm, '-f', remote_zipped_file
execute :mysqldump,
'--no-data', '--skip-set-charset',
'--no-data', '--skip-set-charset', '--no-tablespaces',
'--no-create-info', '--skip-comments',
'--skip-extended-insert', '--skip-set-charset',
"--default-character-set=#{db_settings.fetch('charset')}",
Expand Down Expand Up @@ -313,7 +314,7 @@ namespace :db do
"--default-character-set=#{db_settings.fetch('charset')}",
'--no-create-info', '--skip-comments',
'--skip-extended-insert', '--skip-set-charset',
'--complete-insert',
'--complete-insert', '--no-tablespaces',
'-u', db_settings.fetch('username'),
'-p',
'-h', db_settings.fetch('host'), '-P', db_settings.fetch('port'),
Expand Down

0 comments on commit d3929e4

Please sign in to comment.