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

Changeset 8837

Show
Ignore:
Timestamp:
02/10/08 01:09:47 (5 months ago)
Author:
nzkoz
Message:

Rejig strange changelog error

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2-0-stable/actionpack/CHANGELOG

    r8830 r8837  
    11*SVN* 
     2 
     3* Make assert_routing aware of the HTTP method used.  #8039 [mpalmer] 
     4   e.g. assert_routing({ :method => 'put', :path => '/product/321' }, { :controller => "product", :action => "update", :id => "321" }) 
    25 
    36* Remove ERB trim variables from trace template in case ActionView::Base.erb_trim_mode is changed in the application.  #10098 [tpope, kampers] 
  • branches/2-0-stable/activerecord/CHANGELOG

    r8836 r8837  
    11*SVN* 
    2  
    3 * Make assert_routing aware of the HTTP method used.  #8039 [mpalmer] 
    4    e.g. assert_routing({ :method => 'put', :path => '/product/321' }, { :controller => "product", :action => "update", :id => "321" }) 
    5  
    62 
    73* Ensure that modifying has_and_belongs_to_many actions clear the query cache.  Closes #10840 [john.andrews]