Skip to content
This repository was archived by the owner on Jan 26, 2024. It is now read-only.

Commit 126993d

Browse files
authored
Merge pull request #2532 from patzick/feature/update-changelog
Feature/update changelog
2 parents d9ffa71 + 0988806 commit 126993d

File tree

8 files changed

+16
-14
lines changed

8 files changed

+16
-14
lines changed

CHANGELOG.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [1.8.3] - 2019.02.27
7+
## [1.8.3] - 2019.03.03
88

99
### Added
1010
- New reactive helper to check online state. Usage: `import { onlineHelper } from '@vue-storefront/core/helpers'` and then `onlineHelper.isOnline` - @patzick (#2510)
11+
- Cart count config, allows you to display the item count instead of a sum of the item quantities - @pauluse (#2483)
12+
- Video support in Product Gallery component. - @rain2o (#2433)
1113

1214
### Fixed
1315
- Problem with placing second order (unbinding payment methods after first order) - @patzick (#2195, #2503)
1416
- Remaking order on user orders page - @patzick (#2480)
17+
- Images blinking on category page - @pkarw (#2523)
1518
- state.ts not bound in the module-template - @pkarw (#2496)
1619
- Validation in the Myprofile section for postcode field - @pkarw (#1317)
1720
- Non-integer qty of product added to the cart - @pkarw (#2517)
@@ -21,10 +24,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2124
- Way of creating VS Modules was changed to use factory method instead of explict object creation. - @filrak (#2434)
2225
- Added clear filters button on desktop also and only show if filters are applied - @DaanKouters (#2342)
2326
- Improved docs at contributing.md and configuration.md (spelling etc.) - @ruthgeridema (#2421, #2422, #2423, #2425, #2426)
24-
- Fixed design issue of Country label on Edge 17 & Firefox - @ananth-iyer (#2390,#2399)
27+
- Fixed design issue of Country label on Edge 17 & Firefox - @ananth-iyer (#2390, #2399)
2528
- Wishlist and compare items are loaded from local cache only once, instead of every time when module component is rendered - @patzick (#2431)
2629
- Country field is filled by first counry from the list in cart in paymen section - @RakowskiPrzemyslaw (#2428)
27-
- Added video support in Product Gallery component. - @rain2o (#2433)
2830
- Improved product quantity change component in product and cart - @patzick (#2398, #2437)
2931
- Updated to Vue 2.6.6 - @filrak (#2456)
3032
- Null sidebar menu data on static page fixed - @filrak (#2449, #2441)
@@ -34,16 +36,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3436
- Fix links at docs, Basics/Configuration file explained - @daksamit (#2490)
3537
- Improve images loading on category page, corrected alt view and blinking problem - @patzick (#2465)
3638
- Improve tsconfig for better IDE paths support - @patzick, @filrak (#2474)
37-
- fix breadcrumbs changing too early - @filrak (#2469)
38-
- add cart count config, allows you to display the item count instead of a sum of the item quantities - @pauluse (#2483)
39+
- fix breadcrumbs changing too early - @filrak, @pkarw (#2469, #2529)
3940
- improved product gallery load view, shows correct image on reload - @patzick (#2481, #2482, #2488, #2501)
4041
- Fix an issue where the index.html template within a theme is ignored - @EnthrallRecords (#2489)
4142
- Added async sidebar component with async off-screen components error handling and fetch retrying after coming back online - @filrak (#2408, #2451)
4243
- Inconsistent filters behaviour - clear filters on page load - @patzick (#2435)
43-
- fix price is never below 0 and user can't add 0 or below 0 products to cart @RakowskiPrzemyslaw (#2437)
44+
- fix price is never below 0 and user can't add 0 or below 0 products to cart - @RakowskiPrzemyslaw (#2437)
4445
- Check for placing single order in case of error in any payment module - @patzick (#2409)
4546
- Display prices in products added in offline mode. - @patzick (#2450)
46-
- Improved styles on recommentation filters - @patzick (#2458)
47+
- Updated cypress dependency for e2e tests - @lukeromanowicz (#2518)
48+
- Improved styles on recommendation filters, product tile and numeric input - @patzick (#2458)
4749

4850
### Deprecated / Removed
4951
- `@vue-storefront/store` package deprecated - @filrak

core/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const createApp = async (ssrContext, config): Promise<{app: Vue, router: VueRou
6565
// sync router with vuex 'router' store
6666
sync(store, router)
6767
// TODO: Don't mutate the state directly, use mutation instead
68-
store.state.version = '1.7.0'
68+
store.state.version = '1.8.3'
6969
store.state.config = config
7070
store.state.__DEMO_MODE__ = (config.demomode === true) ? true : false
7171
if(ssrContext) Vue.prototype.$ssrRequestContext = ssrContext

core/i18n/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-storefront/i18n",
3-
"version": "1.7.0",
3+
"version": "1.8.3",
44
"description": "Vue Storefront i18n",
55
"license": "MIT",
66
"main": "index.ts",

core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-storefront/core",
3-
"version": "1.7.0",
3+
"version": "1.8.3",
44
"description": "Vue Storefront Core",
55
"license": "MIT",
66
"main": "app.js",

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vue-storefront/docs",
33
"private": true,
4-
"version": "1.7.0",
4+
"version": "1.8.3",
55
"scripts": {
66
"docs:dev": "vuepress dev",
77
"docs:build": "vuepress build"

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"lerna": "2.9.0",
3-
"version": "1.7.0",
3+
"version": "1.8.3",
44
"npmClient": "yarn",
55
"useWorkspaces": true,
66
"registry": "https://registry.npmjs.org/"

src/themes/default-amp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-storefront/theme-default-amp",
3-
"version": "1.7.0",
3+
"version": "1.8.3",
44
"description": "Default AMP theme for Vue Storefront",
55
"main": "index.js",
66
"scripts": {

src/themes/default/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-storefront/theme-default",
3-
"version": "1.7.0",
3+
"version": "1.8.3",
44
"description": "Default theme for Vue Storefront",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)