-
Notifications
You must be signed in to change notification settings - Fork 116
chore: release 1.0.0-rc.7 #949
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Co-authored-by: Bartosz Herba <[email protected]>
Co-authored-by: Alexander Devitsky <[email protected]>
* chore: fixed some error reported by eslint * refactor: removed unnecessary type file
* fix(theme): show currency-switcher on mobile * fix(theme): only show login-modal when user isn't logged in
- add loadTotalQuantity method on the cart composable as sometimes this is the only information needed - add lazy load for a minicart - header will pull only total quantity data instead of loading whole cart
…ncy switcher - if there is less than 2 currencies/stores relevant switcher will be not displayed
- added useApi composable to use GraphQL APi on the client side
- update social icons to reduce weight and increase quality - load footer only when visible
- add @nuxtjs/device package to recognize used device - remove mobile observer from header and replave it with device recognition tool - navigation is now lazy loaded, categories required for a navigation are not loaded at all on mobile devices
- move search bar component to components/Header - remove unused code and watchers
sequensucks
reviewed
May 9, 2022
704ca77 to
784ac43
Compare
784ac43 to
49a7290
Compare
f23dcde to
6ff9f41
Compare
6ff9f41 to
cc53cc1
Compare
Frodigo
approved these changes
May 24, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 highlights
Refactoring of composables
In this version, the integration packages
@vue-storefront/magentohas been marked as deprecated. All things from this package including composables, getters, and helpers have been moved to@vue-storefront/magento-themeAll composables have been refactored and moved to the theme.
@vue-storefront/corepackageGetters 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
useFetchand theuseAsyncfunctions that are part of Nuxt Composition API.The i18n plugin is not used anymore
The i18n plugin from
@vue-storefront/coreis 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