Changeset 8837
- Timestamp:
- 02/10/08 01:09:47 (5 months ago)
- Files:
-
- branches/2-0-stable/actionpack/CHANGELOG (modified) (1 diff)
- branches/2-0-stable/activerecord/CHANGELOG (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2-0-stable/actionpack/CHANGELOG
r8830 r8837 1 1 *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" }) 2 5 3 6 * 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 1 1 *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 6 2 7 3 * Ensure that modifying has_and_belongs_to_many actions clear the query cache. Closes #10840 [john.andrews]