diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2018-02-26 17:50:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-26 17:50:03 -0500 |
commit | f7157e48ea233eab56844dba4203f5149d910eaa (patch) | |
tree | 20bb7f7975582528381960d277b79a458aee4b8d | |
parent | e0867b367202e2cb0a727da974f95ec5a7bfc098 (diff) | |
parent | a72bc8f0043d1dd43da2654e4b0d4c1585f9b420 (diff) | |
download | rails-f7157e48ea233eab56844dba4203f5149d910eaa.tar.gz rails-f7157e48ea233eab56844dba4203f5149d910eaa.tar.bz2 rails-f7157e48ea233eab56844dba4203f5149d910eaa.zip |
Merge pull request #32122 from bogdanvlviv/remove-extra-changelog-added-by-31944
Remove extra changelog added by #31944
-rw-r--r-- | activesupport/CHANGELOG.md | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 190ec4e6de..be1862279c 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -21,22 +21,6 @@ *Tomas Valent* -* 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 π©βπ©βπ¦βπ¦. |