aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2012-03-12 10:39:45 +1300
committerPhilip Arndt <parndt@gmail.com>2012-03-12 10:39:45 +1300
commitf12f071ece7c15ec91d96dd92e897eb68d4d355a (patch)
tree7b88f86f02b070c5d5dd804a432223213f9f7bc5 /actionpack
parent8b5198a41704b333f56204e185fe0e8d832b2509 (diff)
downloadrails-f12f071ece7c15ec91d96dd92e897eb68d4d355a.tar.gz
rails-f12f071ece7c15ec91d96dd92e897eb68d4d355a.tar.bz2
rails-f12f071ece7c15ec91d96dd92e897eb68d4d355a.zip
Documented the removal of size from text_field based helpers and cols, rows from text_area helper.
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 7565060668..c50cb5e927 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,9 @@
## Rails 4.0.0 (unreleased) ##
+* Removed default `size` option from the `text_field`, `search_field`, `telephone_field`, `url_field`, `email_field` helpers. *Philip Arndt*
+
+* Removed default `cols` and `rows` options from the `text_area` helper. *Philip Arndt*
+
* Adds support for layouts when rendering a partial with a given collection. *serabe*
* Allows the route helper `root` to take a string argument. For example, `root 'pages#main'`. *bcardarella*