aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-03-29 11:19:26 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2012-03-29 11:19:26 -0300
commitb395ca1fda3a3a41714511b111d353b8dade3b6c (patch)
treee562063ab828301fa79c3e10b2a310efd398d9fb /actionpack/CHANGELOG.md
parentdd69076eb8210fdbf86acd6b9f9fbe70db881538 (diff)
downloadrails-b395ca1fda3a3a41714511b111d353b8dade3b6c.tar.gz
rails-b395ca1fda3a3a41714511b111d353b8dade3b6c.tar.bz2
rails-b395ca1fda3a3a41714511b111d353b8dade3b6c.zip
Add missing CHANGELOG entry
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index fd6a26c6db..b0e7890512 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -2,6 +2,8 @@
* Fix #5632, render :inline set the proper rendered format. *Santiago Pastorino*
+* Fix textarea rendering when using plugins like HAML. Such plugins encode the first newline character in the content. This issue was introduced in https://github.com/rails/rails/pull/5191 *James Coleman*
+
* Add `config.action_view.embed_authenticity_token_in_remote_forms` (defaults to true) which allows to set if authenticity token will be included by default in remote forms. If you change it to false, you can still force authenticity token by passing `:authenticity_token => true` in form options *Piotr Sarnacki*
* Do not include the authenticity token in forms where remote: true as ajax forms use the meta-tag value *DHH*