fix(deps): update dependency vue-i18n to v9.2.0 #2210

Merged
konrad merged 1 commits from renovate/vue-i18n-9.x into main 2022-08-01 13:40:15 +00:00
Member

This PR contains the following updates:

Package Type Update Change
vue-i18n dependencies patch 9.2.0-beta.40 -> 9.2.0

Release Notes

intlify/vue-i18n-next

v9.2.0

Compare Source

We are excited to announce the release of Vue I18n v9.2 !! This release includes many new features, bug fixes, improvements, and document fixes.

We had commited with 35 contributors. Thanks for your contributing ❤️

In the following, we introduce some of the new features:

More TypeScript supporting

From Vue I18n v9.2, we have improved TypeScript support. This allows type checking of resources specified in the messages option of createI18n and complementing with APIs such as t.

The following images is the resoureces type-checked:

type check1
type check2

The following gif image is the API completion working:

completion

For more information on how to setup the system, please read the docs

Web Components

WebComponents has been supported since Vue 3.2. You can support your Vue Component with Vue I18n as well.

About details, See more the docs

Small size subset of Vue I18n

We have released petite-vue-i18n, a small size subset version of Vue I18n, as an experimental feature.

Only minimal functionality is provided in this module. you can reduce your Vue application bundle size with using this module. If you do not need to use all the features of Vue I18n, this module would be a good option.

About details, See more README

Bridging to Vue 3

We have released a module called vue-i18n-bridge to support Vue 2 applications with Vue I18n v8.x migrate to Vue 3.

vue-i18n-bridge is a module that is mostly compatible with the Vue I18n v9 API. It's an add-on to existing Vue I18n v8.26.1 or later + Vue 2 applications to take advantage of the Composition API provided in Vue I18n v9. This module would be able to support the progressive migration to Vue 3.

About details, See more the docs

globalInjection option As default

From Vue I18n v9.2, the globalInjection option defaults to true. If you localize by global scope using $t in your template, you no longer need to set this option.

useI18n in Legacy API mode

We have supported for useI18n in Legacy API mode. This feature would be useful if you want to migrate from the options API style to the Composition API style in your Vue 3 application.

About details, See more the docs

Vue 2.7

vue-i18n-bridge module for migration to Vue 3 of course supports Vue 2.7.

Instead of going from Vue 2.6 to Vue 3 directly, you can migrate your Vue applications using Vue I18n with a strategy of Vue 2.6, Vue 2.7, and then Vue 3 progressively.

SSR for v-t

We have supported SSR for v-t. If your Vue application uses v-t, you can support SSR without having to be aware in your Vue application.

