aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-05-19 09:49:01 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-05-19 09:58:14 -0300
commit0e207a499f82c7aefabcddad04fc562df727e663 (patch)
treefd86ff69d3bfe66f6f7168656347e51c0d8cb309 /actionpack/CHANGELOG.md
parent3e7070622af7b6efe9eb86c2275b2ad895bd5510 (diff)
downloadrails-0e207a499f82c7aefabcddad04fc562df727e663.tar.gz
rails-0e207a499f82c7aefabcddad04fc562df727e663.tar.bz2
rails-0e207a499f82c7aefabcddad04fc562df727e663.zip
Clarify grouped_options_for_select method API, add changelog entry
Make the method API more clear by explicitly showing the expected arguments. This means that the options cannot be passed as second argument because we are not relying on extract_options! anymore, you are expected to give a selected key or `nil` if you want to pass options, as it is the last argument. Notice that this does not change the current method arguments contract available in 3.2, it just brings back the same functionality with the divider addition.
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 41af29573e..e625bbe7af 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,9 @@
## Rails 4.0.0 (unreleased) ##
+* Add `divider` option to `grouped_options_for_select` to generate a separator
+ `optgroup` automatically, and deprecate `prompt` as third argument, in favor
+ of using an options hash. *Nicholas Greenfield*
+
* Add `time_field` and `time_field_tag` helpers which render an `input[type="time"]` tag. *Alex Soulim*
* Removed old text_helper apis for highlight, excerpt and word_wrap *Jeremy Walker*