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

root/branches/2-1-caching/railties/CHANGELOG

Revision 8391, 92.8 kB (checked in by david, 9 months ago)

Work branch

Line 
1 *SVN*
2
3 * Fixed that local database creation should consider 127.0.0.1 local #9026 [parcelbrat]
4
5 * Fixed that functional tests generated for scaffolds should use fixture calls instead of hard-coded IDs #10435 [boone]
6
7 * Added db:migrate:redo and db:migrate:reset for rerunning existing migrations #10431, #10432  [matt]
8
9 * RAILS_GEM_VERSION may be double-quoted also.  #10443 [James Cox]
10
11 * Update rails:freeze:gems to work with RubyGems 0.9.5.  [Jeremy Kemper]
12
13
14 *2.0.1* (December 7th, 2007)
15
16 * Fixed Active Record bug
17
18
19 *2.0.0* (December 6th, 2007)
20
21 * The test task stops with a warning if you have pending migrations.  #10377 [Josh Knowles]
22
23 * Add warning to documentation about using transactional fixtures when the code under test uses transactions itself. Closes #7548 [thijsv]
24
25 * Update Prototype to 1.6.0.1.  [sam]
26
27 * Update script.aculo.us to 1.8.0.1.  [madrobby]
28
29 * Added db:fixtures:identity as a way of locating what ID a foxy fixture was assigned #10332 [jbarnette]
30
31 * Generated fixtures should not specify ids since theyre expected to be foxy fixtures #10330 [jbarnette]
32
33 * Update to Prototype -r8232.  [sam]
34
35 * Introduce SecretKeyGenerator for more secure session secrets than CGI::Session's pseudo-random id generator. Consider extracting to Active Support later.  #10286 [Hongli Lai]
36
37 * RAILS_GEM_VERSION may be set to any valid gem version specifier.  #10057 [Chad Woolley, Chu Yeow]
38
39 * Load config/preinitializer.rb, if present, before loading the environment.  #9943 [Chad Woolley]
40
41 * FastCGI handler ignores unsupported signals like USR2 on Windows.  [Grzegorz Derebecki]
42
43 * Only load ActionMailer::TestCase if ActionMailer is loaded.  Closes #10137 [defunkt]
44
45 * Fixed that db:reset would use migrations instead of loading db/schema.rb [DHH]
46
47 * Ensure the plugin loader only loads plugins once.  Closes #10102 [haruki_zaemon]
48
49 * Refactor Plugin Loader.  Add plugin lib paths early, and add lots of tests.  Closes #9795 [lazyatom]
50
51 * Added --skip-timestamps to generators that produce models #10036 [Tim Pope]
52
53 * Update Prototype to 1.6.0 and script.aculo.us to 1.8.0.  [sam, madrobby]
54
55 * Added db:rollback to rollback the schema one version (or multiple as specified by STEP) [Jeffrey Allan Hardy]
56
57 * Fix typo in test_helper. Closes #9925 [viktor tron]
58
59 * Request profiler.  [Jeremy Kemper]
60
61 * config/boot.rb correctly detects RAILS_GEM_VERSION.  #9834 [alexch, thewoolleyman]
62
63 * Fixed incorrect migration number if script/generate executed outside of Rails root #7080 [jeremymcanally]
64
65 * Update Prototype to 1.6.0_rc1 and script.aculo.us to 1.8.0 preview 0.  [sam, madrobby]
66
67 * Generated fixtures use the actual primary key instead of id.  #4343 [Frederick Ros, Tarmo TÀnav]
68
69 * Extend the console +helper+ method to allow you to include custom helpers.  e.g:
70   >> helper :posts
71   >> helper.some_method_from_posts_helper(Post.find(1))
72
73 * db:create works with remote databases whereas db:create:all only creates
74 databases on localhost.  #9753 [Trevor Wennblom]
75
76 * Removed calls to fixtures in generated tests as fixtures :all is now present by default in test_helper.rb [DHH]
77
78 * Add --prefix option to script/server when using mongrel. [dacat]
79
80
81 *2.0.0 [Preview Release]* (September 29th, 2007) [Includes duplicates of changes from 1.1.4 - 1.2.3]
82
83 * Fixed that installing plugins from SVN repositories that use trunk/ will work #8188 [evan]
84
85 * Moved the SourceAnnotationExtractor to a separate file in case libraries try to load the rails rake tasks twice. [Rick]
86
87 * Moved Dispatcher to ActionController::Dispatcher.  [Jeremy Kemper]
88
89 * Changed the default logger from Ruby's own Logger with the clean_logger extensions to ActiveSupport::BufferedLogger for performance reasons [DHH]. (You can change it back with config.logger = Logger.new("/path/to/log", level).)
90
91 * Added a default 422.html page to be rendered when ActiveRecord::RecordInvalid, ActiveRecord::RecordNotSaved, or ActionController::InvalidAuthenticityToken is raised [DHH]
92
93 * Added --skip-fixture option to script/generate model #6862 [sandofsky]
94
95 * Print Rails version when starting console #7440 [eyematz]
96
97 * Fixed the placement of fixture files for nested models when generating through script/generate model #7547 [jkit]
98
99 * Added TEMPLATE option to rake doc:app to set a custom output template #7737 [Jakob S]
100
101 * Added VERBOSE option to rake db:migrate to turn off output #8204 [jbarnette]
102
103 * Fixed that rake doc:app should use UTF-8 #8906 [farzy]
104
105 * Fixes rake annotations to search erb and builder files as well #9150 [m.langenberg]
106
107 * Removed web_service generator [Koz]
108
109 * Added the :all option to config.plugins that'll include the rest of the plugins not already explicitly named #9613 [Frederick Cheung]. Example:
110
111     # Loads :classic_pagination before all the other plugins
112     config.plugins = [ :classic_pagination, :all ]
113
114 * Added symbols as a legal way of specifying plugins in config.plugins #9629 [tom]
115
116 * Removed deprecated task names, like clear_logs, in favor of the new namespaced style [DHH]
117
118 * Support multiple config.after_initialize blocks so plugins and apps can more easily cooperate.  #9582 [zdennis]
119
120 * Added db:drop:all to drop all databases declared in config/database.yml [DHH]
121
122 * Use attribute pairs instead of the migration name to create add and remove column migrations.  Closes #9166 [Pratik Naik]
123
124         For example:
125
126         ruby script/generation migration AddSomeStuffToCustomers first_name:string last_name:string
127        
128         or
129        
130         ruby script/generation migration RemoveSomeStuffFromCustomers first_name:string last_name:string
131
132 * Add ActiveResource to Rails::Info.  Closes #8741 [kampers]
133
134 * use Gem.find_name instead of search when freezing gems.  Prevent false positives for other gems with rails in the name. Closes #8729 [wselman]
135
136 * Automatically generate add/remove column commands in specially named migrations like AddLocationToEvent.  Closes #9006 [zenspider]
137
138 * Default to plural table name in Rails Generator if ActiveRecord is not present.  Closes #8963 [evan]
139
140 * Added rake routes for listing all the defined routes in the system.  #8795 [Josh Peek]
141
142 * db:create creates the database for the current environment if it's on localhost. db:create:all creates local databases for all environments.  #8783 [matt]
143
144 * Generators: look for generators in all gems, not just those suffixed with _generator, in the gem's generators or rails_generators directory. Allow use of the rails_generators directory instead of the standard generators directory in plugins also.  #8730 [Dr Nic, topfunky]
145
146 * MySQL, PostgreSQL: database.yml defaults to utf-8.  #8701 [matt]
147
148 * Added db:version to get the current schema number [via Err The Blog]
149
150 * Added --skip-migration option to scaffold and resource generators #8656 [Michael Glaesemann]
151
152 * Fix that FCGIs would leave log files open when asked to shut down by USR2.  #3028 [Sebastian Kanthak, Josh Peek]
153
154 * Fixed that dispatcher preparation callbacks only run once in production mode.  Mock Routes.reload so that dispatcher preparation callback tests run. [Rick]
155
156 * Fix syntax error in dispatcher than wrecked failsafe responses.  #8625 [mtitorenko]
157
158 * Scaffolded validation errors set the appropriate HTTP status for XML responses.  #6946, #8622 [Manfred Stienstra, mmmultiworks]
159
160 * Sexy migrations for the session_migration generator.  #8561 [Vladislav]
161
162 * Console reload! runs to_prepare callbacks also.  #8393 [f.svehla]
163
164 * Generated migrations include timestamps by default.  #8501 [Shane Vitarana]
165
166 * Drop Action Web Service from rails:freeze:edge.  [Jeremy Kemper]
167
168 * Add db:create, drop, reset, charset, and collation tasks.  #8448 [matt]
169
170 * Scaffold generator depends on model generator instead of duplicating it.  #7222 [bscofield]
171
172 * Scaffold generator tests.  #8443 [pelle]
173
174 * Generated scaffold functional tests use assert_difference.  #8421 [Norbert Crombach]
175
176 * Update to Prototype 1.5.1.  [Sam Stephenson]
177
178 * Update to script.aculo.us 1.7.1_beta3.  [Thomas Fuchs]
179
180 * Generators use *.html.erb view template naming.  #8278 [Tim Pope]
181
182 * Updated resource_scaffold and model generators to use short-hand style migrations [DHH]
183
184 * Updated initializer to only load #{RAILS_ENV}.rb once. Added deprecation warning for config.breakpoint_server. [Nicholas Seckar]
185
186 * Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug by Kent Sibilev since the breakpointer has been broken since Ruby 1.8.4 and will not be coming back [DHH]
187
188   To use the new debugger, start your server with script/server --debugger and insert a call to  'debugger'
189   (instead of 'breakpoint') where you want to jump into the debugger.
190  
191   BACKWARDS INCOMPATIBILITY NOTE: You must remove the default line 12 from config/environments/development.rb:
192  
193     config.breakpoint_server = true
194  
195   This configuration option is no longer available. Rails will fail to start in development mode as long as
196   that's still present.
197
198 * Resource scaffolding returns the created entity.to_xml.  [Jeremy Kemper]
199
200 * Resource scaffolding responds to new.xml.  #8185 [Eric Mill]
201
202 * Include Active Resource in rails:freeze:edge rake task.  [Thomas Fuchs]
203
204 * Include Active Resource instead of Action Web Service [DHH] You can add AWS back with this in config/environment.rb:
205
206     config.load_paths += %W( #{RAILS_ROOT}/vendor/rails/actionwebservice/lib )
207  
208   ...or just gem 'actionwebservice'
209
210 * Give generate scaffold a more descriptive database message.  Closes #7316 [jeremymcanally]
211
212 * Canonicalize RAILS_ROOT by using File.expand_path on Windows, which doesn't have to worry about symlinks, and Pathname#realpath elsewhere, which respects symlinks in relative paths but is incompatible with Windows.  #6755 [Jeremy Kemper, trevor]
213
214 * Deprecation: remove components from controller paths.  [Jeremy Kemper]
215
216 * Add environment variable RAILS_DEFAULT_DATABASE, which allows the builtin default of 'mysql' to be overridden. [Nicholas Seckar]
217
218 * Windows: include MinGW in RUBY_PLATFORM check.  #2982 [okkez000@gmail.com, Kaspar Schiess]
219
220 * Split out the basic plugin locator functionality into an abstract super class. Add a FileSystemLocator to do the job of checking the plugin_paths for plugins. Add plugin_locators configuration option which will iterate over the set of plugin locators and load each of the plugin loaders they return. Rename locater everywhere to locator. [Marcel Molina Jr.]
221
222 * Split plugin location and loading out of the initializer and into a new Plugin namespace, which includes Plugin::Locater and Plugin::Loader. The loader class that is used can be customized using the config.plugin_loader option.  Those monkey patching the plugin loading subsystem take note, the internals changing here will likely break your modifications. The good news is that it should be substantially easier to hook into the plugin locating and loading process now.  [Marcel Molina Jr.]
223
224 * Added assumption that all plugin creators desire to be sharing individuals and release their work under the MIT license [DHH]
225
226 * Added source-annotations extractor tasks to rake [Jamis Buck]. This allows you to add FIXME, OPTIMIZE, and TODO comments to your source code that can then be extracted in concert with rake notes (shows all), rake notes:fixme, rake notes:optimize and rake notes:todo.
227
228 * Added fixtures :all to test_helper.rb to assume that most people just want all their fixtures loaded all the time [DHH]
229
230 * Added config/initializers where all ruby files within it are automatically loaded after the Rails configuration is done, so you don't have to litter the environment.rb file with a ton of mixed stuff [DHH]
231
232 * For new apps, generate a random secret for the cookie-based session store.  [Jeremy Kemper]
233
234 * Stop swallowing errors during rake test [Koz]
235
236 * Update Rails Initializer to use ActionController::Base#view_paths [Rick]
237
238 * Fix gem deprecation warnings, which also means depending on RubyGems 0.9.0+ [Chad Fowler]
239
240 * Plugins may be symlinked in vendor/plugins.  #4245 [brandon, progrium@gmail.com]
241
242 * Resource generator depends on the model generator rather than duplicating it.  #7269 [bscofield]
243
244 * Add/Update usage documentation for script/destroy, resource generator and scaffold_resource generator.  Closes #7092, #7271, #7267.  [bscofield]
245
246 * Update to script.aculo.us 1.7.0.  [Thomas Fuchs]
247
248 * Update to Prototype 1.5.0. [Sam Stephenson]
249
250 * Generator: use destination path for diff tempfiles.  #7015 [alfeld]
251
252 * Fixed that webrick would strip leading newlines and hang connection #4156 [psross]
253
254 * Ensure plugins are in the Dependencies.load_once_paths collection by default.  [Rick]
255   If you really want your plugins to reload, add this to the very top of init.rb:
256  
257     Dependencies.load_once_paths.delete(lib_path)
258
259 * Allow config.to_prepare to work, make the dispatcher safe to 're require'. [Koz, Nicholas Seckar]
260
261 * Fix scaffold_resource generator so it respects the --pretend argument when creating the routes file.  Closes #6852 [fearoffish]
262
263 * Fix Webrick Daemon dispatching bug regarding a bad current working directory.  Closes #4899 [Rick Olson]
264
265 * Make config.plugins affect the load path and the dependencies system.  Allows you to control plugin loading order, and keep disabled plugins off the load path. [James Adam]
266
267 * Don't generate a components directory in new Rails apps.  [Jeremy Kemper]
268
269 * Fixed script/process/spawner to work properly with Mongrel including in -r (daemonize mode) [DHH]
270
271 * Added one-letter aliases for the three default environments to script/console, so script/console p will load the production environment (t for test, d for development) [DHH]
272
273 * Fixed that script/server running against Mongrel should tail the proper log regardless of the environment [DHH]
274
275 * Update initializer to load Rails::VERSION as soon as possible. Closes #6698. [Nicholas Seckar]
276
277 * Added ActiveRecord::Base.clear_active_connections! in development mode so the database connection is not carried over from request to request. Some databases won't reread the schema if that doesn't happen (I'm looking at you SQLite), so you have to restart the server after each migration (= no fun) [DHH]
278
279 * Made RAILS_GEM_VERSION work for beta gems too, so specifying 1.1.6 will give you 1.1.6.4520 if available [DHH]
280
281 * Update to Prototype and script.aculo.us [5579]. [Thomas Fuchs]
282
283 * Made script/server work with -e and -d when using Mongrel [DHH]
284
285 * Update to Prototype 1.5.0_rc2 [5550] which makes it work in Opera again [Thomas Fuchs]
286
287 * Make sure that exceptions which are thrown outside of the user code try their best to be handeled in ApplicationController#rescue_action [Tobias Luetke]
288
289 * Rails::VERSION::STRING should always be available without having to require 'rails/version'.  #6244 [fearoffish]
290
291 * Update to Prototype 1.5.0_rc2. [Sam Stephenson]
292
293 * Add grep-based fallback to reaper, to work in pidless setups [Jamis Buck]
294
295 * Only wrap request processing with our USR1 signal handler so FastCGI can trap it and raise an exception while waiting for connections. Idle processes exit immediately rather than waiting for another request; active processes gracefully exit when the request is finished.  [Jeremy Kemper]
296
297 * Alter prior change to use require_dependency instead of require_or_load. Causes ApplicationController to be reloaded again. Closes #6587. [Nicholas Seckar]
298
299 * Rake: use absolute paths to load lib and vendor tasks so they may be run outside of RAILS_ROOT.  #6584 [jchris]
300
301 * Remove temporary crutch to help ApplicationController be unloaded. Closes #6496. [Nicholas Seckar]
302
303 * scaffold_resource generator uses _path named routes and head instead of render :nothing => true.  #6545 [Josh Susser]
304
305 * Generator can show diff on file collision to help you decide whether to skip or overwrite.  #6364 [jeffw, Jeremy Kemper]
306
307 * Generated directories are recursively svn added, like mkdir -p.  #6416 [NeilW]
308
309 * resource and scaffold_resource generators add a restful route to config/routes.rb  [Jeremy Kemper]
310
311 * Revert environment changes for autoload_paths. [Koz]
312
313 * Update to latest Prototype, which doesn't serialize disabled form elements, adds clone() to arrays, empty/non-string Element.update() and adds a fixes excessive error reporting in WebKit beta versions [Thomas Fuchs]
314
315 * Clean up the output of rake stats,  de-emphasise components and apis, and remove the indents for tests [Koz]
316
317 * Added option to script/process/spawner of specifying the binding address #5133 [zsombor]
318
319 * Update environment.rb comments to include config.autoload_paths. Closes #6478 [caio]
320
321 * Update scaffold to use new form_tag block functionality.  Closes #6480. [BobSilva]
322
323 * Plugin generator: check for class collisions.  #4833 [vinbarnes@gmail.com]
324
325 * Mailer generator: handle mailers in modules, set mime_version in unit test.  [Jeremy Kemper]
326
327 * Set $KCODE to 'u' by default to enable the multibyte safe String#chars proxy. [Koz]
328
329 * Added config.plugins to control which plugins are loaded #6269 [skaes]. By default, everything in vendor/plugins will be loaded, but if you specify config.plugins, only those will be loaded. Example:
330
331     config.plugins = %w[ routing_navigator simply_helpful ]
332
333 * Clean up html on included error pages. [Tim Lucas]
334
335 * Fixed default 404.html and 500.htmls to remove extreme ugliness and include human language [DHH]
336
337 * Update to latest Prototype and script.aculo.us trunk versions [Thomas Fuchs]
338
339 * PostgreSQL: db:test:purge closes open database connections first.  #6236 [alex]
340
341 * Fixed test:uncommitted on Windows (backslash issue) #4999 [paul@paulbutcher.com]
342
343 * Fixed migration creation to work with namespaced models, so script/generate model Gallery::Image will use create_table :gallery_images #6327 [BobSilva]
344
345 * Fixed rename_table on SQLite tables with indexes defined #5942 [brandon@opensoul.org]
346
347 * Added default timeout setting of 5 seconds to SQLite3 database.yml configurations [DHH]
348
349 * Added generated attribute options to script/generate model, like the one found in scaffold_resource and resource [DHH]. Examples:
350
351     ./script/generate model post title:string created_on:date body:text published:boolean
352
353 * Added script/generate resource which works just like scaffold_resource, but creates empty placeholders instead of predefined [DHH]
354
355 * script/runner can run files, pass on arguments, and be used as a shebang.  #6286 [Tuxie, dlpond]
356     #!/usr/bin/env /path/to/my/app/script/runner
357     # Example: just start using your models as if you are in script/console
358     Product.find(:all).each { |product| product.check_inventory }
359
360 * Look for rake tasks in plugin subdirs.  #6259 [obrie]
361
362 * Added map.connect ':controller/:action/:id.:format' as a default route to config/routes.rb [DHH]
363
364 * Updated prototype.js to 1.5.0_rc1 with latest fixes. [Rick Olson]
365
366   - XPATH support
367   - Make Form.getElements() return elements in the correct order
368   - fix broken Form.serialize return
369
370 * session_migration generator adds an index on updated_at.  #6207 [grg]
371
372 * script/server creates the tmp/pids directory.  #6204 [jonathan]
373
374 * Fix script/console --sandbox for internal transactions changes.  #5738 [chris@octopod.info, charles.gerungan@gmail.com]
375
376 * Remove the uncanny default of adding all app/models/*/ directories to the load path. This change will break application which expect the current behavior. As
377 documented in initializer.rb, the workaround is:
378  
379   config.autoload_paths += Dir[RAILS_ROOT + '/app/models/*/']
380  
381 References #6031. [Nicholas Seckar]
382
383 * Update to script.aculo.us 1.6.3 [Thomas Fuchs]
384
385 * Update to Prototype 1.5.0_rc1 [sam]
386
387 * Formally Deprecate the old rake tasks. [Koz]
388
389 * Thoroughly test the FCGI dispatcher.  #5970 [Kevin Clark]
390
391 * Remove Dir.chdir in the Webrick DispatchServlet#initialize method.  Fix bad path errors when trying to load config/routes.rb.  [Rick Olson]
392
393 * Tighten rescue clauses.  #5985 [james@grayproductions.net]
394
395 * Cleaning up tests. [Kevin Clark, Jeremy Kemper]
396
397 * Add Dependencies.load_once_paths. [Nicholas Seckar]
398
399 * Updated to script.aculo.us 1.6.2 [Thomas Fuchs]
400
401 * Assign Routing.controller_paths; fix script/about and rails info controller. [Nicholas Seckar]
402
403 * Don't warn dispatcher of Reloadable deprecations. [Nicholas Seckar]
404
405 * Rearrange application resetting and preparation, fix bug with leaking subclasses hash in ActiveRecord::Base [Rick Olson]
406
407   ActiveRecord::Base.reset_subclasses is called before Dependencies are cleared and classes removed.
408   ActiveRecord::Base.instantiate_observers is called during a Dispatcher preparation callback.
409
410 * Add missing mock directories from the autoload_paths configuration.  [Rick Olson]
411
412 * Nested controller scaffolding also nests the generated layout. [iain d broadfoot]
413
414 * Add "require 'dispatcher'" to webrick server in the continuing quest to squash webrick weirdness. [Nicholas Seckar]
415
416 * Add autoload_paths support to Initializer. [Nicholas Seckar]
417
418 * Fix Dispatcher.reset_application! so that AR subclasses are removed and Observers re-initialized *after* Reloadable classes are removed. Closes #5743.  [Rick Olson]
419
420 * Clarify usage of script/plugin source. Closes #5344. [james.adam@gmail.com]
421
422 * Add Dispatcher.to_prepare and config.to_prepare to provide a pre-request hook. [Nicholas Seckar]
423
424 * Tweak the Rails load order so observers are loaded after plugins, and reloaded in development mode. Closed #5279.  [Rick Olson]
425
426 * Added that you can change the web server port in config/lighttpd.conf from script/server --port/-p #5465 [mats@imediatec.co.uk]
427
428 * script/performance/profiler compatibility with the new ruby-prof, including an option to choose the results printer.  #5679 [shugo@ruby-lang.org]
429
430 * Fixed the failsafe response so it uses either the current recognized controller or ApplicationController.  [Rick Olson]
431
432 * Make sure script/reaper only reaps dispatcher pids by default, and not the spawner's pid. [Jamis Buck]
433
434 * Fix script/plugin about so it uses about.yml and not meta.yml.  [James Adam]
435
436 * Dispatcher processes rescued actions with the same controller that processed the request. #4625 [sd@notso.net]
437
438 * rails -d frontbase to create a new project with a frontbase database.yml. #4945 [mlaster@metavillage.com]
439
440 * Ensure the logger is initialized. #5629 [mike@clarkware.com]
441
442 * Added Mongrel-spawning capabilities to script/process/spawner. Mongrel will be the default choice if installed, otherwise FCGI is tried [DHH]. Examples:
443
444     spawner               # starts instances on 8000, 8001, and 8002 using Mongrel if available
445     spawner fcgi          # starts instances on 8000, 8001, and 8002 using FCGI
446     spawner mongrel -i 5  # starts instances on 8000, 8001, 8002, 8003, and 8004 using Mongrel
447     spawner -p 9100 -i 10 # starts 10 instances counting from 9100 to 9109 using Mongrel if available
448     spawner -p 9100 -r 5  # starts 3 instances counting from 9100 to 9102 and attempts start them every 5 seconds
449
450   Also note that script/process/reaper is Mongrel capable. So the combination of spawner and reaper is a built-in alternative to something like mongrel_cluster.
451
452 * Update scaffolding functional tests to use :id => people(:first) instead of :id => 1. #5612 [evan@protest.net]
453
454 * db:test:clone should remove existing tables before reloading the schema. #5607 [sveit@tradeharbor.com]
455
456 * Fixed migration generation for class names like ACLController #5197 [brad@madriska.com]
457
458 * Added show_source_list and show_call_stack to breakpoints to make it easier to get context #5476 [takiuchi@drecom.co.jp]. Examples:
459
460     irb(#<TopController:0x40822a68>):002:0> show_source_list
461     0001  class TopController < ApplicationController
462     0002    def show
463     0003->    breakpoint
464     0004    end
465     0005   
466     0006    def index
467     0007    end
468     0008   
469     => "/path/to/rails/root/app/controllers/top_controller.rb"
470
471     irb(#<TopController:0x40822a68>):004:0> show_call_stack 3
472     vendor/rails/railties/lib/breakpoint.rb:536:in `breakpoint'
473     vendor/rails/railties/lib/breakpoint.rb:536:in `breakpoint'
474     app/controllers/top_controller.rb:3:in `show'
475     => "/path/to/rails/root/app/controllers/top_controller.rb:3"
476
477 * Generate scaffold layout in subdirectory appropriate to its module nesting. #5511 [nils@alumni.rice.edu]
478
479 * Mongrel: script/server tails the rails log like it does with lighttpd. Prefer mongrel over lighttpd. #5541 [mike@clarkware.com]
480
481 * Don't assume Active Record is available. #5497 [bob@sporkmonger.com]
482
483 * Mongrel: script/server works on Win32. #5499 [jeremydurham@gmail.com]
484
485 * Remove opts.on { |options[:option_name] } style hash assignment. Closes #4440. [nicksieger@gmail.com]
486
487 * Mongrel support for script/server.  #5475 [jeremydurham@gmail.com]
488
489 * Fix script/plugin so it doesn't barf on invalid URLs [Rick]
490
491 * Fix plugin install bug at dir with space. (closes #5359) [Yoshimasa NIWA]
492
493 * Fix bug with 'script/plugin install' so it reports unknown plugin names correctly.  [Rick]
494
495 * Added uninstall.rb hook to plugin handling, such that plugins have a way of removing assets and other artifacts on removal #5003 [takiuchi@drecom.co.jp]
496
497 * Create temporary dirs relative to RAILS_ROOT when running script/server #5014 [elliot@townx.org]
498
499 * Minor tweak to dispatcher to use recognize instead of recognize!, as per the new routes. [Jamis Buck]
500
501 * Make "script/plugin install" work with svn+ssh URLs. [Sam Stephenson]
502
503 * Added lib/ to the directories that will get application docs generated [DHH]
504
505 * Add observer generator. Closes #5167. [francois.beausoleil@gmail.com]
506
507 * Session migration generator obeys pluralize_table_names. #5145 [james.adam@gmail.com]
508
509 * rake test:recent understands subdirectories. #2925 [jerrett@bravenet.com]
510
511 * The app generator detects the XAMPP package's MySQL socket location. #3832 [elliot@townx.org]
512
513 * The app generator sets a session key in application.rb so apps running on the same host may distinguish their cookies. #2967 [rcoder, rails-bug@owl.me.uk]
514
515 * Distinguish the spawners for different processes [DHH]
516
517 * Added -n/--process to script/process/spawner name the process pid (default is dispatch) [DHH]
518
519 * Namespaced OrderedHash so the Rails implementation does not clash with any others. (fixes #4911) [Julian Tarkhanov]
520
521 * Replace Ruby's deprecated append_features in favor of included. [Marcel Molina Jr.]
522
523 * Added script/process/inspector to do simple process status information on Rails dispatchers keeping pid files in tmp/pids [DHH]
524
525 * Added pid file usage to script/process/spawner and script/process/reaper along with a directive in default config/lighttpd.conf file to record the pid. They will all save their pid file in tmp/pids [DHH]
526
527
528 *1.2.3* (March 12th, 2007)
529
530 * Ruby 1.8.6 compatibility
531
532 * Windows: include MinGW in RUBY_PLATFORM check.  #2982 [okkez000@gmail.com, Kaspar Schiess]
533
534 * Stop swallowing errors during rake test [Koz]
535
536
537 *1.2.2* (February 5th, 2007)
538
539 * Fix gem deprecation warnings, which also means depending on RubyGems 0.9.0+ [Chad Fowler]
540
541 * Require the dispatcher for Rails::Configuration#to_prepare.  [Rick]
542
543
544 *1.2.1* (January 16th, 2007)
545
546 * Updated to Active Record 1.15.1, Action Pack 1.13.1, Action Mailer 1.3.1, Action Web Service 1.2.1
547
548
549 *1.2.0* (January 16th, 2007)
550
551 * Update to Prototype 1.5.0. [Sam Stephenson]
552
553 * Generator: use destination path for diff tempfiles.  #7015 [alfeld]
554
555 * Fixed that webrick would strip leading newlines and hang connection #4156 [psross]
556
557 * Ensure plugins are in the Dependencies.load_once_paths collection by default.  [Rick]
558   If you really want your plugins to reload, add this to the very top of init.rb:
559  
560     Dependencies.load_once_paths.delete(lib_path)
561
562 * Fix scaffold_resource generator so it respects the --pretend argument when creating the routes file.  Closes #6852 [fearoffish]
563
564 * Fix Webrick Daemon dispatching bug regarding a bad current working directory.  Closes #4899 [Rick Olson]
565
566 * Make config.plugins affect the load path and the dependencies system.  Allows you to control plugin loading order, and keep disabled plugins off the load path. [James Adam]
567
568 * Don't generate a components directory in new Rails apps.  [Jeremy Kemper]
569
570 * Fixed script/process/spawner to work properly with Mongrel including in -r (daemonize mode) [DHH]
571
572 * Deprecated the name route "root" as it'll be used as a shortcut for map.connect '' in Rails 2.0 [DHH]
573
574 * Fixed that script/server running against Mongrel should tail the proper log regardless of the environment [DHH]
575
576 * Update initializer to load Rails::VERSION as soon as possible. Closes #6698. [Nicholas Seckar]
577
578 * Added ActiveRecord::Base.clear_active_connections! in development mode so the database connection is not carried over from request to request. Some databases won't reread the schema if that doesn't happen (I'm looking at you SQLite), so you have to restart the server after each migration (= no fun) [DHH]
579
580 * Made RAILS_GEM_VERSION work for beta gems too, so specifying 1.1.6 will give you 1.1.6.4520 if available [DHH]
581
582 * Update to Prototype and script.aculo.us [5579]. [Sam Stephenson, Thomas Fuchs]
583
584 * Made script/server work with -e and -d when using Mongrel [DHH]
585
586 * Make sure that exceptions which are thrown outside of the user code try their best to be handeled in ApplicationController#rescue_action [Tobias Luetke]
587
588 * Rails::VERSION::STRING should always be available without having to require 'rails/version'.  #6244 [fearoffish]
589
590 * Add grep-based fallback to reaper, to work in pidless setups [Jamis Buck]
591
592 * Only wrap request processing with our USR1 signal handler so FastCGI can trap it and raise an exception while waiting for connections. Idle processes exit immediately rather than waiting for another request; active processes gracefully exit when the request is finished.  [Jeremy Kemper]
593
594 * Alter prior change to use require_dependency instead of require_or_load. Causes ApplicationController to be reloaded again. Closes #6587. [Nicholas Seckar]
595
596 * Rake: use absolute paths to load lib and vendor tasks so they may be run outside of RAILS_ROOT.  #6584 [jchris]
597
598 * scaffold_resource generator uses _path named routes and head instead of render :nothing => true.  #6545 [Josh Susser]
599
600 * Generator can show diff on file collision to help you decide whether to skip or overwrite.  #6364 [jeffw, Jeremy Kemper]
601
602 * Generated directories are recursively svn added, like mkdir -p.  #6416 [NeilW]
603
604 * resource and scaffold_resource generators add a restful route to config/routes.rb  [Jeremy Kemper]
605
606 * Revert environment changes for autoload_paths. [Koz]
607
608 * Clean up the output of rake stats,  de-emphasise components and apis, and remove the indents for tests [Koz]
609
610 * Added option to script/process/spawner of specifying the binding address #5133 [zsombor]
611
612 * Update environment.rb comments to include config.autoload_paths. Closes #6478 [caio]
613
614 * Update scaffold to use new form_tag block functionality.  Closes #6480. [BobSilva]
615
616 * Plugin generator: check for class collisions.  #4833 [vinbarnes@gmail.com]
617
618 * Mailer generator: handle mailers in modules, set mime_version in unit test.  [Jeremy Kemper]
619
620 * Set $KCODE to 'u' by default to enable the multibyte safe String#chars proxy. [Koz]
621
622 * Added config.plugins to control which plugins are loaded #6269 [skaes]. By default, everything in vendor/plugins will be loaded, but if you specify config.plugins, only those will be loaded. Example:
623
624     config.plugins = %w[ routing_navigator simply_helpful ]
625
626 * Clean up html on included error pages. [Tim Lucas]
627
628 * Fixed default 404.html and 500.htmls to remove extreme ugliness and include human language [DHH]
629
630 * Update to latest Prototype and script.aculo.us trunk versions [Thomas Fuchs]
631
632 * PostgreSQL: db:test:purge closes open database connections first.  #6236 [alex]
633
634 * Fixed test:uncommitted on Windows (backslash issue) #4999 [paul@paulbutcher.com]
635
636 * Fixed migration creation to work with namespaced models, so script/generate model Gallery::Image will use create_table :gallery_images #6327 [BobSilva]
637
638 * Fixed rename_table on SQLite tables with indexes defined #5942 [brandon@opensoul.org]
639
640 * Added default timeout setting of 5 seconds to SQLite3 database.yml configurations [DHH]
641
642 * Added generated attribute options to script/generate model, like the one found in scaffold_resource and resource [DHH]. Examples:
643
644     ./script/generate model post title:string created_on:date body:text published:boolean
645
646 * Added script/generate resource which works just like scaffold_resource, but creates empty placeholders instead of predefined [DHH]
647
648 * script/runner can run files, pass on arguments, and be used as a shebang.  #6286 [Tuxie, dlpond]
649     #!/usr/bin/env /path/to/my/app/script/runner
650     # Example: just start using your models as if you are in script/console
651     Product.find(:all).each { |product| product.check_inventory }
652
653 * Look for rake tasks in plugin subdirs.  #6259 [obrie]
654
655 * Added map.connect ':controller/:action/:id.:format' as a default route to config/routes.rb [DHH]
656
657 * session_migration generator adds an index on updated_at.  #6207 [grg]
658
659 * script/server creates the tmp/pids directory.  #6204 [jonathan]
660
661 * Fix script/console --sandbox for internal transactions changes.  #5738 [chris@octopod.info, charles.gerungan@gmail.com]
662
663 * Remove the uncanny default of adding all app/models/*/ directories to the load path. This change will break application which expect the current behavior. As
664 documented in initializer.rb, the workaround is:
665  
666   config.autoload_paths += Dir[RAILS_ROOT + '/app/models/*/']
667  
668 References #6031. [Nicholas Seckar]
669
670 * Update to script.aculo.us 1.6.3 [Thomas Fuchs]
671
672 * Formally Deprecate the old rake tasks. [Koz]
673
674 * Thoroughly test the FCGI dispatcher.  #5970 [Kevin Clark]
675
676 * Remove Dir.chdir in the Webrick DispatchServlet#initialize method.  Fix bad path errors when trying to load config/routes.rb.  [Rick Olson]
677
678 * Tighten rescue clauses.  #5985 [james@grayproductions.net]
679
680 * Cleaning up tests. [Kevin Clark, Jeremy Kemper]
681
682 * Add Dependencies.load_once_paths. [Nicholas Seckar]
683
684 * Assign Routing.controller_paths; fix script/about and rails info controller. [Nicholas Seckar]
685
686 * Don't warn dispatcher of Reloadable deprecations. [Nicholas Seckar]
687
688 * Rearrange application resetting and preparation, fix bug with leaking subclasses hash in ActiveRecord::Base [Rick Olson]
689
690   ActiveRecord::Base.reset_subclasses is called before Dependencies are cleared and classes removed.
691   ActiveRecord::Base.instantiate_observers is called during a Dispatcher preparation callback.
692
693 * Add missing mock directories from the autoload_paths configuration.  [Rick Olson]
694
695 * Nested controller scaffolding also nests the generated layout. [iain d broadfoot]
696
697 * Add "require 'dispatcher'" to webrick server in the continuing quest to squash webrick weirdness. [Nicholas Seckar]
698
699 * Add autoload_paths support to Initializer. [Nicholas Seckar]
700
701 * Fix Dispatcher.reset_application! so that AR subclasses are removed and Observers re-initialized *after* Reloadable classes are removed. Closes #5743.  [Rick Olson]
702
703 * Clarify usage of script/plugin source. Closes #5344. [james.adam@gmail.com]
704
705 * Add Dispatcher.to_prepare and config.to_prepare to provide a pre-request hook. [Nicholas Seckar]
706
707 * Tweak the Rails load order so observers are loaded after plugins, and reloaded in development mode. Closed #5279.  [Rick Olson]
708
709 * Added that you can change the web server port in config/lighttpd.conf from script/server --port/-p #5465 [mats@imediatec.co.uk]
710
711 * script/performance/profiler compatibility with the new ruby-prof, including an option to choose the results printer.  #5679 [shugo@ruby-lang.org]
712
713 * Fixed the failsafe response so it uses either the current recognized controller or ApplicationController.  [Rick Olson]
714
715 * Make sure script/reaper only reaps dispatcher pids by default, and not the spawner's pid. [Jamis Buck]
716
717 * Fix script/plugin about so it uses about.yml and not meta.yml.  [James Adam]
718
719 * Dispatcher processes rescued actions with the same controller that processed the request. #4625 [sd@notso.net]
720
721 * rails -d frontbase to create a new project with a frontbase database.yml. #4945 [mlaster@metavillage.com]
722
723 * Ensure the logger is initialized. #5629 [mike@clarkware.com]
724
725 * Added Mongrel-spawning capabilities to script/process/spawner. Mongrel will be the default choice if installed, otherwise FCGI is tried [DHH]. Examples:
726
727     spawner               # starts instances on 8000, 8001, and 8002 using Mongrel if available
728     spawner fcgi          # starts instances on 8000, 8001, and 8002 using FCGI
729     spawner mongrel -i 5  # starts instances on 8000, 8001, 8002, 8003, and 8004 using Mongrel
730     spawner -p 9100 -i 10 # starts 10 instances counting from 9100 to 9109 using Mongrel if available
731     spawner -p 9100 -r 5  # starts 3 instances counting from 9100 to 9102 and attempts start them every 5 seconds
732
733   Also note that script/process/reaper is Mongrel capable. So the combination of spawner and reaper is a built-in alternative to something like mongrel_cluster.
734
735 * Update scaffolding functional tests to use :id => people(:first) instead of :id => 1. #5612 [evan@protest.net]
736
737 * db:test:clone should remove existing tables before reloading the schema. #5607 [sveit@tradeharbor.com]
738
739 * Fixed migration generation for class names like ACLController #5197 [brad@madriska.com]
740
741 * Added show_source_list and show_call_stack to breakpoints to make it easier to get context #5476 [takiuchi@drecom.co.jp]. Examples:
742
743     irb(#<TopController:0x40822a68>):002:0> show_source_list
744     0001  class TopController < ApplicationController
745     0002    def show
746     0003->    breakpoint
747     0004    end
748     0005   
749     0006    def index
750     0007    end
751     0008   
752     => "/path/to/rails/root/app/controllers/top_controller.rb"
753
754     irb(#<TopController:0x40822a68>):004:0> show_call_stack 3
755     vendor/rails/railties/lib/breakpoint.rb:536:in `breakpoint'
756     vendor/rails/railties/lib/breakpoint.rb:536:in `breakpoint'
757     app/controllers/top_controller.rb:3:in `show'
758     => "/path/to/rails/root/app/controllers/top_controller.rb:3"
759
760 * Generate scaffold layout in subdirectory appropriate to its module nesting. #5511 [nils@alumni.rice.edu]
761
762 * Mongrel: script/server tails the rails log like it does with lighttpd. Prefer mongrel over lighttpd. #5541 [mike@clarkware.com]
763
764 * Don't assume Active Record is available. #5497 [bob@sporkmonger.com]
765
766 * Mongrel: script/server works on Win32. #5499 [jeremydurham@gmail.com]
767
768 * Remove opts.on { |options[:option_name] } style hash assignment. Closes #4440. [nicksieger@gmail.com]
769
770 * Mongrel support for script/server.  #5475 [jeremydurham@gmail.com]
771
772 * Fix script/plugin so it doesn't barf on invalid URLs [Rick]
773
774 * Fix plugin install bug at dir with space. (closes #5359) [Yoshimasa NIWA]
775
776 * Fix bug with 'script/plugin install' so it reports unknown plugin names correctly.  [Rick]
777
778 * Added uninstall.rb hook to plugin handling, such that plugins have a way of removing assets and other artifacts on removal #5003 [takiuchi@drecom.co.jp]
779
780 * Create temporary dirs relative to RAILS_ROOT when running script/server #5014 [elliot@townx.org]
781
782 * Minor tweak to dispatcher to use recognize instead of recognize!, as per the new routes. [Jamis Buck]
783
784 * Make "script/plugin install" work with svn+ssh URLs. [Sam Stephenson]
785
786 * Added lib/ to the directories that will get application docs generated [DHH]
787
788 * Add observer generator. Closes #5167. [francois.beausoleil@gmail.com]
789
790 * Session migration generator obeys pluralize_table_names. #5145 [james.adam@gmail.com]
791
792 * rake test:recent understands subdirectories. #2925 [jerrett@bravenet.com]
793
794 * The app generator detects the XAMPP package's MySQL socket location. #3832 [elliot@townx.org]
795
796 * The app generator sets a session key in application.rb so apps running on the same host may distinguish their cookies. #2967 [rcoder, rails-bug@owl.me.uk]
797
798 * Distinguish the spawners for different processes [DHH]
799
800 * Added -n/--process to script/process/spawner name the process pid (default is dispatch) [DHH]
801
802 * Namespaced OrderedHash so the Rails implementation does not clash with any others. (fixes #4911) [Julian Tarkhanov]
803
804 * Replace Ruby's deprecated append_features in favor of included. [Marcel Molina Jr.]
805
806 * Added script/process/inspector to do simple process status information on Rails dispatchers keeping pid files in tmp/pids [DHH]
807
808 * Added pid file usage to script/process/spawner and script/process/reaper along with a directive in default config/lighttpd.conf file to record the pid. They will all save their pid file in tmp/pids [DHH]
809
810
811 *1.1.6* (August 10th, 2006)
812
813 * Additional security patch
814
815
816 *1.1.5* (August 8th, 2006)
817
818 * Mention in docs that config.frameworks doesn't work when getting Rails via Gems.  #4857 [Alisdair McDiarmid]
819
820 * Change the scaffolding layout to use yield rather than @content_for_layout. [Marcel Molina Jr.]
821
822 * Includes critical security patch
823
824
825 *1.1.4* (June 29th, 2006)
826
827 * Remove use of opts.on { |options[:name] } style hash assignment. References #4440. [headius@headius.com]
828
829 * Updated to Action Pack 1.12.3, ActionWebService 1.1.4, ActionMailer 1.2.3
830
831
832 *1.1.3* (June 27th, 2006)
833
834 * Updated to Active Record 1.14.3, Action Pack 1.12.2, ActionWebService 1.1.3, ActionMailer 1.2.2
835
836
837 *1.1.2* (April 9th, 2006)
838
839 * Mention in docs that config.frameworks doesn't work when getting Rails via Gems. Closes #4857. [Alisdair McDiarmid]
840
841 * Change the scaffolding layout to use yield rather than @content_for_layout. [Marcel Molina Jr.]
842
843 * Added rake rails:update:configs to update config/boot.rb from the latest (also included in rake rails:update) [DHH]
844
845 * Fixed that boot.rb would set RAILS_GEM_VERSION twice, not respect an uncommented RAILS_GEM_VERSION line, and not use require_gem [DHH]
846
847
848 *1.1.1* (April 6th, 2006)
849
850 * Enhances plugin#discover allowing it to discover svn:// like URIs (closes #4565) [ruben.nine@gmail.com]
851
852 * Update to Prototype 1.5.0_rc0 [Sam Stephenson]
853
854 * Fixed that the -r/--ruby path option of the rails command was not being respected #4549 [ryan.raaum@gmail.com]
855
856 * Added that Dispatcher exceptions should not be shown to the user unless a default log has not been configured. Instead show public/500.html [DHH]
857
858 * Fixed that rake clone_structure_to_test should quit on pgsql if the dump is unsuccesful #4585 [augustz@augustz.com]
859
860 * Fixed that rails --version should have the return code of 0 (success) #4560 [blair@orcaware.com]
861
862 * Install alias so Rails::InfoController is accessible at /rails_info. Closes #4546. [Nicholas Seckar]
863
864 * Fixed that spawner should daemonize if running in repeat mode [DHH]
865
866 * Added TAG option for rake rails:freeze:edge, so you can say rake rails:freeze:edge TAG=rel_1-1-0 to lock to the 1.1.0 release [DHH]
867
868 * Applied Prototype $() performance patches (#4465, #4477) and updated script.aculo.us [Sam Stephenson, Thomas Fuchs]
869
870 * Use --simple-prompt instead of --prompt-mode simple for console compatibility with Windows/Ruby 1.8.2 #4532 [starr@starrnhorne.com]
871
872 * Make Rails::VERSION implicitly loadable #4491. [Nicholas Seckar]
873
874 * Fixed rake rails:freeze:gems #4518 [benji@silverinsanity.com]
875
876 * Added -f/--freeze option to rails command for freezing the application to the Rails version it was generated with [DHH]
877
878 * Added gem binding of apps generated through the rails command to the gems of they were generated with [Nicholas Seckar]
879
880 * Added expiration settings for JavaScript, CSS, HTML, and images to default lighttpd.conf [DHH]
881
882 * Added gzip compression for JavaScript, CSS, and HTML to default lighttpd.conf [DHH]
883
884 * Avoid passing escapeHTML non-string in Rails' info controller [Nicholas Seckar]
885
886
887 *1.1.0* (March 27th, 2006)
888
889 * Allow db:fixtures:load to load a subset of the applications fixtures. [Chad Fowler]
890
891   ex.
892
893    rake db:fixtures:load FIXTURES=customers,plans
894
895 * Update to Prototype 1.5.0_pre1 [Sam Stephenson]
896
897 * Update to script.aculo.us 1.6 [Thomas Fuchs]
898
899 * Add an integration_test generator [Jamis Buck]
900
901 * Make all ActionView helpers available in the console from the helper method for debugging purposes. n.b.: Only an 80% solution. Some stuff won't work, most will. [Marcel Molina Jr.]
902
903   ex.
904
905     >> puts helper.options_for_select([%w(a 1), %w(b 2), %w(c 3)])
906     <option value="1">a</option>
907     <option value="2">b</option>
908     <option value="3">c</option>
909     => nil
910
911 * Replaced old session rake tasks with db:sessions:create to generate a migration, and db:sessions:clear to remove sessions. [Rick Olson]
912
913 * Reject Ruby 1.8.3 when loading Rails; extract version checking code. [Chad Fowler]
914
915 * Remove explicit loading of RailsInfo and RailsInfoController. [Nicholas Seckar]
916
917 * Move RailsInfo and RailsInfoController to Rails::Info and Rails::InfoController. [Nicholas Seckar]
918
919 * Extend load path with Railties' builtin directory to make adding support code easy. [Nicholas Seckar]
920
921 * Fix the rails_info controller by explicitly loading it, and marking it as not reloadable. [Nicholas Seckar]
922
923 * Fixed rails:freeze:gems for Windows #3274 [paul@paulbutcher.com]
924
925 * Added 'port open?' check to the spawner when running in repeat mode so we don't needlessly boot the dispatcher if the port is already in use anyway #4089 [guy.naor@famundo.com]
926
927 * Add verification to generated scaffolds,  don't allow get for unsafe actions [Michael Koziarski]
928
929 * Don't replace application.js in public/javascripts if it already exists [Cody Fauser]
930
931 * Change test:uncommitted to delay execution of `svn status` by using internal Rake API's. [Nicholas Seckar]
932
933 * Use require_library_or_gem to load rake in commands/server.rb.  Closes #4205.  [rob.rasmussen@gmail.com]
934
935 * Use the Rake API instead of shelling out to create the tmp directory in commands/server.rb. [Chad Fowler]
936
937 * Added a backtrace to the evil WSOD (White Screen of Death).  Closes #4073. TODO: Clearer exceptions [Rick Olson]
938
939 * Added tracking of database and framework versions in script/about #4088 [charles.gerungan@gmail.com/Rick Olson]
940
941 * Added public/javascripts/application.js as a sample since it'll automatically be included in javascript_include_tag :defaults [DHH]
942
943 * Added socket cleanup for lighttpd, both before and after [DHH]
944
945 * Added automatic creation of tmp/ when running script/server [DHH]
946
947 * Added silence_stream that'll work on both STDERR or STDOUT or any other stream and deprecated silence_stderr in the process [DHH]
948
949 * Added reload! method to script/console to reload all models and others that include Reloadable without quitting the console #4056 [esad@esse.at]
950
951 * Added that rake rails:freeze:edge will now just export all the contents of the frameworks instead of just lib, so stuff like rails:update:scripts, rails:update:javascripts, and script/server on lighttpd still just works #4047 [DHH]
952
953 * Added fix for upload problems with lighttpd from Safari/IE to config/lighttpd.conf #3999 [thijs@fngtps.com]
954
955 * Added test:uncommitted to test changes since last checkin to Subversion #4035 [technomancy@gmail.com]
956
957 * Help script/about print the correct svn revision when in a non-English locale.  #4026 [babie7a0@ybb.ne.jp]
958
959 * Add 'app' accessor to script/console as an instance of Integration::Session [Jamis Buck]
960
961 * Generator::Base#usage takes an optional message argument which defaults to Generator::Base#usage_message. [Jeremy Kemper]
962
963 * Remove the extraneous AR::Base.threaded_connections setting from the webrick server. [Jeremy Kemper]
964
965 * Add integration test support to app generation and testing [Jamis Buck]
966
967 * Added namespaces to all tasks, so for example load_fixtures is now db:fixtures:load. All the old task names are still valid, they just point to the new namespaced names. "rake -T" will only show the namespaced ones, though [DHH]
968
969 * CHANGED DEFAULT: ActiveRecord::Base.schema_format is now :ruby by default instead of :sql. This means that we'll assume you want to live in the world of db/schema.rb where the grass is green and the girls are pretty. If your schema contains un-dumpable elements, such as constraints or database-specific column types, you just got an invitation to either 1) patch the dumper to include foreign key support, 2) stop being db specific, or 3) just change the default in config/environment.rb to config.active_record.schema_format = :sql -- we even include an example for that on new Rails skeletons now. Brought to you by the federation of opinionated framework builders! [DHH]
970
971 * Added -r/--repeat option to script/process/spawner that offers the same loop protection as the spinner did. This deprecates the script/process/spinner, so it's no longer included in the default Rails skeleton, but still available for backwards compatibility #3461 [ror@andreas-s.net]
972
973 * Added collision option to template generation in generators #3329 [anna@wota.jp]. Examples:
974
975     m.template "stuff.config" , "config/stuff.config" , :collision => :skip
976     m.template "auto-stamping", "config/generator.log", :collision => :force
977
978 * Added more information to script/plugin's doings to ease debugging #3755 [Rick Olson]
979
980 * Changed the default configuration for lighttpd to use tmp/sockets instead of log/ for the FastCGI sockets [DHH]
981
982 * Added a default configuration of the FileStore for fragment caching if tmp/cache is available, which makes action/fragment caching ready to use out of the box with no additional configuration [DHH]
983
984 * Changed the default session configuration to place sessions in tmp/sessions, if that directory is available, instead of /tmp (this essentially means a goodbye to 9/10 White Screen of Death errors and should have web hosting firms around the world cheering) [DHH]
985
986 * Added tmp/sessions, tmp/cache, and tmp/sockets as default directories in the Rails skeleton [DHH]
987
988 * Added that script/generate model will now automatically create a migration file for the model created. This can be turned off by calling the generator with --skip-migration [DHH]
989
990 * Added -d/--database option to the rails command, so you can do "rails --database=sqlite2 myapp" to start a new application preconfigured to use SQLite2 as the database. Removed the configuration examples from SQLite and PostgreSQL from the default MySQL configuration [DHH]
991
992 * Allow script/server -c /path/to/lighttpd.conf [Jeremy Kemper]
993
994 * Remove hardcoded path to reaper script in script/server [Jeremy Kemper]
995
996 * Update script.aculo.us to V1.5.3 [Thomas Fuchs]
997
998 * Added SIGTRAP signal handler to RailsFCGIHandler that'll force the process into a breakpoint after the next request. This breakpoint can then be caught with script/breakpointer and give you access to the Ruby image inside that process. Useful for debugging memory leaks among other things [DHH]
999
1000 * Changed default lighttpd.conf to use CWD from lighttpd 1.4.10 that allows the same configuration to be used for both detach and not. Also ensured that auto-repeaping of FCGIs only happens when lighttpd is not detached. [DHH]
1001
1002 * Added Configuration#after_initialize for registering a block which gets called after the framework is fully initialized.  Useful for things like per-environment configuration of plugins. [Michael Koziarski]
1003
1004 * Added check for RAILS_FRAMEWORK_ROOT constant that allows the Rails framework to be found in a different place than vendor/rails. Should be set in boot.rb. [DHH]
1005
1006 * Fixed that static requests could unlock the mutex guarding dynamic requests in the WEBrick servlet #3433 [tom@craz8.com]
1007
1008 * Fixed documentation tasks to work with Rake 0.7.0 #3563 [kazuhiko@fdiary.net]
1009
1010 * Update to Prototype 1.5.0_pre0 [Sam Stephenson]
1011
1012 * Sort the list of plugins so we load in a consistent order [Rick Olson]
1013
1014 * Show usage when script/plugin is called without arguments [tom@craz8.com]
1015
1016 * Corrected problems with plugin loader where plugins set 'name' incorrectly #3297 [anna@wota.jp]
1017
1018 * Make migration generator only report on exact duplicate names, not partial dupliate names. #3442 [jeremy@planetargon.com Marcel Molina Jr.]
1019
1020 * Fix typo in mailer generator USAGE. #3458 [chriztian.steinmeier@gmail.com]
1021
1022 * Ignore version mismatch between pg_dump and the database server. #3457 [simon.stapleton@gmail.com]
1023
1024 * Reap FCGI processes after lighttpd exits. [Sam Stephenson]
1025
1026 * Honor ActiveRecord::Base.pluralize_table_names when creating and destroying session store table. #3204. [rails@bencurtis.com, Marcel Molina Jr.]
1027
1028 *1.0.0* (December 13th, 2005)
1029
1030 * Update instructions on how to find and install generators. #3172. [Chad Fowler]
1031
1032 * Generator looks in vendor/generators also.  [Chad Fowler]
1033
1034 * Generator copies files in binary mode.  #3156 [minimudboy@gmail.com]
1035
1036 * Add builtin/ to the gemspec. Closes #3047. [Nicholas Seckar, Sam Stephenson]
1037
1038 * Add install.rb file to plugin generation which is loaded, if it exists, when you install a plugin. [Marcel Molina Jr.]
1039
1040 * Run initialize_logger in script/lighttpd to ensure the log file exists before tailing it. [Sam Stephenson]
1041
1042 * Make load_fixtures include csv fixtures. #3053. [me@mdaines.com]
1043
1044 * Fix freeze_gems so that the latest rails version is dumped by default. [Nicholas Seckar]
1045
1046 * script/plugin: handle root paths and plugin names which contain spaces.  #2995 [justin@aspect.net]
1047
1048 * Model generator: correct relative path to test_helper in unit test.  [Jeremy Kemper]
1049
1050 * Make the db_schema_dump task honor the SCHEMA environment variable if present the way db_schema_import does. #2931. [Blair Zajac]
1051
1052 * Have the lighttpd server script report the actual ip to which the server is bound. #2903. [Adam]
1053
1054 * Add plugin library directories to the load path after the lib directory so that libraries in the lib directory get precedence. #2910. [james.adam@gmail.com]
1055
1056 * Make help for the console command more explicit about how to specify the desired environment in which to run the console. #2911. [anonymous]
1057
1058 * PostgreSQL: the purge_test_database Rake task shouldn't explicitly specify the template0 template when creating a fresh test database.  #2964 [dreamer3@gmail.com]
1059
1060 * Introducing the session_migration generator.  Creates an add_session_table migration.  Allows generator to specify migrations directory.  #2958, #2960 [Rick Olson]
1061
1062 * script/console uses RAILS_ENV environment variable if present.  #2932 [Blair Zajac <blair@orcaware.com>
1063
1064 * Windows: eliminate the socket option in database.yml.  #2924 [Wayne Vucenic <waynev@gmail.com>]
1065
1066 * Eliminate nil from newly generated logfiles.  #2927 [Blair Zajac <blair@orcaware.com>]
1067
1068 * Rename Version constant to VERSION. #2802 [Marcel Molina Jr.]
1069
1070 * Eliminate Subversion dependencies in scripts/plugin.  Correct install options.  Introduce --force option to reinstall a plugin.  Remove useless --long option for list.  Use --quiet to quiet the download output and --revision to update to a specific svn revision.  #2842 [Chad Fowler, Rick Olson]
1071
1072 * SQLite: the clone_structure_to_test and purge_test_database Rake tasks should always use the test environment.  #2846 [Rick Olson]
1073
1074 * Make sure that legacy db tasks also reference :database for SQLite #2830 [kazuhiko@fdiary.net]
1075
1076 * Pass __FILE__ when evaluating plugins' init.rb.  #2817 [james.adam@gmail.com]
1077
1078 * Better svn status matching for generators.  #2814 [François Beausoleil <francois.beausoleil@gmail.com>, Blair Zajac <blair@orcaware.com>]
1079
1080 * Don't reload routes until plugins have been loaded so they have a chance to extend the routing capabilities [DHH]
1081
1082 * Don't detach or fork for script/server tailing [Nicholas Seckar]
1083
1084 * Changed all script/* to use #!/usr/bin/env ruby instead of hard-coded Ruby path. public/dispatcher.* still uses the hard-coded path  for compatibility with web servers that don't have Ruby in path [DHH]
1085
1086 * Force RAILS_ENV to be "test" when running tests, so that ENV["RAILS_ENV"] = "production" in config/environment.rb doesn't wreck havok [DHH] #2660
1087
1088 * Correct versioning in :freeze_gems Rake task.  #2778 [jakob@mentalized.net, Jeremy Kemper]
1089
1090 * Added an omnipresent RailsInfoController with a properties action that delivers an HTML rendering of Rails::Info (but only when local_request? is true). Added a new default index.html which fetches this with Ajax. [Sam Stephenson]
1091
1092
1093 *0.14.3 (RC4)* (November 7th, 2005)
1094
1095 * Add 'add_new_scripts' rake task for adding new rails scripts to script/* [Jamis Buck]
1096
1097 * Remove bogus hyphen from script/process/reaper calls to 'ps'.  #2767 [anonymous]
1098
1099 * Copy lighttpd.conf when it is first needed, instead of on app creation [Jamis Buck]
1100
1101 * Use require_library_or_gem 'fcgi' in script/server [Sam Stephenson]
1102
1103 * Added default lighttpd config in config/lighttpd.conf and added a default runner for lighttpd in script/server (works like script/server, but using lighttpd and FastCGI). It will use lighttpd if available, otherwise WEBrick. You can force either or using 'script/server lighttpd' or 'script/server webrick' [DHH]
1104
1105 * New configuration option config.plugin_paths which may be a single path like the default 'vendor/plugins' or an array of paths: ['vendor/plugins', 'lib/plugins'].  [Jeremy Kemper]
1106
1107 * Plugins are discovered in nested paths, so you c