aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/CHANGELOG.md
diff options
context:
space:
mode:
authorAna María Martínez Gómez <ammartinez@suse.de>2018-08-08 10:35:03 +0200
committerAna María Martínez Gómez <ammartinez@suse.de>2018-08-08 11:47:11 +0200
commit4ca9fa11f9a9b5604371f260515c28a0f29cd921 (patch)
tree3e990e56c6a40383b77bfc967e0e11aa1facc8c4 /actionview/CHANGELOG.md
parent0c62e141a3fc9b2d00935bb99d2d5f465e1a4fb4 (diff)
downloadrails-4ca9fa11f9a9b5604371f260515c28a0f29cd921.tar.gz
rails-4ca9fa11f9a9b5604371f260515c28a0f29cd921.tar.bz2
rails-4ca9fa11f9a9b5604371f260515c28a0f29cd921.zip
Deprecate use of private methods in view's helpers
Instead of dropping it completely in case someone is relying (probably inadvertenly) on it.
Diffstat (limited to 'actionview/CHANGELOG.md')
-rw-r--r--actionview/CHANGELOG.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md
index 9fc120acbc..4c552c635a 100644
--- a/actionview/CHANGELOG.md
+++ b/actionview/CHANGELOG.md
@@ -1,7 +1,7 @@
-* Stop exposing public methods in view's helpers.
+* Deprecate exposing public methods in view's helpers.
For example, in methods like `options_from_collection_for_select`
- and `collection_select` it was possible to call private methods from
+ and `collection_select` it is possible to call private methods from
the objects used.
See [#33546](https://github.com/rails/rails/issues/33546) for details.