championswimmer / vuex-module-decorators

TypeScript/ES7 Decorators to create Vuex modules declaratively
https://championswimmer.in/vuex-module-decorators/
MIT License
1.8k stars 170 forks source link

v2.0.0 there are any breaking changes ? #393

Closed m4ss1m0g closed 2 years ago

m4ss1m0g commented 2 years ago

On RELEASE v2.0.0 there are no info about any breaking changes and/or what is changed.

championswimmer commented 2 years ago

There are no breaking changes.

It just depends on vue3 and vuex4 now.

On Wed, 24 Nov, 2021, 8:34 pm Massimo Giambona, @.***> wrote:

On RELEASE v2.0.0 https://github.com/championswimmer/vuex-module-decorators/releases/tag/v2.0.0 there are no info about any breaking changes and/or what is changed.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/championswimmer/vuex-module-decorators/issues/393, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKD7SQQFK4YUP7O23YF2ADUNT5GRANCNFSM5IWJNYKA .

fen89 commented 2 years ago

There are no breaking changes. It just depends on vue3 and vuex4 now.

Which is - as per definition - a breaking change.

Before v2:

[...]
  "peerDependencies": {
    "vue": ">=2",
    "vuex": ">=3"
  },
[...]

With v2:

[...]
  "peerDependencies": {
    "vue": ">=3",
    "vuex": ">=4"
  },
[...]