aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2008-11-26 20:26:55 +0100
committerDavid Heinemeier Hansson <david@loudthinking.com>2008-11-26 20:26:55 +0100
commit7d8f9ef0517c5e83b0e6042c3747e9cfe2b0a4ca (patch)
tree9a1457c6289704b3f72e651b3ab3654856a2bea3 /actionpack/CHANGELOG
parente2362babdf16079727966dea046bdd2ee67e716d (diff)
downloadrails-7d8f9ef0517c5e83b0e6042c3747e9cfe2b0a4ca.tar.gz
rails-7d8f9ef0517c5e83b0e6042c3747e9cfe2b0a4ca.tar.bz2
rails-7d8f9ef0517c5e83b0e6042c3747e9cfe2b0a4ca.zip
Fix routing test and add changelog note about draw no longer clearing the route set
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index c469564eb5..06d73819fb 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*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]
* 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]