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

root/tags/capistrano_1-99-2/CHANGELOG

Revision 7036, 15.0 kB (checked in by minam, 1 year ago)

version bump

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