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

Commit d3929e4

Browse files
committed
release v9.1.1: use --no-tablespaces with mysqldump
1 parent b1e21a2 commit d3929e4

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,23 @@
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.1.1]
6+
### Summary
7+
8+
- use --no-tablespaces with mysqldump
9+
510
## [9.1.0]
611
### Summary
712

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

17+
## [9.0.1]
18+
### Summary
19+
20+
- use --no-tablespaces with mysqldump
21+
1222
## [9.0.0]
1323
### Summary
1424

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

42+
## [8.0.2] - 2020-08-21
43+
### Summary
44+
45+
- use --no-tablespaces with mysqldump
46+
3247
## [8.0.1] - 2017-05-15
3348
### Summary
3449

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

4257
[Unreleased]: https://github.com/dkdeploy/dkdeploy-core/compare/master...develop
58+
[9.1.1]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.1.1
4359
[9.1.0]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.1.0
60+
[9.0.1]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.0.1
4461
[9.0.0]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.0.0
62+
[8.0.2]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v8.0.2
4563
[8.0.1]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v8.0.1
4664
[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
@@ -5,7 +5,7 @@ module Core
55
class Version
66
MAJOR = 9
77
MINOR = 1
8-
PATCH = 0
8+
PATCH = 1
99

1010
def self.to_s
1111
[MAJOR, MINOR, PATCH].join('.')

lib/dkdeploy/tasks/db.rake

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ namespace :db do
115115
execute :rm, '-f', remote_dump_file
116116
execute :rm, '-f', remote_zipped_dump_file
117117
execute :mysqldump,
118-
'--no-data', '--skip-set-charset',
118+
'--no-data', '--skip-set-charset', '--no-tablespaces',
119119
"--default-character-set=#{db_settings.fetch('charset')}",
120120
'-u', db_settings.fetch('username'),
121121
'-p',
@@ -150,6 +150,7 @@ namespace :db do
150150
execute :mysqldump,
151151
"--default-character-set=#{db_settings.fetch('charset')}",
152152
'--skip-set-charset',
153+
'--no-tablespaces',
153154
'-u', db_settings.fetch('username'),
154155
'-p',
155156
'-h', db_settings.fetch('host'), '-P', db_settings.fetch('port'), ignore_tables_command_line, db_settings.fetch('name'),
@@ -179,7 +180,7 @@ namespace :db do
179180
execute :rm, '-f', remote_dump_file
180181
execute :rm, '-f', remote_zipped_dump_file
181182
execute :mysqldump,
182-
'--no-data', '--skip-set-charset',
183+
'--no-data', '--skip-set-charset', '--no-tablespaces',
183184
"--default-character-set=#{db_settings.fetch('charset')}",
184185
'-u', db_settings.fetch('username'),
185186
'-p',
@@ -214,7 +215,7 @@ namespace :db do
214215
execute :rm, '-f', remote_file_name
215216
execute :rm, '-f', remote_zipped_file
216217
execute :mysqldump,
217-
'--no-data', '--skip-set-charset',
218+
'--no-data', '--skip-set-charset', '--no-tablespaces',
218219
'--no-create-info', '--skip-comments',
219220
'--skip-extended-insert', '--skip-set-charset',
220221
"--default-character-set=#{db_settings.fetch('charset')}",
@@ -313,7 +314,7 @@ namespace :db do
313314
"--default-character-set=#{db_settings.fetch('charset')}",
314315
'--no-create-info', '--skip-comments',
315316
'--skip-extended-insert', '--skip-set-charset',
316-
'--complete-insert',
317+
'--complete-insert', '--no-tablespaces',
317318
'-u', db_settings.fetch('username'),
318319
'-p',
319320
'-h', db_settings.fetch('host'), '-P', db_settings.fetch('port'),

0 commit comments

Comments
 (0)