Skip to content

Commit

Permalink
Fix routing test and add changelog note about draw no longer clearing…
Browse files Browse the repository at this point in the history
… the route set
  • Loading branch information
dhh committed Nov 26, 2008
1 parent e2362ba commit 7d8f9ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*2.3.0 [Edge]* *2.3.0 [Edge]*


* Added support for multiple routes.rb files (useful for plugin engines). This also means that draw will no longer clear the route set, you have to do that by hand (shouldn't make a difference to you unless you're doing some funky stuff) [DHH]

* Dropped formatted_* routes in favor of just passing in :format as an option. This cuts resource routes generation in half #1359 [aaronbatalion] * Dropped formatted_* routes in favor of just passing in :format as an option. This cuts resource routes generation in half #1359 [aaronbatalion]


* Remove support for old double-encoded cookies from the cookie store. These values haven't been generated since before 2.1.0, and any users who have visited the app in the intervening 6 months will have had their cookie upgraded. [Koz] * Remove support for old double-encoded cookies from the cookie store. These values haven't been generated since before 2.1.0, and any users who have visited the app in the intervening 6 months will have had their cookie upgraded. [Koz]
Expand Down
1 change: 1 addition & 0 deletions actionpack/test/controller/url_rewriter_test.rb
Expand Up @@ -302,6 +302,7 @@ def test_path_generation_for_symbol_parameter_keys
end end


def test_named_routes_with_nil_keys def test_named_routes_with_nil_keys
ActionController::Routing::Routes.clear!
add_host! add_host!
ActionController::Routing::Routes.draw do |map| ActionController::Routing::Routes.draw do |map|
map.main '', :controller => 'posts' map.main '', :controller => 'posts'
Expand Down

0 comments on commit 7d8f9ef

Please sign in to comment.