le1t0-capistrano 2.5.18.001

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. data/.gitignore +9 -0
  2. data/CHANGELOG +843 -0
  3. data/README +102 -0
  4. data/Rakefile +36 -0
  5. data/VERSION +1 -0
  6. data/bin/cap +4 -0
  7. data/bin/capify +86 -0
  8. data/lib/capistrano.rb +2 -0
  9. data/lib/capistrano/callback.rb +45 -0
  10. data/lib/capistrano/cli.rb +47 -0
  11. data/lib/capistrano/cli/execute.rb +85 -0
  12. data/lib/capistrano/cli/help.rb +125 -0
  13. data/lib/capistrano/cli/help.txt +78 -0
  14. data/lib/capistrano/cli/options.rb +243 -0
  15. data/lib/capistrano/cli/ui.rb +40 -0
  16. data/lib/capistrano/command.rb +283 -0
  17. data/lib/capistrano/configuration.rb +44 -0
  18. data/lib/capistrano/configuration/actions/file_transfer.rb +52 -0
  19. data/lib/capistrano/configuration/actions/inspect.rb +46 -0
  20. data/lib/capistrano/configuration/actions/invocation.rb +295 -0
  21. data/lib/capistrano/configuration/callbacks.rb +148 -0
  22. data/lib/capistrano/configuration/connections.rb +204 -0
  23. data/lib/capistrano/configuration/execution.rb +143 -0
  24. data/lib/capistrano/configuration/loading.rb +197 -0
  25. data/lib/capistrano/configuration/namespaces.rb +197 -0
  26. data/lib/capistrano/configuration/roles.rb +73 -0
  27. data/lib/capistrano/configuration/servers.rb +98 -0
  28. data/lib/capistrano/configuration/variables.rb +127 -0
  29. data/lib/capistrano/errors.rb +19 -0
  30. data/lib/capistrano/extensions.rb +57 -0
  31. data/lib/capistrano/logger.rb +59 -0
  32. data/lib/capistrano/processable.rb +53 -0
  33. data/lib/capistrano/recipes/compat.rb +32 -0
  34. data/lib/capistrano/recipes/deploy.rb +589 -0
  35. data/lib/capistrano/recipes/deploy/dependencies.rb +44 -0
  36. data/lib/capistrano/recipes/deploy/local_dependency.rb +54 -0
  37. data/lib/capistrano/recipes/deploy/remote_dependency.rb +105 -0
  38. data/lib/capistrano/recipes/deploy/scm.rb +19 -0
  39. data/lib/capistrano/recipes/deploy/scm/accurev.rb +169 -0
  40. data/lib/capistrano/recipes/deploy/scm/base.rb +196 -0
  41. data/lib/capistrano/recipes/deploy/scm/bzr.rb +86 -0
  42. data/lib/capistrano/recipes/deploy/scm/cvs.rb +152 -0
  43. data/lib/capistrano/recipes/deploy/scm/darcs.rb +96 -0
  44. data/lib/capistrano/recipes/deploy/scm/git.rb +278 -0
  45. data/lib/capistrano/recipes/deploy/scm/mercurial.rb +137 -0
  46. data/lib/capistrano/recipes/deploy/scm/none.rb +44 -0
  47. data/lib/capistrano/recipes/deploy/scm/perforce.rb +138 -0
  48. data/lib/capistrano/recipes/deploy/scm/subversion.rb +121 -0
  49. data/lib/capistrano/recipes/deploy/strategy.rb +19 -0
  50. data/lib/capistrano/recipes/deploy/strategy/base.rb +79 -0
  51. data/lib/capistrano/recipes/deploy/strategy/checkout.rb +20 -0
  52. data/lib/capistrano/recipes/deploy/strategy/copy.rb +218 -0
  53. data/lib/capistrano/recipes/deploy/strategy/export.rb +20 -0
  54. data/lib/capistrano/recipes/deploy/strategy/remote.rb +52 -0
  55. data/lib/capistrano/recipes/deploy/strategy/remote_cache.rb +56 -0
  56. data/lib/capistrano/recipes/deploy/templates/maintenance.rhtml +53 -0
  57. data/lib/capistrano/recipes/standard.rb +37 -0
  58. data/lib/capistrano/recipes/templates/maintenance.rhtml +53 -0
  59. data/lib/capistrano/role.rb +102 -0
  60. data/lib/capistrano/server_definition.rb +56 -0
  61. data/lib/capistrano/shell.rb +260 -0
  62. data/lib/capistrano/ssh.rb +99 -0
  63. data/lib/capistrano/task_definition.rb +75 -0
  64. data/lib/capistrano/transfer.rb +216 -0
  65. data/lib/capistrano/version.rb +18 -0
  66. data/test/cli/execute_test.rb +132 -0
  67. data/test/cli/help_test.rb +165 -0
  68. data/test/cli/options_test.rb +329 -0
  69. data/test/cli/ui_test.rb +28 -0
  70. data/test/cli_test.rb +17 -0
  71. data/test/command_test.rb +286 -0
  72. data/test/configuration/actions/file_transfer_test.rb +61 -0
  73. data/test/configuration/actions/inspect_test.rb +65 -0
  74. data/test/configuration/actions/invocation_test.rb +225 -0
  75. data/test/configuration/callbacks_test.rb +220 -0
  76. data/test/configuration/connections_test.rb +349 -0
  77. data/test/configuration/execution_test.rb +175 -0
  78. data/test/configuration/loading_test.rb +132 -0
  79. data/test/configuration/namespace_dsl_test.rb +311 -0
  80. data/test/configuration/roles_test.rb +144 -0
  81. data/test/configuration/servers_test.rb +158 -0
  82. data/test/configuration/variables_test.rb +184 -0
  83. data/test/configuration_test.rb +88 -0
  84. data/test/deploy/local_dependency_test.rb +76 -0
  85. data/test/deploy/remote_dependency_test.rb +114 -0
  86. data/test/deploy/scm/accurev_test.rb +23 -0
  87. data/test/deploy/scm/base_test.rb +55 -0
  88. data/test/deploy/scm/bzr_test.rb +51 -0
  89. data/test/deploy/scm/darcs_test.rb +37 -0
  90. data/test/deploy/scm/git_test.rb +184 -0
  91. data/test/deploy/scm/mercurial_test.rb +134 -0
  92. data/test/deploy/scm/none_test.rb +35 -0
  93. data/test/deploy/scm/subversion_test.rb +32 -0
  94. data/test/deploy/strategy/copy_test.rb +302 -0
  95. data/test/extensions_test.rb +69 -0
  96. data/test/fixtures/cli_integration.rb +5 -0
  97. data/test/fixtures/config.rb +5 -0
  98. data/test/fixtures/custom.rb +3 -0
  99. data/test/logger_test.rb +123 -0
  100. data/test/role_test.rb +11 -0
  101. data/test/server_definition_test.rb +121 -0
  102. data/test/shell_test.rb +90 -0
  103. data/test/ssh_test.rb +104 -0
  104. data/test/task_definition_test.rb +116 -0
  105. data/test/transfer_test.rb +160 -0
  106. data/test/utils.rb +39 -0
  107. metadata +289 -0
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ coverage
2
+ doc
3
+ pkg
4
+ *.swp
5
+ *.patch
6
+ *.gem
7
+ *.sh
8
+ .DS_Store
9
+ capistrano.gemspec
data/CHANGELOG ADDED
@@ -0,0 +1,843 @@
1
+ == 2.5.18 / March 14, 2010
2
+
3
+ Small fix for rolling back if a shell scripts exits non-zero; enabled a rollback if git (or other) externals fail during the deploy.
4
+
5
+ * #151 check return code status of system command to create local copy and rollback if not 0 (David King)
6
+
7
+ == 2.5.17 / February 27, 2010
8
+
9
+ Various small bug fixes.
10
+
11
+ == 2.5.16 / February 14, 2010
12
+
13
+ Fixed a small regression in 2.5.15
14
+
15
+ == 2.5.15 / 14 February 2010
16
+
17
+ Fixes a feature request not to overwrite roles when using the ROLES environmental variable.
18
+
19
+ * #126 - The option to not overwriting the roles which are defined in the task definition.
20
+ * Removed the `upgrade` file as it has been a couple of years since 1.x was in the wild.
21
+ * Slight internal re-factor of the way we calculate the `version`
22
+
23
+ == 2.5.14 / 18 January 2010
24
+
25
+ Fixes a low-value bug, thanks to Chris G for the well submitted patch:
26
+
27
+ * #139 - Improves consistency of variable lookup, scm variables with a local_ prefix will be honoured with priority locally (Chris Griego)
28
+
29
+ == 2.5.13 / 6 January 2010
30
+
31
+ * Small maintenance release:
32
+
33
+ * #118 - Modified CLI test to not load user or system configuration file (Emily Price)
34
+ * #88 - Re-fixed a problem here, massive apologies to all concerned. (Hangover from 2.5.12)
35
+
36
+ == 2.5.12 / 5 January 2010
37
+
38
+ * Tweak the directory version listing (caused a lot of problems, please upgrade immediately)
39
+
40
+ == 2.5.11 / December 2009
41
+
42
+ * Deprecations and other small changes
43
+
44
+ == 2.5.10 / 3 November 2009
45
+
46
+ * Fixes Darcs remote repository problem when using the copy strategy [Alex `regularfry` Young]
47
+ * Documentation improvements for embedding Capistrano [Lee Hambley]
48
+ * Fixes ticket #95 -formally deprecating the before_something and after_something methods [Lee Hambley]
49
+
50
+ == 2.5.9 / 1 August 2009
51
+
52
+ * Adds support for customizing which `tar` command to use. [Jeremy Wells]
53
+
54
+ * Fixes a couple of documentation problems, typos and worse. [Lee Hambley]
55
+
56
+ * #105 - Add skip_hostfilter option to find_servers() [Eric]
57
+ * #103 - Using non-master branch fails with Ruby 1.9 [Suraj Kurapati]
58
+ * #96 - Tweak for 1.9 Compatibility
59
+ * #79 - Capistrano hangs on shell command for many computers
60
+ * #77 - Copy command doesn't work on Solaris due to tar/gtar
61
+ * #76 - Invalid Subversion URL
62
+ * Improved web:disable task, now suggests a .htaccess block to use suggested by Rafael García
63
+ * Includes more logger options (can now select stdout, stderr of a file) [Rafael García]
64
+
65
+ == 2.5.8 / July 2009
66
+
67
+ * Fixes a problem in 2.5.7 where deploy:finalize_update had been badly merged.
68
+
69
+ == 2.5.6 & 2.5.7 / July 2009
70
+
71
+ * 2.5.7 masks a broken 2.5.6 release that was accidentally mirrored via Rubyforge.
72
+
73
+ * Clean the cached git repository [Graeme Mathieson]
74
+
75
+ * Fixes perforce issues reported at http://bit.ly/wt0es [Scott Johnson]
76
+
77
+ * Improved back-tick handling code in relation to the above.
78
+
79
+ * Fixes a Git issue when submodules update upstream. (via mailing list) [sneakin]
80
+
81
+ * Capify now creates the config directory in directories without one.
82
+
83
+ == 2.5.5 / 24 Feb 2009
84
+
85
+ * Make sure role(:foo) actually declares an (empty) role for :foo, even without server arguments [Jamis Buck]
86
+
87
+
88
+ == 2.5.4 / 4 Feb 2009
89
+
90
+ * When using rsync with the remote_cache strategy include -t switch to preserve file times [Kevin McCarthy]
91
+
92
+ * Bump Net::SSH dependency to version 2.0.10 [Jamis Buck]
93
+
94
+ * Use 'user' from .ssh/config appropriately [Jamis Buck]
95
+
96
+ * Allow respond_to?() method to accept optional second parameter (include_priv) [Matthias Marschall]
97
+
98
+ * Make sure sudo prompts are retried correctly even if "try again" and the prompt appear in the same text chunk from the server [Jamis Buck]
99
+
100
+ * Add supported environment variables to -H output [François Beausoleil]
101
+
102
+
103
+ == 2.5.3 / December 6, 2008
104
+
105
+ * Make previous_release return nil if there is no previous release [Mathias Meyer]
106
+
107
+ * Play nice with rubies that don't inspect terminals well (ie. JRuby) by defaulting screen columns to 80 [Bob McWhirter]
108
+
109
+ * Rollback of deploy:symlink would explode if there was no previous revision to rollback to [Jamis Buck]
110
+
111
+ * Fix bug in transfer.rb that caused get/put/upload/download to ignore blocks passed to them [arika]
112
+
113
+ * Fix issue with git SCM that caused "Unable to resolve revision" errors when there was trailing whitespace in git's output [Mark Zuneska, Daniel Berlinger and Evan Closson]
114
+
115
+
116
+ == 2.5.2 / November 13, 2008
117
+
118
+ * Fix issue with git SCM that caused "Unable to resolve revision for 'HEAD'" errors on deploy [Jamis Buck]
119
+
120
+
121
+ == 2.5.1 / November 7, 2008
122
+
123
+ * Add -t (--tools) switch for better task lists for external tools [Jamis Buck]
124
+
125
+ * Make the RemoteDependency#try method use invoke_command instead of run, for sudo-ability [Matthias Marschall]
126
+
127
+ * Make locally executed commands in Windows more Windows-friendly [esad@esse.at]
128
+
129
+ * Added :scm_arguments variable for custom SCM arguments (subversion-only, currently) [David Abdemoulaie]
130
+
131
+ * Don't emit -p for sudo when :sudo_prompt is blank [Matthias Marschall]
132
+
133
+ * Copy symlinks when using rsync [Paul Paradise]
134
+
135
+ * Make sure git query-revision matches on exact branch name [grant@nightriot.com]
136
+
137
+ * Use -T <arg> to filter listed tasks by a pattern [Mathias Meyer, Geoffrey Grosenbach]
138
+
139
+ * Expose the #scm method on SCM::Base for building custom scm commands [Mathias Meyer]
140
+
141
+ * Start logging some locally executed commands [springyweb]
142
+
143
+ * Added HOSTFILTER environment variable for constraining tasks so they run only on hosts matching the given list of servers [Walter Smith]
144
+
145
+ * Make sure the glob matching for copy excludes does not delete parent directories [Fabio Akita]
146
+
147
+ * Ruby 1.9 compatibility [Jamis Buck]
148
+
149
+
150
+ == 2.5.0 / August 28, 2008
151
+
152
+ * Allow :gateway to be set to an array, in which case a chain of tunnels is created [Kerry Buckley]
153
+
154
+ * Allow HOSTS spec to override even non-existent roles [Mike Bailey]
155
+
156
+ * Sort releases via "ls -xt" instead of "ls -x" to allow for custom release names [Yan Pritzker]
157
+
158
+ * Convert arguments to -s and -S into integers, booleans, etc. based on whether the arguments appear to be those types [Jamis Buck]
159
+
160
+ * Add descriptions of -n and -d to the verbose help text [Jamis Buck]
161
+
162
+ * Make rollbacks work with processes that need the current directory to be valid in order to restart properly (e.g. mongrel_rails) [Jamis Buck]
163
+
164
+ * Rename deploy:rollback_code to deploy:rollback:code [Jamis Buck]
165
+
166
+ * Added parallel() helper for executing multiple different commands in parallel [Jamis Buck]
167
+
168
+ * Make sure a task only uses the last on_rollback block, once, on rollback [Jamis Buck]
169
+
170
+ * Add :shared_children variable to customize which subdirectories are created by deploy:setup [Jonathan Share]
171
+
172
+ * Allow filename globbing in copy_exclude setting for the copy strategy [Jonathan Share]
173
+
174
+ * Allow remote_cache strategy to use copy_exclude settings (requires rsync) [Lewis Mackenzie]
175
+
176
+ * Make None SCM module work in Windows [Carlos Kozuszko]
177
+
178
+ * Recognize mingw as a Windows platform [Carlos Kozuszko]
179
+
180
+ * Fixed failing tests in Windows [Carlos Kozuszko]
181
+
182
+ * Made :scm_auth_cache control whether password option is emitted in subversion module [Brendan Schwartz]
183
+
184
+ * Fixed timestamp bug in CVS module [Jørgen Fjeld]
185
+
186
+ * Added -n/--dry-run switch, to display but not execute remote tasks [Paul Gross]
187
+
188
+
189
+ == 2.4.3 / June 28, 2008
190
+
191
+ * Fix gem dependencies so gem actually understands them [Jamis Buck]
192
+
193
+
194
+ == 2.4.2 / June 27, 2008
195
+
196
+ * Specify gem dependencies in rakefile [Jamis Buck]
197
+
198
+
199
+ == 2.4.1 / June 27, 2008
200
+
201
+ * Use Echoe to manage the Rakefile [Jamis Buck]
202
+
203
+ * Let Net::SSH manage the default SSH port selection [Ben Lavender]
204
+
205
+ * Changed capture() helper to not raise an exception on error, but to warn instead [Jeff Forcier]
206
+
207
+
208
+ == 2.4.0 / June 13, 2008
209
+
210
+ * Added :normalize_asset_timestamps option to deployment, defaulting to true, which allows asset timestamping to be disabled [John Trupiano]
211
+
212
+
213
+ == 2.4.0 Preview Release #1 (2.3.101) / June 5, 2008
214
+
215
+ * Only make deploy:start, deploy:stop, and deploy:restart try sudo as :runner. The other sudo-enabled tasks (deploy:setup, deploy:cleanup, etc.) will now use the :admin_runner user (which by default is unset). [Jamis Buck]
216
+
217
+ * Make sure triggers defined as a block inherit the scope of the task they are attached to, instead of the task they were called from [Jamis Buck]
218
+
219
+ * Make deploy:upload use the upload() helper for more efficient directory processing [Jamis Buck]
220
+
221
+ * Make deploy:upload accept globs [Mark Imbriaco]
222
+
223
+ * Make sure the host is reported with the output from scm_run [Jamis Buck]
224
+
225
+ * Make git SCM honor the :scm_verbose option [Jamis Buck]
226
+
227
+ * Don't follow symlinks when using :copy_cache [Jamis Buck]
228
+
229
+ * If :mode is given to upload() helper, do a chmod after to set the mode [Jamis Buck]
230
+
231
+ * Fix load_from_file method for windows users [Neil Wilson]
232
+
233
+ * Display a deprecation error if a remote git branch is specified [Tim Harper]
234
+
235
+ * Fix deployment recipes to use the updated sudo helper [Jamis Buck]
236
+
237
+ * Enhance the sudo helper so it can be used to return the command, instead of executing it [Jamis Buck]
238
+
239
+ * Revert "make sudo helper play nicely with complex command chains", since it broke stuff [Jamis Buck]
240
+
241
+ * Make set(:default_shell, false) work for not using a shell on a per-command basis [Ryan McGeary]
242
+
243
+ * Improved test coverage [Ryan McGeary]
244
+
245
+ * Fixed "coverage" take task [Ryan McGeary]
246
+
247
+ * Use upload() instead of put() with the copy strategy [Jamis Buck]
248
+
249
+ * Revert the "git fetch --tags" change, since it didn't work as expected [Jamis Buck]
250
+
251
+ * Fix deploy:pending when using git SCM [Ryan McGeary]
252
+
253
+ * Make sure deploy:check works with :none scm (which has no default command) [Jamis Buck]
254
+
255
+ * Add debug switch for enabling conditional execution of commands [Mark Imbriaco]
256
+
257
+
258
+ == 2.3.0 / May 2, 2008
259
+
260
+ * Make deploy:setup obey the :use_sudo and :runner directives, and generalize the :use_sudo and :runner options into a try_sudo() helper method [Jamis Buck]
261
+
262
+ * Make sudo helper play nicely with complex command chains [Jamis Buck]
263
+
264
+ * Expand file-transfer options with new upload() and download() helpers. [Jamis Buck]
265
+
266
+ * Allow SCP transfers in addition to SFTP. [Jamis Buck]
267
+
268
+ * Use Net::SSH v2 and Net::SSH::Gateway. [Jamis Buck]
269
+
270
+ * Added #export method for git SCM [Phillip Goldenburg]
271
+
272
+ * For query_revision, git SCM used git-rev-parse on the repo hosting the Capfile, which may NOT be the same tree as the actual source reposistory. Use git-ls-remote instead to resolve the revision for checkout. [Robin H. Johnson]
273
+
274
+ * Allow :ssh_options hash to be specified per server [Jesse Newland]
275
+
276
+ * Added support for depend :remote, :file to test for existence of a specific file [Andrew Carter]
277
+
278
+ * Ensure that the default run options are mixed into the command options when executing a command from the cap shell [Ken Collins]
279
+
280
+ * Added :none SCM module for deploying a specific directory's contents [Jamis Buck]
281
+
282
+ * Improved "copy" strategy supports local caching and pattern exclusion (via :copy_cache and :copy_exclude variables) [Jamis Buck]
283
+
284
+
285
+ == 2.2.0 / February 27, 2008
286
+
287
+ * Fix git submodule support to init on sync [halorgium]
288
+
289
+ * Add alternative server-centric role definition method [James Duncan Davidson]
290
+
291
+ * Add support for password prompts from the Mercurial SCM [ches]
292
+
293
+ * Add support for :max_hosts option in task definition or run() [Rob Holland <rob@inversepath.com>]
294
+
295
+ * Distributed git support for better operability with remote_cache strategy [voidlock]
296
+
297
+ * Use a default line length in help text if line length is otherwise too small [Jamis Buck]
298
+
299
+ * Fix incorrect reference to the 'setup' task in task documentation [rajeshduggal]
300
+
301
+ * Don't try to kill the spawner process on deploy:stop if no spawner process exists [Jamis Buck]
302
+
303
+ * Dynamic roles (e.g. role(:app) { "host.name" }) [dmasover]
304
+
305
+ * Implement Bzr#next_revision so that pending changes can be reported correctly [casret]
306
+
307
+ * Use a proper export command for bzr SCM [drudru]
308
+
309
+ * Use checkout instead of merge for git SCM [nuttycom]
310
+
311
+ * Fix typo in Subversion SCM module, encountered when an update fails [kemiller]
312
+
313
+ * Fix documentation typo in upload.rb [evolving_jerk]
314
+
315
+ * Added test case to show that the :scm_command is honored by the git SCM module [grempe]
316
+
317
+ * Fail gracefully when double-colons are used to delimit namespaces [richie]
318
+
319
+ * Add support for :git_enable_submodules variable, to enable submodules with the git SCM [halorgium]
320
+
321
+ * If subversion asks for a password, prompt as a last resort [Jamis Buck]
322
+
323
+ * Use checkout --lightweight for bzr checkout, instead of branch [michiels]
324
+
325
+ * Make sure bzr SCM works when revision is head (or unspecified) [michiels]
326
+
327
+ * Support p4sync_flags and p4client_root variables for Perforce [gseidman]
328
+
329
+ * Prepare for Net::SSH v2 by making sure Capistrano only tries to load Net::SSH versions less than 1.99.0 [Jamis Buck]
330
+
331
+
332
+ == 2.1.0 / October 14, 2007
333
+
334
+ * Default to 0664 instead of 0660 on upload [Jamis Buck]
335
+
336
+ * Fix deploy:pending to query SCM for the subsequent revision so that it does not include the last deployed change [Jamis Buck]
337
+
338
+ * Prefer 'Last Changed Rev' over 'Revision' when querying latest revision via Subversion [Jamis Buck]
339
+
340
+ * Explicitly require 'stringio' in copy_test [mislav]
341
+
342
+ * When Subversion#query_revision fails, give a more sane error [Jamis Buck]
343
+
344
+ * Don't run the upgrade:revisions task on non-release servers [Jamis Buck]
345
+
346
+ * Fix cap shell to properly recognize sudo prompt [Mark Imbriaco, barnaby, Jamis Buck]
347
+
348
+ * Git SCM module [Garry Dolley, Geoffrey Grosenbach, Scott Chacon]
349
+
350
+ * Use the --password switch for subversion by default, but add :scm_prefer_prompt variable (defaults to false) [Jamis Buck]
351
+
352
+
353
+ == 2.0.100 (2.1 Preview 1) / September 1, 2007
354
+
355
+ * capify-generated Capfile will autoload all recipes from vendor/plugins/*/recipes/*.rb [Graeme Mathieson]
356
+
357
+ * Use sudo -p switch to set sudo password prompt to something predictable [Mike Bailey]
358
+
359
+ * Allow independent configurations to require the same recipe file [Jamis Buck]
360
+
361
+ * Set :shell to false to run a command without wrapping it in "sh -c" [Jamis Buck]
362
+
363
+ * Don't request a pty by default [Jamis Buck]
364
+
365
+ * Add a "match" remote dependency method [Adam Greene]
366
+
367
+ * Allow auth-caching of subversion credentials to be enabled via :scm_auth_cache [tsmith]
368
+
369
+ * Don't let a task trigger itself when used as the source for an "on" hook [Jamis Buck]
370
+
371
+ * Avoid using the --password switch with subversion for security purposes [sentinel]
372
+
373
+ * Add version_dir, current_dir, and shared_dir variables for naming the directories used in deployment [drinkingbird]
374
+
375
+ * Use Windows-safe binary reads for reading file contents [Ladislav Martincik]
376
+
377
+ * Add Accurev SCM support [Doug Barth]
378
+
379
+ * Use the :runner variable to determine who to sudo as for deploy:restart [Graham Ashton]
380
+
381
+ * Add Namespaces#top to always return a reference to the topmost namespace [Jamis Buck]
382
+
383
+ * Change the "-h" output so that it does not say that "-q" is the default [Jamis Buck]
384
+
385
+
386
+ == 2.0.0 / July 21, 2007
387
+
388
+ * Make the "no matching servers" error more sane [halorgium]
389
+
390
+ * Make sure the invoke task gives a sane error when the COMMAND value is omitted [halorgium]
391
+
392
+ * Make sure variables are conditionally set in the deploy recipes, so as not to clobber values set elsewhere [Jamis Buck]
393
+
394
+ * Fix "input stream is empty" errors from HighLine on prompt [Jamis Buck]
395
+
396
+ * Added "synchronous_connect" setting to try and work around SFTP hangs for certain users [Jamis Buck]
397
+
398
+ * Auto-require the SSH shell service, to avoid race conditions [Jamis Buck]
399
+
400
+ * Add a millisecond sleep in upload to reduce CPU impact [Jamis Buck]
401
+
402
+ * Allow the logger to be set via Configuration#logger= [Jamis Buck]
403
+
404
+ * Allow $CAPISTRANO:HOST$ to be used in filenames to the put command [Jamis Buck]
405
+
406
+ * Allow execute_on_servers to be called without a current task again [Jamis Buck]
407
+
408
+ * Put $stdout in sync mode, so that Net::SSH prompts are displayed [Jamis Buck]
409
+
410
+ * Make sure deploy:check aborts if it fails [Jamis Buck]
411
+
412
+ * Spelling corrections in docs [Tim Carey-Smith, Giles Bowkett]
413
+
414
+
415
+ == 1.99.3 (2.0 Preview 4) / June 28, 2007
416
+
417
+ * Don't break task descriptions on a period that appears in the middle of a sentence [Jamis Buck]
418
+
419
+ * Added support for :on_error => :continue in task definitions, allowing tasks to effectively ignore connection and execution errors that occur as they run [Rob Holland]
420
+
421
+ * Use correct parameters for Logger constructor in the SCM and Strategy base initializers [Jamis Buck]
422
+
423
+ * Set LC_ALL=C before querying the revision, to make sure the output is in a predictable locale and can be parsed predictably [via Leandro Nunes dos Santos]
424
+
425
+ * Add :copy_remote_dir variable for the :copy strategy, to indicate where the archive should be copied to on the remote servers [Jamis Buck]
426
+
427
+ * Make the awk use in the dependencies code work with POSIX awk [mcornick]
428
+
429
+ * Make variable accesses thread safe [via Adrian Danieli]
430
+
431
+ * Make user input for yes/no prompts work correctly in the Mercurial module [Matthew Elder]
432
+
433
+ * Use single quotes to escape semicolon in find command, instead of a backslash [via michael.italia@gmail.com]
434
+
435
+ * Better quoting of reserved characters in commands [Jamis Buck]
436
+
437
+ * Make sure Net::SSH versions prior to 1.1.0 still work [Jamis Buck]
438
+
439
+ * Allow the :hosts and :roles keys to accept lambdas, which will be evaluated lazily to allow runtime selection of hosts and roles in tasks [Jamis Buck]
440
+
441
+ * Use `which' to test whether a command exists in the remote path, instead of `test -p' [Jamis Buck]
442
+
443
+ * Make sure the connection factory is established synchronously, to avoid multiple gateway instances being spawned [Jamis Buck]
444
+
445
+ * Make sure symlink and finalize_update tasks reference the most recent release when called by themselves [Jamis Buck]
446
+
447
+
448
+ == 1.99.2 (2.0 Preview 3) / June 15, 2007
449
+
450
+ * CVS SCM module [Brian Phillips]
451
+
452
+ * Fix typo in Perforce SCM module [Chris Bailey]
453
+
454
+ * ssh_options < server options when connecting [Jamis Buck]
455
+
456
+ * Logger defaults to $stderr instead of STDERR [lhartley]
457
+
458
+ * Use cp -RPp instead of -a in the remote cache strategy
459
+
460
+ * Make the UploadError exception include an array of the hosts that failed [rob@inversepath.com]
461
+
462
+ * Allow "empty" roles to be declared [Jamis Buck]
463
+
464
+ * Mercurial SCM module [Tobias Luetke, Matthew Elder]
465
+
466
+ * Invoke all commands via sh (customizable via :default_shell) [Jamis Buck]
467
+
468
+ * Make sure all directories exist on each deploy which are necessary for subsequent commands to succeed, since some SCM's won't save empty directories [Matthew Elder]
469
+
470
+ * Add :default_environment variable, which is applied to every command
471
+
472
+
473
+ == 1.99.1 (2.0 Preview 2) / May 10, 2007
474
+
475
+ * Fix some documentation typos [eventualbuddha]
476
+
477
+ * Don't retry failed connections if an explicit auth_methods list is given [Chris Farms]
478
+
479
+ * Added support for load and exit callbacks, which get invoked when all recipes have been loaded and when all requested tasks have been executed [Jamis Buck]
480
+
481
+ * Added support for start and finish callbacks, which get invoked when any task is called via the command-line [Jamis Buck]
482
+
483
+ * Make `capify' understand simple command-line switches [Jamis Buck]
484
+
485
+ * Make the server definition itself available to SSH channels, rather than just the host name [Jamis Buck]
486
+
487
+ * Identify servers by their complete credentials in logs, rather than simply by hostname [Jamis Buck]
488
+
489
+ * Uniquely identify servers based on hostname, port, and username, instead of merely on hostname [Jamis Buck]
490
+
491
+ * Allow (e.g.) scm_command and local_scm_command to be set in the event of different paths to the scm command on local vs. remote hosts. [Jamis Buck]
492
+
493
+ * Kill the "deploy:app" namespace and move those tasks into deploy, directly. [Jamis Buck]
494
+
495
+ * Make sure 'desc' applies to the next defined task, in any namespace. [Jamis Buck]
496
+
497
+ * Fix shell so that servers for a task are correctly discovered. [Jamis Buck]
498
+
499
+ * Added before(), after(), and on() callback creation methods. [Jamis Buck]
500
+
501
+ * Fix broken check! method for some deployment strategies. [Jamis Buck]
502
+
503
+ * deploy:cold should also run migrations before starting the app [Jamis Buck]
504
+
505
+ * Make the copy strategy check out to a temporary directory [Jamis Buck]
506
+
507
+
508
+ == 1.99.0 (2.0 Preview 1) / April 24, 2007
509
+
510
+ * Add `capify' script to make it easier to prepare a project for deployment using cap [Jamis Buck]
511
+
512
+ * Make sure the sudo helper understands the SuSE dialect of the sudo password prompt [Steven Wisener]
513
+
514
+ * Fix synchronization issue with Gateway initialization [Doug Barth]
515
+
516
+ * Added opt-in "compat" and "upgrade" recipes for tasks to aid in the upgrade process to Capistrano 2 [Jamis Buck]
517
+
518
+ * The deployment recipes are now opt-in. Just do 'load "deploy"' in your recipe script. [Jamis Buck]
519
+
520
+ * Added $CAPISTRANO:HOST$ placeholder in commands, which will be replaced with the name of the host on which the command is executing [Jamis Buck]
521
+
522
+ * Added -e switch to explain specific task. Added -X to extend -x. Made -h much briefer. Added -T to list known tasks. [Jamis Buck]
523
+
524
+ * Added namespaces for tasks [Jamis Buck]
525
+
526
+ * Merged the Configuration and Actor classes, performed various other massive refactorings of the code [Jamis Buck]
527
+
528
+
529
+ == 1.4.1 / February 24, 2007
530
+
531
+ * Use the no-auth-cache option with subversion so that username/password tokens do not get cached by capistrano usage [jonathan]
532
+
533
+ * Deprecated upper-cased variables [Jamis Buck]
534
+
535
+ * Make sure Actor#get does not close the SFTP channel (so subsequent SFTP operations work) [Dov Murik]
536
+
537
+ * Add :env option to 'run' (and friends) so that you can specify environment variables to be injected into the new process' environment [Mathieu Lajugie]
538
+
539
+
540
+ == 1.4.0 / February 3, 2007
541
+
542
+ * Use the auth info for subversion more consistently [Jamis Buck]
543
+
544
+ * Add a "capture" helper, for capturing the stdout of a remote command and returning it as a string [Jamis Buck]
545
+
546
+ * Add a "get" helper, to pull a file from a remote server to the localhost [bmihelac]
547
+
548
+ * Fix gateway to actually increment local_port if a port is in use, so that multiple capistrano instances can run at the same time [Mark Imbriaco]
549
+
550
+ * Refactor the permissions tweaking in update_code to a separate task so that people on shared hosts can override it as necessary [jaw6]
551
+
552
+ * Set umask during the setup task, so that intermediate directories are created with the proper permissions [NeilW]
553
+
554
+ * Removed -c/--caprc switch, since the new load order renders it meaningless (just use -f now) [Mike Bailey]
555
+
556
+ * Make sure the standard recipe loads first, so that .caprc and friends can override what it defines. [Mike Bailey]
557
+
558
+ * Add support for a system-wide capistrano config file [Mike Bailey]
559
+
560
+ * Make cold_deploy call update instead of deploy (to avoid invoking the restart task).
561
+
562
+ * Make the touch command run by update_code set the TZ to UTC, for consistent setting of asset timestamps. [NeilW]
563
+
564
+ * Fix off-by-one bug in show_tasks width-computation [NeilW]
565
+
566
+
567
+ == 1.3.1 / January 5, 2007
568
+
569
+ * Fix connection problems when using gateways [Ezra Zygmuntowicz]
570
+
571
+
572
+ == 1.3.0 / December 23, 2006
573
+
574
+ * Deprecate rake integration in favor of invoking `cap' directly [Jamis Buck]
575
+
576
+ * Make sure the CVS module references the repository explicitly in cvs_log [weyus@att.net]
577
+
578
+ * Remove trace messages when loading a file [Jamis Buck]
579
+
580
+ * Cleaner error messages for authentication failures and command errors [Jamis Buck]
581
+
582
+ * Added support for ~/.caprc, also -x and -c switches. [Jamis Buck]
583
+
584
+ * Updated migrate action to use db:migrate task in Rails instead of the deprecated migrate task [DHH]
585
+
586
+ * Allow SSH user and port to be encoded in the hostname strings [Ezra Zygmuntowicz]
587
+
588
+ * Fixed that new checkouts were not group-writable [DHH, Jamis Buck]
589
+
590
+ * Fixed that cap setup would use 755 on the deploy_to and shared directory roots instead of 775 [DHH]
591
+
592
+ * Don't run the cleanup task on servers marked no_release [Jamis Buck]
593
+
594
+ * Fix typo in default_io_proc so it correctly checks the stream parameter to see if it is the error stream [Stephen Haberman]
595
+
596
+ * Make sure assets in images, javascripts, and stylesheets are touched after updating the code, to ensure the asset timestamping feature of rails works correctly [Jamis Buck]
597
+
598
+ * Added warning if password is prompted for and termios is not installed [John Labovitz]
599
+
600
+ * Added :as option to sudo, so you can specify who the command is executed as [Mark Imbriaco]
601
+
602
+
603
+ == 1.2.0 / September 14, 2006
604
+
605
+ * Add experimental 'shell' task [Jamis Buck]
606
+
607
+ * Display file for external configurations, rather than inspected proc. [Jamis Buck]
608
+
609
+ * Connect to multiple servers in parallel, rather than serially. [Jamis Buck]
610
+
611
+ * Add SCM module for Mercurial (closes #4150) [Matthew Elder]
612
+
613
+ * Remove unused line in SCM::Base (closes #5619) [chris@seagul.co.uk]
614
+
615
+ * More efficient "svn log" usage (closes #5620) [Anatol Pomozov]
616
+
617
+ * Better support for key passphrases in the SVN module (closes #5920) [llasram@gmail.com]
618
+
619
+ * Fix missing default for :local in cvs.rb (closes #3645) [jeremy@hinegardner.org]
620
+
621
+ * Fix awkward spacing in gemspec file (closes #3888) [grant@antiflux.org]
622
+
623
+ * Add support for :sudo variable to specify path to sudo (closes #4578) [timothee.peignier@tryphon.org]
624
+
625
+ * Make previous_release return nil if there are no previous releases (closes #4959) [bdabney@cavoksolutions.com]
626
+
627
+ * Uncache releases list after update_code is called so that newly released dir is included (closes #3766) [Jamis Buck]
628
+
629
+ * Allow the subversion scm to accept HTTPS certificates (closes #4792) [Jamis Buck]
630
+
631
+ * Make sure rollbacks occur within the scope of the task that triggered them [Jamis Buck]
632
+
633
+ * Fixed the default recipe to work with setups that haven't yet gone pids [DHH]
634
+
635
+ * Symlink and setup for shared/pids to tmp/pids [DHH]
636
+
637
+ * Fix some incorrect usage text (closes #4507) [gerry_shaw@yahoo.com]
638
+
639
+ * Added Actor#stream method that makes it easy to create cross-server streams [DHH]. Example:
640
+
641
+ desc "Run a tail on multiple log files at the same time"
642
+ task :tail_fcgi, :roles => :app do
643
+ stream "tail -f #{shared_path}/log/fastcgi.crash.log"
644
+ end
645
+
646
+ * Make update_code and symlink a macro task under the name "update" for easy of deploy to servers that does not run fcgis [DHH]
647
+
648
+ * Changed setup, update_code, rollback_code, and symlink to work on all servers instead of only those in the :app, :web, and :db roles. A server can opt out of being part of the release deployment by setting :no_release => true [DHH]
649
+
650
+ * Added support for :except on task declarations as the opposite of :only [DHH]. Example:
651
+
652
+ role :app, "192.168.0.2"
653
+ role :file, "192.168.0.3", :no_release => true
654
+
655
+ task :symlink, :except => { :no_release => true } do
656
+ on_rollback { run "ln -nfs #{previous_release} #{current_path}" }
657
+ run "ln -nfs #{current_release} #{current_path}"
658
+ end
659
+
660
+ cap symlink # will not run on 192.168.0.3
661
+
662
+ * Deprecate the -r/--recipe switch in favor of -f/--file (for more make/rake-like semantics) [Jamis Buck]
663
+
664
+ * Fix gemspec to include a dependency on rake 0.7 [Jamis Buck]
665
+
666
+ * Added respect for ENV["HOSTS"] that'll be used instead of the roles specified in the task definition [DHH]. Example:
667
+
668
+ HOSTS=192.168.0.1 cap setup # one-off setup for that server, doesn't need to be prespecified in the recipes file
669
+
670
+ * Added respect for ENV["ROLES"] that'll be used instead of the roles specified in the task definition [DHH]. Example:
671
+
672
+ task :setup, :roles => [ :app, :web, :db ]
673
+ # normally this would run every where
674
+ end
675
+
676
+ ROLES=app cap setup # this will only run for the app role, overwritting the default declaration
677
+
678
+ * Added :hosts option to task definition that allows you to specify cross-cutting tasks [DHH]. Example:
679
+
680
+ task :setup, :hosts => [ "06.example.com", "01.example.com" ] do
681
+ # this task will happen on 06 and 01 regardless of which roles they belong to
682
+ end
683
+
684
+ * Fix operator precedence problem in script for touching the revisions.log #3223 [jason.garber@emu.edu]
685
+
686
+
687
+ == 1.1.0 / March 6th, 2006
688
+
689
+ * Simplify the generated capistrano.rake file, and make it easier to customize
690
+
691
+ * Use rake-like command-line semantics ("cap deploy", in addition to "cap -a deploy")
692
+
693
+ * Rename to capistrano
694
+
695
+ * Make the generated capistrano.rake file use rake namespaces, and include all default tasks
696
+
697
+ * Look for config/deploy.rb, capfile, and Capfile by default
698
+
699
+
700
+ == 1.0.1 / February 20th, 2006
701
+
702
+ * Fix broken switchtower_invoke function in switchtower.rake (missing require statement)
703
+
704
+
705
+ == 1.0.0 / Feburary 18th, 2006
706
+
707
+ * Make CVS module's :local value default to "."
708
+
709
+ * Add "invoke" task for executing one-off commands
710
+
711
+ * Make port selection smarter for gateway connections
712
+
713
+ * Add extension mechanism for custom ST operations and third-party task libraries
714
+
715
+ * Make ST rails rake tasks more configurable
716
+
717
+ * Add Actor#current_task and simplify Task#servers
718
+
719
+ * Add Actor#connect! method for working around lazy connection establishing
720
+
721
+ * Make sure IO::TRUNC is specified for Net::SFTP uploads (#3510)
722
+
723
+ * Add branch support to CVS [jeremy@hinegardner.org] (#3596)
724
+
725
+ * Add bazaar-ng SCM module [Damien Merenne]
726
+
727
+ * Add optional :svn_username and :svn_password variables
728
+
729
+ * Allow Proc-valued variables to be set more conveniently (set(:foo) { "bar" })
730
+
731
+ * Add perforce SCM module [Richard McMahon]
732
+
733
+ * Add bazaar (v1) SCM module [Edd Dumbill] (#3533)
734
+
735
+ * Fix stftime format string used in CVS module to be Windows-compatible (fixes #3383)
736
+
737
+ * Add an better error when a task is run and no servers match the required conditions
738
+
739
+ * Add default spinner and cold_deploy tasks, and spinner_user variable
740
+
741
+ * Changed restart_via variable to (boolean) use_sudo
742
+
743
+ * Only chmod when the revisions.log file is first created
744
+
745
+ * Make UPPERCASE variables work
746
+
747
+ * Added rails_env variable (defaults to production) for use by tasks that employ the RAILS_ENV environment variable
748
+
749
+ * Added Actor.default_io_proc
750
+
751
+ * Set :actor key on SSH channel instances
752
+
753
+
754
+ == 0.10.0 / January 2nd, 2006
755
+
756
+ * Handle ssh password prompts like "someone's password:"
757
+
758
+ * Make CLI#echo available as a class method.
759
+
760
+ * Add CLI#with_echo.
761
+
762
+ * Make the default password prompt available as a class method.
763
+
764
+ # Add documentation for the CLI class.
765
+
766
+ * Add a sanity check to make sure the correct versions of Net::SSH and Net::SFTP are installed.
767
+
768
+ * Added a cleanup task to remove unused releases from the deployment directory
769
+
770
+ * Allow password to be reentered on sudo if it was entered incorrectly
771
+
772
+ * Use && as the command separator for the checkouts, so that errors are caught early.
773
+
774
+ * Ping each SSH connection every 1s during command processing so that long-running commands don't cause the connection to timeout.
775
+
776
+ * Add a 0.01s sleep during the command loop so that the CPU doesn't go ballistic while ST is doing its thing.
777
+
778
+ * Add :restart_via variable for specifying whether restart ought to use :sudo (default, use sudo)
779
+
780
+ * Use SFTP for file transfers (if available).
781
+
782
+ * Add an "update_current" task that will do an svn up on the current release
783
+
784
+ * Use the :checkout variable to determine what operation to use for svn checkouts (instead of co, like "export").
785
+
786
+ * The Rails rake tasks now load ST directly, instead of invoking it via system
787
+
788
+ * Added ssh_options variable to configure the SSH connection parameters #2734 [jerrett@bravenet.com]
789
+
790
+ * Require Net::SSH 1.0.5
791
+
792
+
793
+ == 0.9.0 / October 18th, 2005
794
+
795
+ * Use process reaper instead of custom reap script for restarting
796
+
797
+ * Use -S switch to set variables before reading recipe files #2242
798
+
799
+ * Have setup.rb create a switchtower.cmd file on Win32 platforms #2402
800
+
801
+ * Add diff_from_last_deploy to the rails switchtower rakefile template
802
+
803
+ * Add diff_from_last_deploy task (currently only works with subversion)
804
+
805
+ * Add deploy_with_migrations task.
806
+
807
+ * Make the migrate task more customizable.
808
+
809
+ * If no password is given with the -p switch, prompt for password immediately.
810
+
811
+ * Do not install a switchtower stub in the script directory. Assume the switchtower executable is in the path.
812
+
813
+ * Remove trailing newlines from commands to prevent trailing backslash #2141
814
+
815
+ * Default parameters work correctly with the generator #2218 [Scott Barron]
816
+
817
+ * Attempt to require 'rubygems' explicitly when running the switchtower utility #2134
818
+
819
+ * Make default tasks work only on app/db/web roles, so that additional roles may be created for boxes with specific needs without needing to (for instance) deploy the app to those boxes
820
+
821
+ * Default the application name to "Application" when using --apply-to
822
+
823
+ * Show the help screen instead of an error when no arguments are given
824
+
825
+ * Make SwitchTower easier to invoke programmatically via SwitchTower::CLI
826
+
827
+ * Specify the revision to release via the :revision variable (defaults to latest revision)
828
+
829
+ * Allow variables to be set via the cli using the -s switch
830
+
831
+ * Log checkouts to a "revisions.log" file
832
+
833
+ * Changed behavior of checkout to use the timestamp as the release name, instead of the revision number
834
+
835
+ * Added CVS module (very very experimental!)
836
+
837
+ * Works with public keys now, for passwordless deployment
838
+
839
+ * Subversion module recognizes the password prompt for HTTP authentication
840
+
841
+ * Preserve +x on scripts when using darcs #1929 [Scott Barron]
842
+
843
+ * When executing multiline commands, use a backslash to escape the newline