1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

add missing things to release notes [ci skip]

Add following.

* 05934d24af
* 38d2bf5fd1
* https://github.com/rails/rails/pull/25469
This commit is contained in:
yuuji.yaginuma 2016-06-30 15:28:05 +09:00
parent fe054e02b2
commit 93552cbe94

View file

@ -345,6 +345,15 @@ Please refer to the [Changelog][action-pack] for detailed changes.
* Deprecated `:controller` and `:action` path parameters.
([Pull Request](https://github.com/rails/rails/pull/23980))
* Deprecated env method on controller instances.
([commit](https://github.com/rails/rails/commit/05934d24aff62d66fc62621aa38dae6456e276be))
* `ActionDispatch::ParamsParser` is deprecated and was removed from the
middleware stack. To configure the parameter parsers use
`ActionDispatch::Request.parameter_parsers=`.
([commit](https://github.com/rails/rails/commit/38d2bf5fd1f3e014f2397898d371c339baa627b1),
[commit](https://github.com/rails/rails/commit/5ed38014811d4ce6d6f957510b9153938370173b))
### Notable changes
* Added `ActionController::Renderer` to render arbitrary templates
@ -438,13 +447,6 @@ Please refer to the [Changelog][action-view] for detailed changes.
supported by I18n.
([Pull Request](https://github.com/rails/rails/pull/20019))
### Deprecations
* Deprecated `datetime_field` and `datetime_field_tag` helpers.
Datetime input type was removed from HTML specification.
One can use `datetime_local_field` and `datetime_local_field_tag` instead.
([Pull Request](https://github.com/rails/rails/pull/24385))
### Notable Changes
* Changed the default template handler from `ERB` to `Raw`.
@ -464,6 +466,10 @@ Please refer to the [Changelog][action-view] for detailed changes.
* Partial template name no longer has to be a valid Ruby identifier.
([commit](https://github.com/rails/rails/commit/da9038e))
* The `datetime_tag` helper now generates an input tag with the type of
`datetime-local`.
([Pull Request](https://github.com/rails/rails/pull/25469))
Action Mailer
-------------