git clone git://github.com/rails/rails.git
Fixed JSON encoding to use quoted keys according to the JSON standard (closes #8762) [choonkat/chuyeow]
Add attr_readonly to specify columns that are skipped during a normal ActiveRecord #save operation. Closes #6896 [dcmanges]
Make size for has_many :through use counter cache if it exists. Closes #9734 [xaviershay]
Don't implicitly assign instance variables by using them as block arguments
Remove DB2 adapter since IBM chooses to maintain their own adapter instead.
Extract Oracle, SQLServer, and Sybase adapters into gems.
Ruby 1.9 compat for instance method check in Mysql adapter.
Ruby 1.9 compat for hash_ext_test
Updated CHANGELOGs. They need to be filtered for duplicates
Updated
Mark Test::Unit#assert_difference incompatibility with Ruby 2 due to Proc#binding usage
Fixed that a response has to be available for that exact mime type for it to be called (otherwise 406 should occur)
Remind that you need a server restart for initializer defaults
Test::Unit#assert_difference Ruby 1.9 compat
JSON decoding Ruby 1.9 compat. Mark a section that's unnecessarily slow.
Fixed that strip_tags blows up with invalid html (closes #9730) [lifo]
Ensure request is present, as well as defined. [nzkoz]
Failing counter cache test. References #6896.
Missing test
Re-enable Routing optimisation code for _url methods, add defined?(request) to the guard conditions
Moved the SourceAnnotationExtractor to a separate file in case libraries try to load the rails rake tasks twice. rspec_on_rails, I'm looking at you. [Rick]
Better error messages if you leave out the :secret option for request forgery protection. Closes #9670 [rick]
Add missing require
[7668] part deux (forgot to add the railties love to the mix)
Allow ability to disable request forgery protection, disable it in test mode by default. Closes #9693 [lifofifo]
Fixtures test fixes and general cleanup. Closes #9682 [norbert]
Fixed spelling errors (closes #9706) [tarmo/rmm5t]
MySQL: change_column raises if the table or column doesn't exist.
BufferedLogger#add converts the message to a string. Closes #9724.