capistrano-edge 2.5.6

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