This repository has been archived by the owner on Feb 13, 2023. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Vue Storefront for Magento 1.0.0-rc.7
Refactoring of composables
In this version, the integration packages
@vue-storefront/magento
has been marked as deprecated. All things from this package, including composables, getters, and helpers have been moved to@vue-storefront/magento-theme
All composables have been refactored and moved to the theme.
@vue-storefront/core
packageGetters have been moved to the theme package and marked as deprecated.
In the next releases, getters will be removed.
Helpers have been moved to the theme package
The onSSR hook is not used anymore
From now, each operation that should be performed on the server-side must be called inside on the
useFetch
and theuseAsync
functions that are part of Nuxt Composition API.The i18n plugin is not used anymore
The i18n plugin from
@vue-storefront/core
is not used anymore. Configuring i18n is the responsibility of the theme package from now.Modularization
We started the process of split whole app into modules. The first module is the category module that contains components and logic responsible for catalog category pages. In next releases we will continue refactorization and add modules for other parts of app like product, checkout, account, wishlist and so on.
New features
Performance improvements
Bugfix
Refactors
Chore
Documentation