diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2016-08-07 19:14:31 +0200 |
---|---|---|
committer | Kasper Timm Hansen <kaspth@gmail.com> | 2016-08-07 19:14:31 +0200 |
commit | 2dc0918718c49e9e59bef47025f9bb465e44ddb7 (patch) | |
tree | 62ed4c007ecaf06b2381d0ce7caa55727a49e443 | |
parent | 3def3c509c648ce6eec743d65629ce7496225d8d (diff) | |
download | rails-2dc0918718c49e9e59bef47025f9bb465e44ddb7.tar.gz rails-2dc0918718c49e9e59bef47025f9bb465e44ddb7.tar.bz2 rails-2dc0918718c49e9e59bef47025f9bb465e44ddb7.zip |
Move CHANGELOG entry to the top.
-rw-r--r-- | actionview/CHANGELOG.md | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md index bd6f2d788d..567e77f101 100644 --- a/actionview/CHANGELOG.md +++ b/actionview/CHANGELOG.md @@ -1,14 +1,3 @@ -* Changed partial rendering with a collection to allow collections which - implement `to_a`. - - Extracting the collection option had an optimization to avoid unnecessary - queries of ActiveRecord Relations by calling `#to_ary` on the given - collection. Instances of `Enumerator` or `Enumerable` are valid - collections, but they do not implement `#to_ary`. By changing this to - `#to_a`, they will now be extracted and rendered as expected. - - *Steven Harman* - * Show cache hits and misses when rendering partials. Partials using the `cache` helper will show whether a render hit or missed @@ -33,6 +22,17 @@ *Stan Lo* +* Changed partial rendering with a collection to allow collections which + implement `to_a`. + + Extracting the collection option had an optimization to avoid unnecessary + queries of ActiveRecord Relations by calling `#to_ary` on the given + collection. Instances of `Enumerator` or `Enumerable` are valid + collections, but they do not implement `#to_ary`. By changing this to + `#to_a`, they will now be extracted and rendered as expected. + + *Steven Harman* + * New syntax for tag helpers. Avoid positional parameters and support HTML5 by default. Example usage of tag helpers before: |