diff options
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r-- | activesupport/CHANGELOG.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 5207194fba..5af97e3d37 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,3 +1,19 @@ +* Updated Unicode version to 9.0.0 + + Now we can handle new emojis such like "๐ฉโ๐ฉโ๐งโ๐ฆ" ("\u{1F469}\u{200D}\u{1F469}\u{200D}\u{1F467}\u{200D}\u{1F466}"). + + version 8.0.0 + + "๐ฉโ๐ฉโ๐งโ๐ฆ".mb_chars.grapheme_length # => 4 + "๐ฉโ๐ฉโ๐งโ๐ฆ".mb_chars.reverse # => "๐ฆ๐งโ๐ฉโ๐ฉโ" + + version 9.0.0 + + "๐ฉโ๐ฉโ๐งโ๐ฆ".mb_chars.grapheme_length # => 1 + "๐ฉโ๐ฉโ๐งโ๐ฆ".mb_chars.reverse # => "๐ฉโ๐ฉโ๐งโ๐ฆ" + + *Fumiaki MATSUSHIMA* + * Changed `ActiveSupport::Inflector#transliterate` to raise `ArgumentError` when it receives anything except a string. |