技術系ブログ

とにかく小ネタで

HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.

参考:config.i18n.fallbacksのメッセージについて - Qiita

HEADS UP! i18n 1.1 changed fallbacks to exclude default locale. But that may break your application. - Qiita

HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.

Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.

For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0

上記のようなエラーが出てきました。
ちなみにconfig/environments/produciton.rb74行目'config.i18n.fallbacks = true'.と私の場合書いてあります。

gemfile.lockを見ると、

i18n (1.7.0)
rails (5.2.4)

です。
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2),にはあたりません。 i18nのバージョンを下げたりもしましたが、注意が出ます。

これは何もしない感じで

Release v1.1.0 · ruby-i18n/i18n · GitHub

bundle install と bundle updateの違いについて - Qiita