dkdeploy-core 9.1.0 → 9.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 01de919730c9238f0ddf22089d566239031ab4e4a5c764b6b936fbaee5790398
4
- data.tar.gz: 7797adbab2d5eb3e6623b4317a6c493605e16e14cf59997576e24e1ecd83b9f1
3
+ metadata.gz: 5aaf7134613ed6a03ffb06ea034fca329a8e888560bda5468c1af23801698b46
4
+ data.tar.gz: 6596294604e34ad134194db60f8769da6f3eddb53fb18bcb7364a7e57a60fbc4
5
5
  SHA512:
6
- metadata.gz: a7a49cc2454cff2cd4b86aba5829ba4ece9b18b052056abd31504a963c7fd8f548b9f8f94f7de00974d3659cc76191c54a7566aaa272dd76cd86813fe93e45ab
7
- data.tar.gz: '09189290d051c2d6fe873e4f24c474b206f575eb950d8643404105ee6d581f0c192a9fc6f4a1763fe8c8396a61f77c4286a7b968bc47f6c83f10b2c9d3dcd5b9'
6
+ metadata.gz: 15181410f26f5268006bd9975fbd58175ce157edba77cb4888dbb0d16c099d210cc84ffc6dae5d2e7cb651f1faca473b7ddbaa6625c0a3c090a76ccac57bb83a
7
+ data.tar.gz: e2f8c366a80676c58d2f8662c60a198ed8207d3c06f8ad7f158e233223dc064d82857157e7f85b6df3d2f9a626c7c42eeaf2fb229c9b31a414814cfaf34081b6
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/).
4
4
 
5
+ ## [9.1.1]
6
+ ### Summary
7
+
8
+ - use --no-tablespaces with mysqldump
9
+
5
10
  ## [9.1.0]
6
11
  ### Summary
7
12
 
@@ -9,6 +14,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
9
14
  - Update capistrano 3.10.1
10
15
  - Always execute tasks for each server or at rollback
11
16
 
17
+ ## [9.0.1]
18
+ ### Summary
19
+
20
+ - use --no-tablespaces with mysqldump
21
+
12
22
  ## [9.0.0]
13
23
  ### Summary
14
24
 
@@ -29,6 +39,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
29
39
  - remove TYPO3 specific configuration
30
40
  - change some SCM roles from app to all
31
41
 
42
+ ## [8.0.2] - 2020-08-21
43
+ ### Summary
44
+
45
+ - use --no-tablespaces with mysqldump
46
+
32
47
  ## [8.0.1] - 2017-05-15
33
48
  ### Summary
34
49
 
@@ -40,7 +55,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
40
55
  - first public release
41
56
 
42
57
  [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
43
59
  [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
44
61
  [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
45
63
  [8.0.1]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v8.0.1
46
64
  [8.0.0]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v8.0.0
@@ -5,7 +5,7 @@ module Dkdeploy
5
5
  class Version
6
6
  MAJOR = 9
7
7
  MINOR = 1
8
- PATCH = 0
8
+ PATCH = 1
9
9
 
10
10
  def self.to_s
11
11
  [MAJOR, MINOR, PATCH].join('.')
@@ -115,7 +115,7 @@ namespace :db do
115
115
  execute :rm, '-f', remote_dump_file
116
116
  execute :rm, '-f', remote_zipped_dump_file
117
117
  execute :mysqldump,
118
- '--no-data', '--skip-set-charset',
118
+ '--no-data', '--skip-set-charset', '--no-tablespaces',
119
119
  "--default-character-set=#{db_settings.fetch('charset')}",
120
120
  '-u', db_settings.fetch('username'),
121
121
  '-p',
@@ -150,6 +150,7 @@ namespace :db do
150
150
  execute :mysqldump,
151
151
  "--default-character-set=#{db_settings.fetch('charset')}",
152
152
  '--skip-set-charset',
153
+ '--no-tablespaces',
153
154
  '-u', db_settings.fetch('username'),
154
155
  '-p',
155
156
  '-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
179
180
  execute :rm, '-f', remote_dump_file
180
181
  execute :rm, '-f', remote_zipped_dump_file
181
182
  execute :mysqldump,
182
- '--no-data', '--skip-set-charset',
183
+ '--no-data', '--skip-set-charset', '--no-tablespaces',
183
184
  "--default-character-set=#{db_settings.fetch('charset')}",
184
185
  '-u', db_settings.fetch('username'),
185
186
  '-p',
@@ -214,7 +215,7 @@ namespace :db do
214
215
  execute :rm, '-f', remote_file_name
215
216
  execute :rm, '-f', remote_zipped_file
216
217
  execute :mysqldump,
217
- '--no-data', '--skip-set-charset',
218
+ '--no-data', '--skip-set-charset', '--no-tablespaces',
218
219
  '--no-create-info', '--skip-comments',
219
220
  '--skip-extended-insert', '--skip-set-charset',
220
221
  "--default-character-set=#{db_settings.fetch('charset')}",
@@ -313,7 +314,7 @@ namespace :db do
313
314
  "--default-character-set=#{db_settings.fetch('charset')}",
314
315
  '--no-create-info', '--skip-comments',
315
316
  '--skip-extended-insert', '--skip-set-charset',
316
- '--complete-insert',
317
+ '--complete-insert', '--no-tablespaces',
317
318
  '-u', db_settings.fetch('username'),
318
319
  '-p',
319
320
  '-h', db_settings.fetch('host'), '-P', db_settings.fetch('port'),
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dkdeploy-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.1.0
4
+ version: 9.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Timo Webler
8
8
  - Nicolai Reuschling
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-02-09 00:00:00.000000000 Z
12
+ date: 2020-08-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -265,7 +265,7 @@ homepage: https://github.com/dkdeploy/dkdeploy-core
265
265
  licenses:
266
266
  - MIT
267
267
  metadata: {}
268
- post_install_message:
268
+ post_install_message:
269
269
  rdoc_options: []
270
270
  require_paths:
271
271
  - lib
@@ -280,9 +280,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
280
280
  - !ruby/object:Gem::Version
281
281
  version: '0'
282
282
  requirements: []
283
- rubyforge_project:
284
- rubygems_version: 2.7.5
285
- signing_key:
283
+ rubygems_version: 3.1.4
284
+ signing_key:
286
285
  specification_version: 4
287
286
  summary: dkd basic deployment tasks and strategies
288
287
  test_files: