dkdeploy-core 9.2.3 → 9.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f49d3a4d8949d6001316422be38a3dbb279e53797d5d512003556ae5f91a8fa7
4
- data.tar.gz: b30ffa5e5597750ba2a0da3e3e264ccba6cb854cf49d9dc21681995d6ee81e0a
3
+ metadata.gz: 14b8d47ae6341ab09f689581ccc5559ed894272dcb143f3301ceb031b4bbdb15
4
+ data.tar.gz: 4a711648ad50471922f4e9c6c8c42ae4f63f43a85f046ab432f8ee3172090a62
5
5
  SHA512:
6
- metadata.gz: 5932401f1144b9024a17b376a4b586743d7798011d2b8b983ae78321b7051f4e1f93f946833182d82c5739d90adb319ca61d8cb4babeb54a84d730b5d2bc5e76
7
- data.tar.gz: b07b51e05c51187417297c1e49a791587676c41e88ea6ad444b151d1738aef581ab5c0415e935bf08bdd7831219b10a0953c4da3f1b213d3c9737de621c8404e
6
+ metadata.gz: 8e7238a372471f7cc15275dc029e3be212acdfbe167ddf3b1bf93909f38ae9bff7e2f2349aef6553290368d3631c7f4c3dac4a2979cb5e7a3d324cfed85343f6
7
+ data.tar.gz: ff391d1b570cb4ef8dd272020eb2cb290efc8d7806fa6182f178041be828c14f94e599419f044b0e2a648c5c7c789fba0908d3bf4fa8e648c02d757cd444398d
@@ -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.2.4] - 2020-08-21
6
+ ### Summary
7
+
8
+ - use --no-tablespaces with mysqldump
9
+
5
10
  ## [9.2.3] - 2019-05-29
6
11
  ### Summary
7
12
 
@@ -29,14 +34,24 @@ This project adheres to [Semantic Versioning](http://semver.org/).
29
34
  - we no longer remove maintenance_config_file_path forcefully to make failures more apparent
30
35
  - improved shell independence
31
36
 
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]
33
43
  ### Summary
34
44
 
35
45
  - Use correct capistrano context at copy scm
36
46
  - Update capistrano 3.10.1
37
47
  - Always execute tasks for each server or at rollback
38
48
 
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]
40
55
  ### Summary
41
56
 
42
57
  - tasks around MySQL slow log
@@ -56,6 +71,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
56
71
  - remove TYPO3 specific configuration
57
72
  - change some SCM roles from app to all
58
73
 
74
+ ## [8.0.2] - 2020-08-21
75
+ ### Summary
76
+
77
+ - use --no-tablespaces with mysqldump
78
+
59
79
  ## [8.0.1] - 2017-05-15
60
80
  ### Summary
61
81
 
@@ -67,10 +87,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
67
87
  - first public release
68
88
 
69
89
  [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
70
92
  [9.2.2]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.2.2
71
93
  [9.2.1]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v9.2.1
72
94
  [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
73
96
  [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
74
98
  [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
75
100
  [8.0.1]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v8.0.1
76
101
  [8.0.0]: https://github.com/dkdeploy/dkdeploy-core/releases/tag/v8.0.0
@@ -7,7 +7,7 @@ module Dkdeploy
7
7
  class Version
8
8
  MAJOR = 9
9
9
  MINOR = 2
10
- PATCH = 3
10
+ PATCH = 4
11
11
 
12
12
  def self.to_s
13
13
  [MAJOR, MINOR, PATCH].join('.')
@@ -117,7 +117,7 @@ namespace :db do
117
117
  execute :rm, '-f', remote_dump_file
118
118
  execute :rm, '-f', remote_zipped_dump_file
119
119
  execute :mysqldump,
120
- '--no-data', '--skip-set-charset',
120
+ '--no-data', '--skip-set-charset', '--no-tablespaces',
121
121
  "--default-character-set=#{db_settings.fetch('charset')}",
122
122
  '-u', db_settings.fetch('username'),
123
123
  '-p',
@@ -152,6 +152,7 @@ namespace :db do
152
152
  execute :mysqldump,
153
153
  "--default-character-set=#{db_settings.fetch('charset')}",
154
154
  '--skip-set-charset',
155
+ '--no-tablespaces',
155
156
  '-u', db_settings.fetch('username'),
156
157
  '-p',
157
158
  '-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
181
182
  execute :rm, '-f', remote_dump_file
182
183
  execute :rm, '-f', remote_zipped_dump_file
183
184
  execute :mysqldump,
184
- '--no-data', '--skip-set-charset',
185
+ '--no-data', '--skip-set-charset', '--no-tablespaces',
185
186
  "--default-character-set=#{db_settings.fetch('charset')}",
186
187
  '-u', db_settings.fetch('username'),
187
188
  '-p',
@@ -216,7 +217,7 @@ namespace :db do
216
217
  execute :rm, '-f', remote_file_name
217
218
  execute :rm, '-f', remote_zipped_file
218
219
  execute :mysqldump,
219
- '--no-data', '--skip-set-charset',
220
+ '--no-data', '--skip-set-charset', '--no-tablespaces',
220
221
  '--no-create-info', '--skip-comments',
221
222
  '--skip-extended-insert', '--skip-set-charset',
222
223
  "--default-character-set=#{db_settings.fetch('charset')}",
@@ -315,7 +316,7 @@ namespace :db do
315
316
  "--default-character-set=#{db_settings.fetch('charset')}",
316
317
  '--no-create-info', '--skip-comments',
317
318
  '--skip-extended-insert', '--skip-set-charset',
318
- '--complete-insert',
319
+ '--complete-insert', '--no-tablespaces',
319
320
  '-u', db_settings.fetch('username'),
320
321
  '-p',
321
322
  '-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.2.3
4
+ version: 9.2.4
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: 2019-05-29 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: aruba
@@ -262,7 +262,7 @@ homepage: https://github.com/dkdeploy/dkdeploy-core
262
262
  licenses:
263
263
  - MIT
264
264
  metadata: {}
265
- post_install_message:
265
+ post_install_message:
266
266
  rdoc_options: []
267
267
  require_paths:
268
268
  - lib
@@ -277,8 +277,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
277
277
  - !ruby/object:Gem::Version
278
278
  version: '0'
279
279
  requirements: []
280
- rubygems_version: 3.0.3
281
- signing_key:
280
+ rubygems_version: 3.1.4
281
+ signing_key:
282
282
  specification_version: 4
283
283
  summary: dkd basic deployment tasks and strategies
284
284
  test_files: