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

Commit f6b0f40

Browse files
committed
release v9.2.4: use --no-tablespaces with mysqldump
1 parent 980baa6 commit f6b0f40

File tree

3 files changed

+33
-7
lines changed

3 files changed

+33
-7
lines changed

CHANGELOG.md

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [9.2.4] - 2020-08-21
6+
### Summary
7+
8+
- use --no-tablespaces with mysqldump
9+
510
## [9.2.3] - 2019-05-29
611
### Summary
712

@@ -29,14 +34,24 @@ This project adheres to [Semantic Versioning](http://semver.org/).
2934
- we no longer remove maintenance_config_file_path forcefully to make failures more apparent
3035
- improved shell independence
3136

32-
## [9.1.0] - 2018-02-09
37+
## [9.1.1]
38+
### Summary
39+
40+
- use --no-tablespaces with mysqldump
41+
42+
## [9.1.0]
3343
### Summary
3444

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

39-
## [9.0.0] 2017-10-16
49+
## [9.0.1]
50+
### Summary
51+
52+
- use --no-tablespaces with mysqldump
53+
54+
## [9.0.0]
4055
### Summary
4156

4257
- tasks around MySQL slow log
@@ -56,6 +71,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
5671
- remove TYPO3 specific configuration
5772
- change some SCM roles from app to all
5873

74+
## [8.0.2] - 2020-08-21
75+
### Summary
76+
77+
- use --no-tablespaces with mysqldump
78+
5979
## [8.0.1] - 2017-05-15
6080
### Summary
6181

@@ -67,10 +87,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
6787
- first public release
6888

6989
[Unreleased]: https://github.com/dkdeploy/dkdeploy-core/compare/master...develop
90+
[9.2.4]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.2.4
91+
[9.2.3]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.2.3
7092
[9.2.2]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.2.2
7193
[9.2.1]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.2.1
7294
[9.2.0]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.2.0
95+
[9.1.1]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.1.1
7396
[9.1.0]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.1.0
97+
[9.0.1]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.0.1
7498
[9.0.0]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.0.0
99+
[8.0.2]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v8.0.2
75100
[8.0.1]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v8.0.1
76101
[8.0.0]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v8.0.0

lib/dkdeploy/core/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module Core
77
class Version
88
MAJOR = 9
99
MINOR = 2
10-
PATCH = 3
10+
PATCH = 4
1111

1212
def self.to_s
1313
[MAJOR, MINOR, PATCH].join('.')

lib/dkdeploy/tasks/db.rake

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ namespace :db do
117117
execute :rm, '-f', remote_dump_file
118118
execute :rm, '-f', remote_zipped_dump_file
119119
execute :mysqldump,
120-
'--no-data', '--skip-set-charset',
120+
'--no-data', '--skip-set-charset', '--no-tablespaces',
121121
"--default-character-set=#{db_settings.fetch('charset')}",
122122
'-u', db_settings.fetch('username'),
123123
'-p',
@@ -152,6 +152,7 @@ namespace :db do
152152
execute :mysqldump,
153153
"--default-character-set=#{db_settings.fetch('charset')}",
154154
'--skip-set-charset',
155+
'--no-tablespaces',
155156
'-u', db_settings.fetch('username'),
156157
'-p',
157158
'-h', db_settings.fetch('host'), '-P', db_settings.fetch('port'), ignore_tables_command_line, db_settings.fetch('name'),
@@ -181,7 +182,7 @@ namespace :db do
181182
execute :rm, '-f', remote_dump_file
182183
execute :rm, '-f', remote_zipped_dump_file
183184
execute :mysqldump,
184-
'--no-data', '--skip-set-charset',
185+
'--no-data', '--skip-set-charset', '--no-tablespaces',
185186
"--default-character-set=#{db_settings.fetch('charset')}",
186187
'-u', db_settings.fetch('username'),
187188
'-p',
@@ -216,7 +217,7 @@ namespace :db do
216217
execute :rm, '-f', remote_file_name
217218
execute :rm, '-f', remote_zipped_file
218219
execute :mysqldump,
219-
'--no-data', '--skip-set-charset',
220+
'--no-data', '--skip-set-charset', '--no-tablespaces',
220221
'--no-create-info', '--skip-comments',
221222
'--skip-extended-insert', '--skip-set-charset',
222223
"--default-character-set=#{db_settings.fetch('charset')}",
@@ -315,7 +316,7 @@ namespace :db do
315316
"--default-character-set=#{db_settings.fetch('charset')}",
316317
'--no-create-info', '--skip-comments',
317318
'--skip-extended-insert', '--skip-set-charset',
318-
'--complete-insert',
319+
'--complete-insert', '--no-tablespaces',
319320
'-u', db_settings.fetch('username'),
320321
'-p',
321322
'-h', db_settings.fetch('host'), '-P', db_settings.fetch('port'),

0 commit comments

Comments
 (0)