Skip to content

Releases: kazupon/vue-i18n

v6.0.0-beta.1

22 Mar 02:29
2450d74
Compare
Choose a tag to compare
v6.0.0-beta.1 Pre-release
Pre-release

v6.0.0-beta.1 (2017-03-22)

💥 Breaking changes

  • change fallbackRoot and sync option default true value (0890b44)
  • remove messages settter, and add getLocaleMessage API (0f0914d)

🐛 Bug Fixes

  • mixin: fix computed props errors (a6b7e37)

🆙 Updates

  • flowtype: argument names (cf14425)

⚡ Improvements

  • fallbackLocale: support reactivity (ed758be)
  • warn: suppress warning messages for production (6e417d2)

v6.0.0-alpha.6

16 Mar 06:43
8c1e300
Compare
Choose a tag to compare
v6.0.0-alpha.6 Pre-release
Pre-release

v6.0.0-alpha.6 (2017-03-16)

⭐ New Features

  • add 'setLocaleMessage' API (8b71eda)

v6.0.0-alpha.5

11 Mar 23:59
8f04abc
Compare
Choose a tag to compare
v6.0.0-alpha.5 Pre-release
Pre-release

v6.0.0-alpha.5 (2017-03-11)

🐛 Bug Fixes

  • mixin: fix cannot create VueI18n instance error for minify production (7eeb29f)

v6.0.0-alpha.4

11 Mar 23:49
8f04abc
Compare
Choose a tag to compare
v6.0.0-alpha.4 Pre-release
Pre-release

v6.0.0-alpha.4 (2017-03-11)

v6.0.0-alpha.3

08 Mar 04:59
afb6d8f
Compare
Choose a tag to compare
v6.0.0-alpha.3 Pre-release
Pre-release

v6.0.0-alpha.3 (2017-03-08)

⭐ New Features

🆙 Updates

⚡ Improvements

  • mixin: add error throwings and a warning (0e4ac39)

v6.0.0-alpha.2

27 Feb 02:47
ecfd401
Compare
Choose a tag to compare
v6.0.0-alpha.2 Pre-release
Pre-release

v6.0.0-alpha.2 (2017-02-27)

⚡ Improvements

  • mixin: release i18n instance (cc362a3)
  • vue: support vue 2.2 (5e7bf5e)

v5.0.3

27 Feb 01:47
0e39c56
Compare
Choose a tag to compare

v5.0.3 (2017-02-27)

⚡ Improvements

v6.0.0-alpha.1

23 Feb 07:31
a510145
Compare
Choose a tag to compare
v6.0.0-alpha.1 Pre-release
Pre-release

v6.0.0-alpha.1 (2017-02-23)

This is the first release of 6.0.
In this version, have some big breaking changes.

  • Recommended for: experiments, prototypes, upgrading small, non-critical apps
  • NOT recommended for: production use, upgrading production apps

⚠️ Documentation still needs to be worked on. And also, we might change some APIs and features.

In the examples, please refer to this examples directory.

Improvements

the below server-side rendering demo animation-gif:
vue-i18n-ssr

API

Global Config

  • Vue.config.lang DEPRECATED, use VueI18n constructor locale option, or VueI18n#locale
  • Vue.config.fallbackLang DEPRECATED, use VueI18n constructor fallbackLocale option, or VueI18n#fallbackLocale
  • Vue.config.missingHandler DEPRECATED, use VueI18n constructor missing option, or VueI18n#missing
  • Vue.config.i18nFormatter DEPRECATED, use VueI18n constructor formatter option, or VueI18n#formatter

Global Method

  • Vue.locale DEPRECATED, use VueI18n constructor messages option, or VueI18n#messages
  • Vue.t DEPRECATED, use VueI18n#t
  • Vue.tc DEPRECATED, use VueI18n#tc
  • Vue.te DEPRECATED, use VueI18n#te

Constructor Options

  • locales DEPRECATED, use messages of i18n option (e.g { i18n: { messaes: ... } })

Instance Properties

  • $lang DEPRECATED, use locale of Vue instance property $i18n (e.g vm.$i18n.locale = 'en')

VueI18n class NEW

v5.0.2

18 Feb 09:20
Compare
Choose a tag to compare

v5.0.2 (2017-02-18)

⚡ Improvements

v5.0.1

16 Feb 08:23
1c55fe3
Compare
Choose a tag to compare

v5.0.1 (2017-02-16)

⚡ Improvements

  • asset: update locale reactivity setting (b42fd9a)