git clone git://github.com/rails/rails.git
Fixed documentation and prepared for release of 0.12
Added Base.save! that attempts to save the record just like Base.save but will raise a InvalidRecord exception instead of returning false if the record is not valid [After much pestering from Dave Thomas]
Updated to take compilation out of the measurements
More documentation for .htaccess #1137
Speeded up eager loading a whole bunch
Added support for web servers that use PATH_INFO instead of REQUEST_URI like IIS #1014 [BradG/Nicholas Seckar]
Updated documentation here and there
Added documentation for new Base.find API and eager association loading
Added graceful handling of PUT, DELETE, and OPTIONS requests for a complete coverage of REST functionality #1136 [joshknowles@gmail.com]
Do document this...
Fixed PostgreSQL usage of fixtures with regards to public schemas and table names with dots #962 [gnuman1@gmail.com]
Fixed that fixtures were being deleted in the same order as inserts causing FK errors #890 [andrew.john.peters@gmail.com]
Move nodoc to the individual methods
Added that deliver_* will now return the email that was sent
Refactored a bit
Changed habtm eager loading to also use joins
Fixed that you can now pass an alternative :href option to link_to_function/remote in order to point to somewhere other than # if the javascript fails or is turned off. You can do the same with form_remote_tag by passing in :action. #1113 [Sam Stephenson]
Fixes for postgresql testing #1129, #1130, #1131
Update to Prototype 1.2.0
add backwards compatibility for the public API change made to #api_methods, as it is
Made the dynamic finders use the new find API and updated the examples here and there
Added assert_tag and assert_no_tag as a much improved alternative to the deprecated assert_template_xpath_match #1126 [Jamis Buck]
Added Request#xml_http_request? (and an alias xhr?) to that'll return true when the request came from one of the Javascript helper methods (Ajax). This can be used to give one behavior for modern browsers supporting Ajax, another to old browsers #1127 [Sam Stephenson]
Fixed page caching for non-vhost applications living underneath the root #1004 [Ben Schumacher]
Fixes a problem with the SQL Adapter which was resulting in IDENTITY_INSERT not being set to ON when it should be #1104 [adelle]
SqlServer fixtures - CategoriesPosts
Hide the deprecated methods from the docs
Deprecated the majority of all the testing assertions and replaced them with a much smaller core and access to all the collections the old assertions relied on. That way the regular test/unit assertions can be used against these. Added documentation about how to use it all.
Added the option to specify the acceptance string in validates_acceptance_of #1106 [caleb@aei-tech.com]