diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2011-03-09 14:44:25 +0000 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2011-03-09 14:44:25 +0000 |
commit | 03cbd9672cfc142842c95aae0fb27b8eb27e6990 (patch) | |
tree | c1141b17caaf6185b19a47eb74e6d2a0ffe3971a /actionpack/CHANGELOG | |
parent | f41dd99be78e6e0243e9910aaab64ebd29bdad58 (diff) | |
download | rails-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/CHANGELOG | 4 |
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. |