git clone git://github.com/rails/rails.git
Made the sharing of request and response safer
Fixed path problem
Added fine-grained assertions for Routing
Optimized the SQL used to generate has_and_belongs_to_many queries by listing the join table first #693 [yerejm]
Fixed that when using validation macros with a custom message, if you happened to use single quotes in the message string you would get a parsing error #657 [tonka]
Made Action Mailer templates use UTF-8 as default
Added Date::Conversions for getting dates in different convenient string representations and other objects
Added Time::Conversions for getting times in different convenient string representations and other objects
Added some examples for the time calculations
Make it possible to say Time.now.in(1.year)
Added last_month and next_month
Added next_week and made beginning_of_week be a Monday, not a Sunday
Treat UTC times nicer
Added Time::Calculations to ask for things like Time.now.tomorrow, Time.now.yesterday, Time.now.months_ago(4) #580 [DP|Flurin]
Redirects to root should be / not ""
Fixed that Active Record would throw Broken Pipe errors with FCGI when the MySQL connection timed out instead of reconnecting #428 [Nicholas Seckar]
Fixed more caching and routing love
Fixed caching for root and Routing for getting back the current url
Added lighttpd config example and changed apache.log to less discriminating server.log
Remove debugging statement
All the memory-based stores should use a mutex #611 [inspire22]
Fixed that script/server -d was broken so daemon mode couldn't be used #687 [Nicholas Seckar]
Set Railsy defaults for breakpoint client
Upgraded to breakpoint 92
Added options to specify an SSL connection for MySQL. Define the following attributes in the connection config (config/database.yml in Rails) to use it: sslkey, sslcert, sslca, sslcapath, sslcipher. To use SSL with no client certs, just set :sslca = /dev/null. http://dev.mysql.com/doc/mysql/en/secure-connections.html #604 [daniel@nightrunner.com]
Added automatic dropping/creating of test tables for running the unit tests on all databases #587 [adelle@bullet.net.au]
Blame controller files #684
Never end generated paths with a '/' #683
Help against errors in ApplicationController
Made caching work for WEBrick and lighttpd by appending .html for all URLs not already containing a dot