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

Commit 2e5cad9

Browse files
committed
release v9.0.1: use --no-tablespaces with mysqldump
1 parent 64bb2e2 commit 2e5cad9

3 files changed

Lines changed: 18 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 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.0.1]
6+
### Summary
7+
8+
- use --no-tablespaces with mysqldump
9+
510
## [9.0.0]
611
### Summary
712

@@ -22,6 +27,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
2227
- remove TYPO3 specific configuration
2328
- change some SCM roles from app to all
2429

30+
## [8.0.2] - 2020-08-21
31+
### Summary
32+
33+
- use --no-tablespaces with mysqldump
34+
2535
## [8.0.1] - 2017-05-15
2636
### Summary
2737

@@ -33,6 +43,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
3343
- first public release
3444

3545
[Unreleased]: https://github.com/dkdeploy/dkdeploy-core/compare/master...develop
46+
[9.0.1]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.0.1
3647
[9.0.0]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.0.0
48+
[8.0.2]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v8.0.2
3749
[8.0.1]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v8.0.1
3850
[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 = 0
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)