aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2017-04-23 12:48:07 -0400
committerJon Moss <me@jonathanmoss.me>2017-04-23 12:48:07 -0400
commit269e11598ce09a61a9ccbb0ec81eed9424610283 (patch)
tree64ab7e415e5c9fa0bca244b7952d7606c07bdab0 /guides/source
parent295b2025d8eddbc7fbfbfceac0ea4f90fe34da69 (diff)
downloadrails-269e11598ce09a61a9ccbb0ec81eed9424610283.tar.gz
rails-269e11598ce09a61a9ccbb0ec81eed9424610283.tar.bz2
rails-269e11598ce09a61a9ccbb0ec81eed9424610283.zip
Add Action View info to 5.1 release notes
[ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/5_1_release_notes.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/guides/source/5_1_release_notes.md b/guides/source/5_1_release_notes.md
index a37e2b01ad..9a810368b1 100644
--- a/guides/source/5_1_release_notes.md
+++ b/guides/source/5_1_release_notes.md
@@ -314,10 +314,33 @@ Please refer to the [Changelog][action-view] for detailed changes.
### Removals
+* Removed deprecated `#original_exception` in `ActionView::Template::Error`.
+ ([commit](https://github.com/rails/rails/commit/b9ba263e5aaa151808df058f5babfed016a1879f))
+
+* Remove the option `encode_special_chars` misnomer from `strip_tags`.
+ ([Pull Request](https://github.com/rails/rails/pull/28061))
+
### Deprecations
+* Deprecated Erubis ERB handler in favor of Erubi.
+ ([Pull Request](https://github.com/rails/rails/pull/27757))
+
### Notable changes
+* Raw template handler (the default template handler in Rails 5) now outputs
+ HTML-safe strings.
+ ([commit](https://github.com/rails/rails/commit/1de0df86695f8fa2eeae6b8b46f9b53decfa6ec8))
+
+* Change `datetime_field` and `datetime_field_tag` to generate `datetime-local`
+ fields.
+ ([Pull Request](https://github.com/rails/rails/pull/28061))
+
+* New Builder-style syntax for HTML tags (`tag.div`, `tag.br`, etc.)
+ ([Pull Request](https://github.com/rails/rails/pull/25543))
+
+* Add `form_with` to unify `form_tag` and `form_for` usage.
+ ([Pull Request](https://github.com/rails/rails/pull/26976))
+
Action Mailer
-------------