diff options
author | bogdanvlviv <bogdanvlviv@gmail.com> | 2018-02-25 23:56:33 +0200 |
---|---|---|
committer | bogdanvlviv <bogdanvlviv@gmail.com> | 2018-02-26 00:10:57 +0200 |
commit | ae3e241b573b450fd9ce694a458ad942a8bd6b03 (patch) | |
tree | ae5f4bd1f944eb44a601275f10a19f266c5f15ce /activesupport | |
parent | 3579876931381fd6abff99bd6e739169a8fcb489 (diff) | |
download | rails-ae3e241b573b450fd9ce694a458ad942a8bd6b03.tar.gz rails-ae3e241b573b450fd9ce694a458ad942a8bd6b03.tar.bz2 rails-ae3e241b573b450fd9ce694a458ad942a8bd6b03.zip |
Remove changelogs for Rails 6.0 since they were backported to `5-2-stable`
Remove railties' changelog added by 7340596de45dc4c0f62a287b6acc4e71d8ee6c60
since it was backported to `5-2-stable` via ac99916fcf7bf27bb1519d4f7387c6b4c5f0463d
Remove activesupport's changelog added by 1077ae96b34b5a1dfbf10ee0c40b1ceb1eb6b30b
since it was backported to `5-2-stable` via a2b97e4ffef971607a1be8fc7909f099b6840f36
Remove activesupport's changelog added by 0d41a76d0c693000005d79456dee7f9299f5e8d4
since it was backported to `5-2-stable` via cdce6a709e1cbc98fff009effc3b1b3ce4c7e8db
Remove activestorage's changelog added by d57c52a385eb57c6ce8c6d124ab5e186f931d142
since it was backported to `5-2-stable` via 5292cdf59a2052c453d6016c69b90b790cbf2547
Follow up c113bdc9d0c2cffd535ca97aff85c4bdc46b11f6
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG.md | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index db53c151ea..66b7365916 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,26 +1,5 @@ ## Rails 6.0.0.alpha (Unreleased) ## -* Caching: MemCache and Redis `read_multi` and `fetch_multi` speedup. - Read from the local in-memory cache before consulting the backend. - - *Gabriel Sobrinho* - -* Return all mappings for a timezone identifier in `country_zones` - - Some timezones like `Europe/London` have multiple mappings in - `ActiveSupport::TimeZone::MAPPING` so return all of them instead - of the first one found by using `Hash#value`. e.g: - - # Before - ActiveSupport::TimeZone.country_zones("GB") # => ["Edinburgh"] - - # After - ActiveSupport::TimeZone.country_zones("GB") # => ["Edinburgh", "London"] - - Fixes #31668. - - *Andrew White* - * `String#truncate_bytes` to truncate a string to a maximum bytesize without breaking multibyte characters or grapheme clusters like 👩👩👦👦. |