i18n v1.1.0 Release Notes

Release Date: 2018-08-07 // over 5 years ago
  • ๐Ÿ’ฅ BREAKING CHANGE: Fallbacks

    • 0๏ธโƒฃ Fallbacks now exclude default locale - #415, possibly fixes #413 + #338

    ๐Ÿš… Please check your Rails app for this line:

    config.i18n.fallbacks = true
    

    This setting is now incorrect as of this version of I18n. It should instead be:

    config.i18n.fallbacks = [I18n.default\_locale]
    

    If not, fallbacks will be broken in your app by I18n 1.1.x.

    0๏ธโƒฃ Ensure that you are using config.i18n.fallbacks = [I18n.default_locale] if you intend on fallbacks behaving correctly in I18n.

    ๐Ÿ›  Other fixes

    • 0๏ธโƒฃ Simplified default exception handler - #414
    • Fixed deprecated use of assert_nothing_raised #417
    • ๐Ÿ›  Fixed pluralization behavior for KeyValue backend with subtrees disabled - #419
    • ๐Ÿ‘ Allow yaml file extension - #421