Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

root/tags/capistrano_1-99-3/CHANGELOG

Revision 7154, 16.6 kB (checked in by minam, 1 year ago)

version bump

Line 
1 *1.99.3 (2.0 Preview 4)* June 28, 2007
2
3 * Don't break task descriptions on a period that appears in the middle of a sentence [Jamis Buck]
4
5 * 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]
6
7 * Use correct parameters for Logger constructor in the SCM and Strategy base initializers [Jamis Buck]
8
9 * 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]
10
11 * Add :copy_remote_dir variable for the :copy strategy, to indicate where the archive should be copied to on the remote servers [Jamis Buck]
12
13 * Make the awk use in the dependencies code work with POSIX awk [mcornick]
14
15 * Make variable accesses thread safe [via Adrian Danieli]
16
17 * Make user input for yes/no prompts work correctly in the Mercurial module [Matthew Elder]
18
19 * Use single quotes to escape semicolon in find command, instead of a backslash [via michael.italia@gmail.com]
20
21 * Better quoting of reserved characters in commands [Jamis Buck]
22
23 * Make sure Net::SSH versions prior to 1.1.0 still work [Jamis Buck]
24
25 * 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]
26
27 * Use `which' to test whether a command exists in the remote path, instead of `test -p' [Jamis Buck]
28
29 * Make sure the connection factory is established synchronously, to avoid multiple gateway instances being spawned [Jamis Buck]
30
31 * Make sure symlink and finalize_update tasks reference the most recent release when called by themselves [Jamis Buck]
32
33
34 *1.99.2 (2.0 Preview 3)* June 15, 2007
35  
36 * CVS SCM module [Brian Phillips]
37
38 * Fix typo in Perforce SCM module [Chris Bailey]
39
40 * ssh_options < server options when connecting [Jamis Buck]
41
42 * Logger defaults to $stderr instead of STDERR [lhartley]
43
44 * Use cp -RPp instead of -a in the remote cache strategy
45
46 * Make the UploadError exception include an array of the hosts that failed [rob@inversepath.com]
47
48 * Allow "empty" roles to be declared [Jamis Buck]
49
50 * Mercurial SCM module [Tobias Luetke, Matthew Elder]
51
52 * Invoke all commands via sh (customizable via :default_shell) [Jamis Buck]
53
54 * 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]
55
56 * Add :default_environment variable, which is applied to every command
57
58
59 *1.99.1 (2.0 Preview 2)* May 10, 2007
60
61 * Fix some documentation typos [eventualbuddha]
62
63 * Don't retry failed connections if an explicit auth_methods list is given [Chris Farms]
64
65 * 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]
66
67 * Added support for start and finish callbacks, which get invoked when any task is called via the command-line [Jamis Buck]
68
69 * Make `capify' understand simple command-line switches [Jamis Buck]
70
71 * Make the server definition itself available to SSH channels, rather than just the host name [Jamis Buck]
72
73 * Identify servers by their complete credentials in logs, rather than simply by hostname [Jamis Buck]
74
75 * Uniquely identify servers based on hostname, port, and username, instead of merely on hostname [Jamis Buck]
76
77 * 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]
78
79 * Kill the "deploy:app" namespace and move those tasks into deploy, directly. [Jamis Buck]
80
81 * Make sure 'desc' applies to the next defined task, in any namespace. [Jamis Buck]
82
83 * Fix shell so that servers for a task are correctly discovered. [Jamis Buck]
84
85 * Added before(), after(), and on() callback creation methods. [Jamis Buck]
86
87 * Fix broken check! method for some deployment strategies. [Jamis Buck]
88
89 * deploy:cold should also run migrations before starting the app [Jamis Buck]
90
91 * Make the copy strategy check out to a temporary directory [Jamis Buck]
92
93
94 *1.99.0 (2.0 Preview 1)* April 24, 2007
95
96 * Add `capify' script to make it easier to prepare a project for deployment using cap [Jamis Buck]
97
98 * Make sure the sudo helper understands the SuSE dialect of the sudo password prompt [Steven Wisener]
99
100 * Fix synchronization issue with Gateway initialization [Doug Barth]
101
102 * Added opt-in "compat" and "upgrade" recipes for tasks to aid in the upgrade process to Capistrano 2 [Jamis Buck]
103
104 * The deployment recipes are now opt-in. Just do 'load "deploy"' in your recipe script. [Jamis Buck]
105
106 * Added $CAPISTRANO:HOST$ placeholder in commands, which will be replaced with the name of the host on which the command is executing [Jamis Buck]
107
108 * Added -e switch to explain specific task. Added -X to extend -x. Made -h much briefer. Added -T to list known tasks. [Jamis Buck]
109
110 * Added namespaces for tasks [Jamis Buck]
111
112 * Merged the Configuration and Actor classes, performed various other massive refactorings of the code [Jamis Buck]
113
114
115 *1.4.1* (February 24, 2007)
116
117 * Use the no-auth-cache option with subversion so that username/password tokens do not get cached by capistrano usage [jonathan]
118
119 * Deprecated upper-cased variables [Jamis Buck]
120
121 * Make sure Actor#get does not close the SFTP channel (so subsequent SFTP operations work) [Dov Murik]
122
123 * Add :env option to 'run' (and friends) so that you can specify environment variables to be injected into the new process' environment [Mathieu Lajugie]
124
125
126 *1.4.0* (February 3, 2007)
127
128 * Use the auth info for subversion more consistently [Jamis Buck]
129
130 * Add a "capture" helper, for capturing the stdout of a remote command and returning it as a string [Jamis Buck]
131
132 * Add a "get" helper, to pull a file from a remote server to the localhost [bmihelac]
133
134 * 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]
135
136 * Refactor the permissions tweaking in update_code to a separate task so that people on shared hosts can override it as necessary [jaw6]
137
138 * Set umask during the setup task, so that intermediate directories are created with the proper permissions [NeilW]
139
140 * Removed -c/--caprc switch, since the new load order renders it meaningless (just use -f now) [Mike Bailey]
141
142 * Make sure the standard recipe loads first, so that .caprc and friends can override what it defines. [Mike Bailey]
143
144 * Add support for a system-wide capistrano config file [Mike Bailey]
145
146 * Make cold_deploy call update instead of deploy (to avoid invoking the restart task).
147
148 * Make the touch command run by update_code set the TZ to UTC, for consistent setting of asset timestamps. [NeilW]
149
150 * Fix off-by-one bug in show_tasks width-computation [NeilW]
151
152
153 *1.3.1* (January 5, 2007)
154
155 * Fix connection problems when using gateways [Ezra Zygmuntowicz]
156
157
158 *1.3.0* (December 23, 2006)
159
160 * Deprecate rake integration in favor of invoking `cap' directly [Jamis Buck]
161
162 * Make sure the CVS module references the repository explicitly in cvs_log [weyus@att.net]
163
164 * Remove trace messages when loading a file [Jamis Buck]
165
166 * Cleaner error messages for authentication failures and command errors [Jamis Buck]
167
168 * Added support for ~/.caprc, also -x and -c switches. [Jamis Buck]
169
170 * Updated migrate action to use db:migrate task in Rails instead of the deprecated migrate task [DHH]
171
172 * Allow SSH user and port to be encoded in the hostname strings [Ezra Zygmuntowicz]
173
174 * Fixed that new checkouts were not group-writable [DHH, Jamis Buck]
175
176 * Fixed that cap setup would use 755 on the deploy_to and shared directory roots instead of 775 [DHH]
177
178 * Don't run the cleanup task on servers marked no_release [Jamis Buck]
179
180 * Fix typo in default_io_proc so it correctly checks the stream parameter to see if it is the error stream [Stephen Haberman]
181
182 * 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]
183
184 * Added warning if password is prompted for and termios is not installed [John Labovitz]
185
186 * Added :as option to sudo, so you can specify who the command is executed as [Mark Imbriaco]
187
188
189 *1.2.0* (September 14, 2006)
190
191 * Add experimental 'shell' task [Jamis Buck]
192
193 * Display file for external configurations, rather than inspected proc. [Jamis Buck]
194
195 * Connect to multiple servers in parallel, rather than serially. [Jamis Buck]
196
197 * Add SCM module for Mercurial (closes #4150) [Matthew Elder]
198
199 * Remove unused line in SCM::Base (closes #5619) [chris@seagul.co.uk]
200
201 * More efficient "svn log" usage (closes #5620) [Anatol Pomozov]
202
203 * Better support for key passphrases in the SVN module (closes #5920) [llasram@gmail.com]
204
205 * Fix missing default for :local in cvs.rb (closes #3645) [jeremy@hinegardner.org]
206
207 * Fix awkward spacing in gemspec file (closes #3888) [grant@antiflux.org]
208
209 * Add support for :sudo variable to specify path to sudo (closes #4578) [timothee.peignier@tryphon.org]
210
211 * Make previous_release return nil if there are no previous releases (closes #4959) [bdabney@cavoksolutions.com]
212
213 * Uncache releases list after update_code is called so that newly released dir is included (closes #3766) [Jamis Buck]
214
215 * Allow the subversion scm to accept HTTPS certificates (closes #4792) [Jamis Buck]
216
217 * Make sure rollbacks occur within the scope of the task that triggered them [Jamis Buck]
218
219 * Fixed the default recipe to work with setups that haven't yet gone pids [DHH]
220
221 * Symlink and setup for shared/pids to tmp/pids [DHH]
222
223 * Fix some incorrect usage text (closes #4507) [gerry_shaw@yahoo.com]
224
225 * Added Actor#stream method that makes it easy to create cross-server streams [DHH]. Example:
226
227     desc "Run a tail on multiple log files at the same time"
228     task :tail_fcgi, :roles => :app do
229       stream "tail -f #{shared_path}/log/fastcgi.crash.log"
230     end
231
232 * Make update_code and symlink a macro task under the name "update" for easy of deploy to servers that does not run fcgis [DHH]
233
234 * 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]
235
236 * Added support for :except on task declarations as the opposite of :only [DHH]. Example:
237
238     role :app, "192.168.0.2"
239     role :file, "192.168.0.3", :no_release => true
240
241     task :symlink, :except => { :no_release => true } do
242       on_rollback { run "ln -nfs #{previous_release} #{current_path}" }
243       run "ln -nfs #{current_release} #{current_path}"
244     end
245    
246     cap symlink # will not run on 192.168.0.3
247
248 * Deprecate the -r/--recipe switch in favor of -f/--file (for more make/rake-like semantics) [Jamis Buck]
249
250 * Fix gemspec to include a dependency on rake 0.7 [Jamis Buck]
251
252 * Added respect for ENV["HOSTS"] that'll be used instead of the roles specified in the task definition [DHH]. Example:
253
254     HOSTS=192.168.0.1 cap setup # one-off setup for that server, doesn't need to be prespecified in the recipes file
255
256 * Added respect for ENV["ROLES"] that'll be used instead of the roles specified in the task definition [DHH]. Example:
257
258     task :setup, :roles => [ :app, :web, :db ]
259       # normally this would run every where
260     end
261    
262     ROLES=app cap setup # this will only run for the app role, overwritting the default declaration
263
264 * Added :hosts option to task definition that allows you to specify cross-cutting tasks [DHH]. Example:
265
266     task :setup, :hosts => [ "06.example.com", "01.example.com" ] do
267       # this task will happen on 06 and 01 regardless of which roles they belong to
268     end
269
270 * Fix operator precedence problem in script for touching the revisions.log #3223 [jason.garber@emu.edu]
271
272
273 *1.1.0* (March 6th, 2006)
274
275 * Simplify the generated capistrano.rake file, and make it easier to customize
276
277 * Use rake-like command-line semantics ("cap deploy", in addition to "cap -a deploy")
278
279 * Rename to capistrano
280
281 * Make the generated capistrano.rake file use rake namespaces, and include all default tasks
282
283 * Look for config/deploy.rb, capfile, and Capfile by default
284
285
286 *1.0.1* (February 20th, 2006)
287
288 * Fix broken switchtower_invoke function in switchtower.rake (missing require statement)
289
290
291 *1.0.0* (Feburary 18th, 2006)
292
293 * Make CVS module's :local value default to "."
294
295 * Add "invoke" task for executing one-off commands
296
297 * Make port selection smarter for gateway connections
298
299 * Add extension mechanism for custom ST operations and third-party task libraries
300
301 * Make ST rails rake tasks more configurable
302
303 * Add Actor#current_task and simplify Task#servers
304
305 * Add Actor#connect! method for working around lazy connection establishing
306
307 * Make sure IO::TRUNC is specified for Net::SFTP uploads (#3510)
308
309 * Add branch support to CVS [jeremy@hinegardner.org] (#3596)
310
311 * Add bazaar-ng SCM module [Damien Merenne]
312
313 * Add optional :svn_username and :svn_password variables
314
315 * Allow Proc-valued variables to be set more conveniently (set(:foo) { "bar" })
316
317 * Add perforce SCM module [Richard McMahon]
318
319 * Add bazaar (v1) SCM module [Edd Dumbill] (#3533)
320
321 * Fix stftime format string used in CVS module to be Windows-compatible (fixes #3383)
322
323 * Add an better error when a task is run and no servers match the required conditions
324
325 * Add default spinner and cold_deploy tasks, and spinner_user variable
326
327 * Changed restart_via variable to (boolean) use_sudo
328
329 * Only chmod when the revisions.log file is first created
330
331 * Make UPPERCASE variables work
332
333 * Added rails_env variable (defaults to production) for use by tasks that employ the RAILS_ENV environment variable
334
335 * Added Actor.default_io_proc
336
337 * Set :actor key on SSH channel instances
338
339
340 *0.10.0* (January 2nd, 2006)
341
342 * Handle ssh password prompts like "someone's password:"
343
344 * Make CLI#echo available as a class method.
345
346 * Add CLI#with_echo.
347
348 * Make the default password prompt available as a class method.
349
350 # Add documentation for the CLI class.
351
352 * Add a sanity check to make sure the correct versions of Net::SSH and Net::SFTP are installed.
353
354 * Added a cleanup task to remove unused releases from the deployment directory
355
356 * Allow password to be reentered on sudo if it was entered incorrectly
357
358 * Use && as the command separator for the checkouts, so that errors are caught early.
359
360 * Ping each SSH connection every 1s during command processing so that long-running commands don't cause the connection to timeout.
361
362 * Add a 0.01s sleep during the command loop so that the CPU doesn't go ballistic while ST is doing its thing.
363
364 * Add :restart_via variable for specifying whether restart ought to use :sudo (default, use sudo)
365
366 * Use SFTP for file transfers (if available).
367
368 * Add an "update_current" task that will do an svn up on the current release
369
370 * Use the :checkout variable to determine what operation to use for svn checkouts (instead of co, like "export").
371
372 * The Rails rake tasks now load ST directly, instead of invoking it via system
373
374 * Added ssh_options variable to configure the SSH connection parameters #2734 [jerrett@bravenet.com]
375
376 * Require Net::SSH 1.0.5
377
378
379 *0.9.0* (October 18th, 2005)
380
381 * Use process reaper instead of custom reap script for restarting
382
383 * Use -S switch to set variables before reading recipe files #2242
384
385 * Have setup.rb create a switchtower.cmd file on Win32 platforms #2402
386
387 * Add diff_from_last_deploy to the rails switchtower rakefile template
388
389 * Add diff_from_last_deploy task (currently only works with subversion)
390
391 * Add deploy_with_migrations task.
392
393 * Make the migrate task more customizable.
394
395 * If no password is given with the -p switch, prompt for password immediately.
396
397 * Do not install a switchtower stub in the script directory. Assume the switchtower executable is in the path.
398
399 * Remove trailing newlines from commands to prevent trailing backslash #2141
400
401 * Default parameters work correctly with the generator #2218 [Scott Barron]
402
403 * Attempt to require 'rubygems' explicitly when running the switchtower utility #2134
404
405 * 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
406
407 * Default the application name to "Application" when using --apply-to
408
409 * Show the help screen instead of an error when no arguments are given
410
411 * Make SwitchTower easier to invoke programmatically via SwitchTower::CLI
412
413 * Specify the revision to release via the :revision variable (defaults to latest revision)
414
415 * Allow variables to be set via the cli using the -s switch
416
417 * Log checkouts to a "revisions.log" file
418
419 * Changed behavior of checkout to use the timestamp as the release name, instead of the revision number
420
421 * Added CVS module (very very experimental!)
422
423 * Works with public keys now, for passwordless deployment
424
425 * Subversion module recognizes the password prompt for HTTP authentication
426
427 * Preserve +x on scripts when using darcs #1929 [Scott Barron]
428
429 * When executing multiline commands, use a backslash to escape the newline
Note: See TracBrowser for help on using the browser.