aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2011-03-09 14:44:25 +0000
committerAndrew White <andyw@pixeltrix.co.uk>2011-03-09 14:44:25 +0000
commit03cbd9672cfc142842c95aae0fb27b8eb27e6990 (patch)
treec1141b17caaf6185b19a47eb74e6d2a0ffe3971a /actionpack/CHANGELOG
parentf41dd99be78e6e0243e9910aaab64ebd29bdad58 (diff)
downloadrails-03cbd9672cfc142842c95aae0fb27b8eb27e6990.tar.gz
rails-03cbd9672cfc142842c95aae0fb27b8eb27e6990.tar.bz2
rails-03cbd9672cfc142842c95aae0fb27b8eb27e6990.zip
Filter params that return nil for to_param and allow through false values
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index fc3410ba6e..d9fe45d897 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,9 @@
*Rails 3.1.0 (unreleased)*
+* URL parameters which return false for to_param now appear in the query string (previously they were removed) [Andrew White]
+
+* URL parameters which return nil for to_param are now removed from the query string [Andrew White]
+
* ActionDispatch::MiddlewareStack now uses composition over inheritance. It is
no longer an array which means there may be methods missing that were not
tested.