Features (15)
💥 Breaking Change (3)
Improvement Features (30)
🐛 Bug Fixes (36)
📝 Documentation (37)
Contributers: 35

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [vue-i18n](https://github.com/intlify/vue-i18n-next) | dependencies | patch | [`9.2.0-beta.40` -> `9.2.0`](https://renovatebot.com/diffs/npm/vue-i18n/9.2.0-beta.40/9.2.0) | --- ### Release Notes <details> <summary>intlify/vue-i18n-next</summary> ### [`v9.2.0`](https://github.com/intlify/vue-i18n-next/blob/HEAD/CHANGELOG.md#v920-2022-08-01) [Compare Source](https://github.com/intlify/vue-i18n-next/compare/v9.2.0-beta.40...v9.2.0) We are excited to announce the release of Vue I18n v9.2 !! This release includes many new features, bug fixes, improvements, and document fixes. We had commited with 35 contributors. Thanks for your contributing ❤️ In the following, we introduce some of the new features: ##### More TypeScript supporting From Vue I18n v9.2, we have improved TypeScript support. This allows type checking of resources specified in the `messages` option of `createI18n` and complementing with APIs such as `t`. The following images is the resoureces type-checked: ![type check1](https://vue-i18n.intlify.dev/ts-support-1.png) ![type check2](https://vue-i18n.intlify.dev/ts-support-2.png) The following gif image is the API completion working: ![completion](https://vue-i18n.intlify.dev/ts-support-3.gif) For more information on how to setup the system, please read [the docs](https://vue-i18n.intlify.dev/guide/advanced/typescript.html) ##### Web Components WebComponents has been supported since Vue 3.2. You can support your Vue Component with Vue I18n as well. About details, See more [the docs](https://vue-i18n.intlify.dev/guide/advanced/wc.html) ##### Small size subset of Vue I18n We have released `petite-vue-i18n`, a small size subset version of Vue I18n, as an experimental feature. Only minimal functionality is provided in this module. you can reduce your Vue application bundle size with using this module. If you do not need to use all the features of Vue I18n, this module would be a good option. About details, See more [README](https://github.com/intlify/vue-i18n-next/tree/master/packages/petite-vue-i18n#petite-vue-i18n) ##### Bridging to Vue 3 We have released a module called `vue-i18n-bridge` to support Vue 2 applications with Vue I18n v8.x migrate to Vue 3. `vue-i18n-bridge` is a module that is mostly compatible with the Vue I18n v9 API. It's an add-on to existing Vue I18n v8.26.1 or later + Vue 2 applications to take advantage of the Composition API provided in Vue I18n v9. This module would be able to support the progressive migration to Vue 3. About details, See more [the docs](https://vue-i18n.intlify.dev/guide/migration/vue2.html#what-is-vue-i18n-bridge) ##### `globalInjection` option **As default** From Vue I18n v9.2, the `globalInjection` option defaults to `true`. If you localize by global scope using `$t` in your template, you no longer need to set this option. ##### `useI18n` in Legacy API mode We have supported for `useI18n` in Legacy API mode. This feature would be useful if you want to migrate from the options API style to the Composition API style in your Vue 3 application. About details, See more [the docs](https://vue-i18n.intlify.dev/guide/migration/vue3.html#migration-to-composition-api-from-legacy-api) ##### Vue 2.7 `vue-i18n-bridge` module for migration to Vue 3 of course supports Vue 2.7. Instead of going from Vue 2.6 to Vue 3 directly, you can migrate your Vue applications using Vue I18n with a strategy of Vue 2.6, Vue 2.7, and then Vue 3 progressively. ##### SSR for `v-t` We have supported SSR for `v-t`. If your Vue application uses `v-t`, you can support SSR without having to be aware in your Vue application. ##### :star: Features (15) - [#&#8203;1087](https://github.com/intlify/vue-i18n-next/pull/1087) feat: support SSR for v-t ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;1062](https://github.com/intlify/vue-i18n-next/pull/1062) feat: support Vue 2.7 for vue-i18n-bridge ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;974](https://github.com/intlify/vue-i18n-next/pull/974) feat: change `globalInjection` option default value ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;940](https://github.com/intlify/vue-i18n-next/pull/940) feat: Support `useI18n` for Legacy API mode ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;838](https://github.com/intlify/vue-i18n-next/pull/838) feat: composer type definition extending (**experimental feature**) ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;811](https://github.com/intlify/vue-i18n-next/pull/811) feat: backport build-in components to vue-i18n-bridge from vue-i18n-next ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;733](https://github.com/intlify/vue-i18n-next/pull/733) support node native es modules ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;676](https://github.com/intlify/vue-i18n-next/pull/676) feat: bridge for vue-i18n@v8.26.1 or later ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;673](https://github.com/intlify/vue-i18n-next/pull/673) feat: export types ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;641](https://github.com/intlify/vue-i18n-next/pull/641) feat: support web components ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;623](https://github.com/intlify/vue-i18n-next/pull/623) feat: support Vue 3.2 ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;588](https://github.com/intlify/vue-i18n-next/pull/588) feat: [petite-vue-i18n](https://github.com/intlify/vue-i18n-next/tree/master/packages/petite-vue-i18n) ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;508](https://github.com/intlify/vue-i18n-next/pull/508) feat: type-safe with global type definition ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;478](https://github.com/intlify/vue-i18n-next/pull/478) improvement: target component highlighting on i18n resources inspector ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;477](https://github.com/intlify/vue-i18n-next/pull/477) feat: custom message resolver ([@&#8203;kazupon](https://github.com/kazupon)) ##### :boom: Breaking Change (3) - [#&#8203;757](https://github.com/intlify/vue-i18n-next/pull/757) breaking: revert import.browser fileds ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;560](https://github.com/intlify/vue-i18n-next/pull/560) breaking: drop node v10 ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;514](https://github.com/intlify/vue-i18n-next/pull/514) Fix **FEATURE_ESM_BUNDLER_WARN** flag can not be configured ([@&#8203;PeterAlfredLee](https://github.com/PeterAlfredLee)) ##### :zap: Improvement Features (30) - [#&#8203;1064](https://github.com/intlify/vue-i18n-next/pull/1064) fix: slot resolving in render function ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;1043](https://github.com/intlify/vue-i18n-next/pull/1043) fix typo and polish ([@&#8203;lazzzis](https://github.com/lazzzis)) - [#&#8203;1022](https://github.com/intlify/vue-i18n-next/pull/1022) improvement: allow custom block `useI18n` on Legacy API mode ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;983](https://github.com/intlify/vue-i18n-next/pull/983) fix(legacy): allow multi legacy i18n instance for bridge ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;977](https://github.com/intlify/vue-i18n-next/pull/977) feat: release global scope ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;973](https://github.com/intlify/vue-i18n-next/pull/973) fix(bridge): improvement writable install function for vue-i18n-routing ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;929](https://github.com/intlify/vue-i18n-next/pull/929) improvement: tweak vue-i18n for SSR ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;929](https://github.com/intlify/vue-i18n-next/pull/929) improvement: tweak vue-i18n for SSR ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;907](https://github.com/intlify/vue-i18n-next/pull/907) fix: avoid undefined read ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;903](https://github.com/intlify/vue-i18n-next/pull/903) fix: revert type test case change in strictI18n ([@&#8203;littleboarx](https://github.com/littleboarx)) - [#&#8203;879](https://github.com/intlify/vue-i18n-next/pull/879) fix: null element access ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;876](https://github.com/intlify/vue-i18n-next/pull/876) fix: null access on mount hook ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;861](https://github.com/intlify/vue-i18n-next/pull/861) improvement: export castToVueI18n for [@&#8203;intlity/vue-i18n-bridge](https://github.com/intlity/vue-i18n-bridge) ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;780](https://github.com/intlify/vue-i18n-next/pull/780) improvement: vue-i18n-bridge installation at nuxt-bridge ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;764](https://github.com/intlify/vue-i18n-next/pull/764) improvement: global injection for vue-i18n-bridge ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;761](https://github.com/intlify/vue-i18n-next/pull/761) improvement: avoid vite ssrTransform bug ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;742](https://github.com/intlify/vue-i18n-next/pull/742) fix: node esm for nuxt3 ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;731](https://github.com/intlify/vue-i18n-next/pull/731) move to pnpm from yarn v1 ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;709](https://github.com/intlify/vue-i18n-next/pull/709) improvement: support vue-i18n-loader bridge mode ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;705](https://github.com/intlify/vue-i18n-next/pull/705) improvement: flag for vue-i18n-bridge ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;700](https://github.com/intlify/vue-i18n-next/pull/700) improvement: expose type casting API for Legacy mode ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;619](https://github.com/intlify/vue-i18n-next/pull/619) improvement: bundle source map at message-compiler ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;584](https://github.com/intlify/vue-i18n-next/pull/584) improvement: reduce size ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;583](https://github.com/intlify/vue-i18n-next/pull/583) improvement: deprecated **VUE_I18N_PROD_DEVTOOLS** feature flag ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;578](https://github.com/intlify/vue-i18n-next/pull/578) support for Vue 3.1 ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;545](https://github.com/intlify/vue-i18n-next/pull/545) Allow number and boolean in args of number formatting ([@&#8203;yannbriancon](https://github.com/yannbriancon)) - [#&#8203;541](https://github.com/intlify/vue-i18n-next/pull/541) Add number formatting missing type definition ([@&#8203;yannbriancon](https://github.com/yannbriancon)) - [#&#8203;489](https://github.com/intlify/vue-i18n-next/pull/489) Type safe improvements ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;593](https://github.com/intlify/vue-i18n-next/pull/593) improvement: vue-i18n tree shaking ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;592](https://github.com/intlify/vue-i18n-next/pull/592) improvement: petite-vue-i18n tree shaking ([@&#8203;kazupon](https://github.com/kazupon)) ##### :bug: Bug Fixes (36) - [#&#8203;1086](https://github.com/intlify/vue-i18n-next/pull/1086) fix: v-t directive reactivity ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;1076](https://github.com/intlify/vue-i18n-next/pull/1076) fix: lifecycle hook context binding ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;1071](https://github.com/intlify/vue-i18n-next/pull/1071) fix(vue-i18n-bridge): install error cause by peer deps ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;1057](https://github.com/intlify/vue-i18n-next/pull/1057) fix: cannot modulo parse hangup ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;1056](https://github.com/intlify/vue-i18n-next/pull/1056) fix: number and datetime options override formatting ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;1037](https://github.com/intlify/vue-i18n-next/pull/1037) fix postTranslation option ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;1023](https://github.com/intlify/vue-i18n-next/pull/1023) fix: improvement processor for linked and pluralization ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;1017](https://github.com/intlify/vue-i18n-next/pull/1017) fix: number & datetime format options ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;972](https://github.com/intlify/vue-i18n-next/pull/972) fix(components): strictly slot rendering ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;965](https://github.com/intlify/vue-i18n-next/pull/965) fix: resolve default message value ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;954](https://github.com/intlify/vue-i18n-next/pull/954) fix: nullish assignment ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;945](https://github.com/intlify/vue-i18n-next/pull/945) fix: linked message fallbacking ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;897](https://github.com/intlify/vue-i18n-next/pull/897) improve types declaration ([@&#8203;littleboarx](https://github.com/littleboarx)) - [#&#8203;856](https://github.com/intlify/vue-i18n-next/pull/856) fix: inherit warn html message setting option ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;855](https://github.com/intlify/vue-i18n-next/pull/855) fix: not correct error and warning codes ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;843](https://github.com/intlify/vue-i18n-next/pull/843) fix: export composer custom type definition ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;820](https://github.com/intlify/vue-i18n-next/pull/820) fix: cannot work correctly v-for on Translation component ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;806](https://github.com/intlify/vue-i18n-next/pull/806) fix: merge global resources of i18n custom block ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;799](https://github.com/intlify/vue-i18n-next/pull/799) fix: typescript errors with vue-tsc on vue-i18n-bridge ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;784](https://github.com/intlify/vue-i18n-next/pull/784) fix(core-base): fallback interpolation should not break in runtime only (Closes [#&#8203;768](https://github.com/intlify/vue-i18n-next/issues/768)) ([@&#8203;AlexandreBonaventure](https://github.com/AlexandreBonaventure)) - [#&#8203;754](https://github.com/intlify/vue-i18n-next/pull/754) fix: remove terser option pure_getters: true, avoid wrong tree-shaking ([@&#8203;PeterAlfredLee](https://github.com/PeterAlfredLee)) - [#&#8203;748](https://github.com/intlify/vue-i18n-next/pull/748) fix not a function error ([@&#8203;PeterAlfredLee](https://github.com/PeterAlfredLee)) - [#&#8203;725](https://github.com/intlify/vue-i18n-next/pull/725) fix: builtin components bugs ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;715](https://github.com/intlify/vue-i18n-next/pull/715) fix: vue-i18n components scope resolving in Legacy API mode ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;713](https://github.com/intlify/vue-i18n-next/pull/713) fix: Maximum call stack size ([@&#8203;fabiankranewitter](https://github.com/fabiankranewitter)) - [#&#8203;698](https://github.com/intlify/vue-i18n-next/pull/698) fix: custom block reosurce processing errors ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;697](https://github.com/intlify/vue-i18n-next/pull/697) fix: createI18n second argument type error ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;696](https://github.com/intlify/vue-i18n-next/pull/696) fix: **INTLIFY_META** access error in vue-i18n-bridge ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;666](https://github.com/intlify/vue-i18n-next/pull/666) fix: source-map bundling on message-compiler esm bundler ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;602](https://github.com/intlify/vue-i18n-next/pull/602) fix null access of **VUE_I18n** ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;570](https://github.com/intlify/vue-i18n-next/pull/570) fix: **INTLIFY_PROD_DEVTOOLS** is not defined ([#&#8203;532](https://github.com/intlify/vue-i18n-next/issues/532)) ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;532](https://github.com/intlify/vue-i18n-next/pull/532) fix: **INTLIFY_PROD_DEVTOOLS** is not defined ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;524](https://github.com/intlify/vue-i18n-next/pull/524) fix: cannot hook at beforeUnmount/unmounted ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;515](https://github.com/intlify/vue-i18n-next/pull/515) Datetime format validation ([@&#8203;PeterAlfredLee](https://github.com/PeterAlfredLee)) - [#&#8203;519](https://github.com/intlify/vue-i18n-next/pull/519) fix `d.ts` breaking ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;595](https://github.com/intlify/vue-i18n-next/pull/595) fix: build feature flags ([@&#8203;kazupon](https://github.com/kazupon)) ##### :pencil: Documentation (37) - [#&#8203;1084](https://github.com/intlify/vue-i18n-next/pull/1084) Added pluralization example to custom directive page ([@&#8203;anatolykopyl](https://github.com/anatolykopyl)) - [#&#8203;1050](https://github.com/intlify/vue-i18n-next/pull/1050) Fix spelling ([@&#8203;fabretti](https://github.com/fabretti)) - [#&#8203;1044](https://github.com/intlify/vue-i18n-next/pull/1044) nuxt3 integration ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;1047](https://github.com/intlify/vue-i18n-next/pull/1047) Fix the id of the app's container element ([@&#8203;xfq](https://github.com/xfq)) - [#&#8203;1039](https://github.com/intlify/vue-i18n-next/pull/1039) fix: typo in the layout slot ([@&#8203;xfq](https://github.com/xfq)) - [#&#8203;1032](https://github.com/intlify/vue-i18n-next/pull/1032) docs: typo ([@&#8203;xfq](https://github.com/xfq)) - [#&#8203;1028](https://github.com/intlify/vue-i18n-next/pull/1028) docs: typo ([@&#8203;ashgo-x](https://github.com/ashgo-x)) - [#&#8203;1046](https://github.com/intlify/vue-i18n-next/pull/1046) docs: add missing imports and fix typescript example of vue-i18n-bridge ([@&#8203;kingyue737](https://github.com/kingyue737)) - [#&#8203;1011](https://github.com/intlify/vue-i18n-next/pull/1011) docs: fix wrongly written ([@&#8203;liyangworld](https://github.com/liyangworld)) - [#&#8203;1005](https://github.com/intlify/vue-i18n-next/pull/1005) docs: Update vue3.md ([@&#8203;thomasschimbaeck](https://github.com/thomasschimbaeck)) - [#&#8203;982](https://github.com/intlify/vue-i18n-next/pull/982) fix: link to vite-plugin-vue-i18n ([@&#8203;dpschen](https://github.com/dpschen)) - [#&#8203;969](https://github.com/intlify/vue-i18n-next/pull/969) docs (composition): typos, duplication ([@&#8203;docnoe](https://github.com/docnoe)) - [#&#8203;959](https://github.com/intlify/vue-i18n-next/pull/959) Fix typo ([@&#8203;JesseSousa](https://github.com/JesseSousa)) - [#&#8203;956](https://github.com/intlify/vue-i18n-next/pull/956) docs: add composition api migration from legacy api ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;923](https://github.com/intlify/vue-i18n-next/pull/923) Update optimization.md ([@&#8203;armingjazi](https://github.com/armingjazi)) - [#&#8203;869](https://github.com/intlify/vue-i18n-next/pull/869) docs: fix typos ([@&#8203;AnPineau](https://github.com/AnPineau)) - [#&#8203;863](https://github.com/intlify/vue-i18n-next/pull/863) docs: fix typo in word ([@&#8203;ItMaga](https://github.com/ItMaga)) - [#&#8203;862](https://github.com/intlify/vue-i18n-next/pull/862) docs: add scope resolving section ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;848](https://github.com/intlify/vue-i18n-next/pull/848) fix typo petitle-vue-i18n ([@&#8203;ElenaTv](https://github.com/ElenaTv)) - [#&#8203;839](https://github.com/intlify/vue-i18n-next/pull/839) doc: update package url ([@&#8203;agoni1212](https://github.com/agoni1212)) - [#&#8203;778](https://github.com/intlify/vue-i18n-next/pull/778) docs: improve doc of fall back warinings ([@&#8203;PeterAlfredLee](https://github.com/PeterAlfredLee)) - [#&#8203;775](https://github.com/intlify/vue-i18n-next/pull/775) Fix typo in docs ([@&#8203;Zauberbutter](https://github.com/Zauberbutter)) - [#&#8203;773](https://github.com/intlify/vue-i18n-next/pull/773) feat(docs): add usage with Quasar CLI ([@&#8203;rstoenescu](https://github.com/rstoenescu)) - [#&#8203;772](https://github.com/intlify/vue-i18n-next/pull/772) fix: advanced/sfc - wrong definition of warning container ([@&#8203;rstoenescu](https://github.com/rstoenescu)) - [#&#8203;704](https://github.com/intlify/vue-i18n-next/pull/704) Fix typo `Stdio` for `Studio` ([@&#8203;FMGordillo](https://github.com/FMGordillo)) - [#&#8203;691](https://github.com/intlify/vue-i18n-next/pull/691) Fix typo in docs/guide/migration/breaking.md ([@&#8203;ota-meshi](https://github.com/ota-meshi)) - [#&#8203;664](https://github.com/intlify/vue-i18n-next/pull/664) Fixed a type in the Composition API documentation (it's -> its) ([@&#8203;SeverityOne](https://github.com/SeverityOne)) - [#&#8203;661](https://github.com/intlify/vue-i18n-next/pull/661) docs: fix typo dat"a"TimeFormats ([@&#8203;tyankatsu0105](https://github.com/tyankatsu0105)) - [#&#8203;655](https://github.com/intlify/vue-i18n-next/pull/655) docs: add support api mode for injection APIs ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;643](https://github.com/intlify/vue-i18n-next/pull/643) docs: update breaking changes section ([@&#8203;kazupon](https://github.com/kazupon)) - [#&#8203;640](https://github.com/intlify/vue-i18n-next/pull/640) added missing comma in code example in Advanced > Composition API ([@&#8203;Topograph](https://github.com/Topograph)) - [#&#8203;616](https://github.com/intlify/vue-i18n-next/pull/616) docs: typo in typescript.md ([@&#8203;maiolica](https://github.com/maiolica)) - [#&#8203;555](https://github.com/intlify/vue-i18n-next/pull/555) docs: add `defaultSFCLang` and `globalSFCScope` to sfc ([@&#8203;userquin](https://github.com/userquin)) - [#&#8203;549](https://github.com/intlify/vue-i18n-next/pull/549) Fix VueJS Syntax ([@&#8203;MarianPohling](https://github.com/MarianPohling)) - [#&#8203;484](https://github.com/intlify/vue-i18n-next/pull/484) Fix syntax error in quote example. ([@&#8203;snuggs](https://github.com/snuggs)) - [#&#8203;487](https://github.com/intlify/vue-i18n-next/pull/487) Add some tests about numberFormats ([@&#8203;PeterAlfredLee](https://github.com/PeterAlfredLee)) - [#&#8203;582](https://github.com/intlify/vue-i18n-next/pull/582) docs: add typescript section to advanced ([@&#8203;kazupon](https://github.com/kazupon)) ##### Contributers: 35 - Anatoly Kopyl ([@&#8203;anatolykopyl](https://github.com/anatolykopyl)) - Ash Go ([@&#8203;ashgo-x](https://github.com/ashgo-x)) - Fuqiao Xue ([@&#8203;xfq](https://github.com/xfq)) - Gleb ([@&#8203;fabretti](https://github.com/fabretti)) - Yue JIN ([@&#8203;kingyue737](https://github.com/kingyue737)) - lazzzis ([@&#8203;lazzzis](https://github.com/lazzzis)) - [@&#8203;thomasschimbaeck](https://github.com/thomasschimbaeck) - 李洋 ([@&#8203;liyangworld](https://github.com/liyangworld)) - Dominik Pschenitschni ([@&#8203;dpschen](https://github.com/dpschen)) - Jesse Sousa ([@&#8203;JesseSousa](https://github.com/JesseSousa)) - Johannes Noe ([@&#8203;docnoe](https://github.com/docnoe)) - armin g jazi ([@&#8203;armingjazi](https://github.com/armingjazi)) - [@&#8203;littleboarx](https://github.com/littleboarx) - Magomed Chemurziev ([@&#8203;ItMaga](https://github.com/ItMaga)) - [@&#8203;AnPineau](https://github.com/AnPineau) - Elena Tverdokhlib ([@&#8203;ElenaTv](https://github.com/ElenaTv)) - [@&#8203;agoni1212](https://github.com/agoni1212) - Alexandre Bonaventure Geissmann ([@&#8203;AlexandreBonaventure](https://github.com/AlexandreBonaventure)) - Lee ([@&#8203;PeterAlfredLee](https://github.com/PeterAlfredLee)) - Razvan Stoenescu ([@&#8203;rstoenescu](https://github.com/rstoenescu)) - [@&#8203;Zauberbutter](https://github.com/Zauberbutter) - Fabian Kranewitter ([@&#8203;fabiankranewitter](https://github.com/fabiankranewitter)) - Facundo Martin Gordillo ([@&#8203;FMGordillo](https://github.com/FMGordillo)) - Yosuke Ota ([@&#8203;ota-meshi](https://github.com/ota-meshi)) - BaboonKing ([@&#8203;baboon-king](https://github.com/baboon-king)) - Peter Korsten ([@&#8203;SeverityOne](https://github.com/SeverityOne)) - tyankatsu ([@&#8203;tyankatsu0105](https://github.com/tyankatsu0105)) - [@&#8203;Topograph](https://github.com/Topograph) - Gualtiero ([@&#8203;maiolica](https://github.com/maiolica)) - Yann Briançon ([@&#8203;yannbriancon](https://github.com/yannbriancon)) - Marian Pohling ([@&#8203;MarianPohling](https://github.com/MarianPohling)) - [@&#8203;userquin](https://github.com/userquin) - Ahmid ([@&#8203;snuggs](https://github.com/snuggs)) - [@&#8203;noy4](https://github.com/noy4) - kazuya kawaguchi ([@&#8203;kazupon](https://github.com/kazupon)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzUuMSIsInVwZGF0ZWRJblZlciI6IjMyLjEzNS4xIn0=-->
renovate added the
dependencies
label 2022-08-01 04:02:47 +00:00
renovate added 1 commit 2022-08-01 04:02:48 +00:00
continuous-integration/drone/pr Build is failing Details
d2bf1798d6
fix(deps): update dependency vue-i18n to v9.2.0
Member

Hi renovate!

Thank you for creating a PR!

I've deployed the changes of this PR on a preview environment under this URL: https://2210-renovate-vue-i18n-9-x--vikunja-frontend-preview.netlify.app

You can use this url to view the changes live and test them out.
You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/.

Have a nice day!

Beep boop, I'm a bot.

Hi renovate! Thank you for creating a PR! I've deployed the changes of this PR on a preview environment under this URL: https://2210-renovate-vue-i18n-9-x--vikunja-frontend-preview.netlify.app You can use this url to view the changes live and test them out. You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/. Have a nice day! > Beep boop, I'm a bot.
Owner

CI failure seems unrelated.

CI failure seems unrelated.
konrad merged commit cf27131e48 into main 2022-08-01 13:40:15 +00:00
konrad deleted branch renovate/vue-i18n-9.x 2022-08-01 13:40:16 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.