Skip to content
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

chore: align develop branch with main after release 1.0.0-rc.8 #1092

Merged
merged 38 commits into from
Jun 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
9a46a15
Fix useFacet(...) customQuery implemention (#413)
Aliaaaam Jan 13, 2022
ea72b73
chore: release 1.0.0-rc.5.3 (#437)
Frodigo Jan 20, 2022
b5074e8
chore: release/1.0.0-rc.5.4 (#530)
Frodigo Feb 3, 2022
9b9b0f1
docs: fix duplicated menu item (#574)
bloodf Feb 8, 2022
a9a8481
docs: fix typo (#588)
filipsobol Feb 10, 2022
b45cc65
build(dockerfile): binded MAGENTO_BASE_URL to the env variable (#598)
Frodigo Feb 14, 2022
44b80e1
fix(build): changed image provider to ipx (#600)
Frodigo Feb 14, 2022
9574efc
docs: updated docs main information
Frodigo Feb 22, 2022
4e03db8
build: enabled redis on demo
Frodigo Feb 22, 2022
8f1eb27
build(deployment): changed URL of Magento backend
Frodigo Feb 21, 2022
048db6f
docs: updated environments, roadmap and functional catalog
Frodigo Feb 22, 2022
e73f2b8
build: enabled cloudinary on demo
Frodigo Feb 22, 2022
3d57295
chore: add #techforukraine
bloodf Feb 26, 2022
504572c
Update README.md
bloodf Feb 26, 2022
d304a0a
Update README.md
bloodf Feb 27, 2022
1cdc293
chore: updated readme
Frodigo Feb 28, 2022
1d15009
Update README.md
bloodf Mar 2, 2022
7526863
chore: change to an existing discord channel
sethidden Mar 8, 2022
9396b5b
chore: release 1.0.0-rc.6 (#661)
github-actions[bot] Mar 8, 2022
f4200c9
chore: updated packages versions (#695)
Frodigo Mar 8, 2022
befb820
chore: updated readme (#696)
Frodigo Mar 8, 2022
a54ecb3
Update README.md
mayashavin Mar 8, 2022
4bffc6b
doc: update override-queries
mayashavin Mar 8, 2022
9d0f0b0
docs: removed duplicated section from docs
Frodigo Mar 9, 2022
96b5bab
docs(guide): update override-queries.md
mayashavin Mar 14, 2022
17131e1
docs: remove Roadmap document (#852)
filipsobol Apr 13, 2022
7810250
docs: updated contributors and fixed discord channel (#888)
bloodf Apr 20, 2022
f141ccf
fix: disabled external checkout on production env (#907)
Frodigo Apr 22, 2022
2a300d3
docs: updated readme links (#917)
bloodf Apr 25, 2022
90f6537
docs: add analytics
filipsobol May 20, 2022
b4b866c
chore: release 1.0.0-rc.7 (#949)
github-actions[bot] May 24, 2022
ff3302c
build: restored composables build (#1051)
Frodigo May 24, 2022
d4dfcf3
build: restored composables publish script (#1052)
Frodigo May 24, 2022
4316565
build: updated docs dockerfile and fix type issue (#1055)
Frodigo May 24, 2022
118de7b
build: updated docs build (#1061)
Frodigo May 26, 2022
cbe357d
refactor: fixed customer logging and authorization checking (#1089)
Frodigo Jun 1, 2022
b56508b
chore: release 1.0.0-rc.8 (#1063)
github-actions[bot] Jun 2, 2022
30d827b
Merge branch 'develop' into chore/main-dev-1.0.0-rc.8
Frodigo Jun 2, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .vuestorefrontcloud/docker/docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
FROM node:14 AS build
FROM node:16-alpine AS build

WORKDIR /var/www

RUN apk add --no-cache \
yarn

COPY . .

# Run dependencies needed to build API Refenrece
RUN yarn install

# Build docs
RUN cd docs \
&& npm install \
&& yarn install \
&& sed -i "s/base: '\/',/base: '\/magento\/',/g" ./.vuepress/config.js \
&& cat ./.vuepress/config.js \
&& npm run build
&& yarn api-extract \
&& yarn build

FROM nginx

Expand Down
5 changes: 5 additions & 0 deletions docs/.vuepress/styles/index.styl
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,8 @@ a code {
color: $accentColor !important;
font-weight: bold;
}

div.theme-default-content:not(.custom) {
max-width: 1024px;
}

79 changes: 79 additions & 0 deletions docs/migration-guides/1.0.0-rc.8/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# Vue Storefront for Magento 1.0.0-rc.8 release notes

Vue Storefront for Magento 1.0.0.rc.8 contains backward-incompatible changes. To review these backward-incompatible changes, see

[1.0.0-rc.7 **Backward incompatible changes reference**](./rc.8-bic.md)

## Vue Storefront for Magento 1.0.0-rc.8 highlights

### Improved Customer Account Pages

Customer pages (my account) have been rewritten, and from now, each account page is a separate route.

### Improved code quality

All errors reported by the eslint have been fixed, and `lang=”ts”` attribute has been added to all vue templates. Missing types have been also added.

### New features

- feat: show configurable option values in order history AND feat: show more order details [#996](https://github.com/vuestorefront/magento2/pull/996)
- feat: add skeleton loaders for address edit and addresses details pages [#999](https://github.com/vuestorefront/magento2/pull/999)
- feat: add skeleton loaders in category navbar [#936](https://github.com/vuestorefront/magento2/pull/936)

### Performance improvements

- perf: make related and upsell products lazy loaded when visible [#981](https://github.com/vuestorefront/magento2/pull/981)
- perf: make read reviews loaded on request [#982](https://github.com/vuestorefront/magento2/pull/982)
- perf: make PDP Instagram feed section loaded when visible [#980](https://github.com/vuestorefront/magento2/pull/980)
- perf: make mobile store banner lazy-loaded on PDP [#979](https://github.com/vuestorefront/magento2/pull/979)
- perf: remove TopBar layout shift [#1034](https://github.com/vuestorefront/magento2/pull/1034)
- perf: prevent loading all main images on the mobile PDP gallery [#985](https://github.com/vuestorefront/magento2/pull/985)

### **Bugfix**

- fix: issue with displaying product price od PDP and PLP [#1053](https://github.com/vuestorefront/magento2/pull/1053)
- fix: empty wishlist implementation [#1006](https://github.com/vuestorefront/magento2/pull/1006)
- fix: fixed errors during wishlist loading [#995](https://github.com/vuestorefront/magento2/pull/995)
- fix: fetch new orders on each orders history visit AND move order information to separate section [#1046](https://github.com/vuestorefront/magento2/pull/1046)
- fix: remove unwanted authorization errors in the console [#976](https://github.com/vuestorefront/magento2/pull/976)
- fix: coupon code invalid error message [#1009](https://github.com/vuestorefront/magento2/pull/1009)
- fix: coupon code doesn't show error [#958](https://github.com/vuestorefront/magento2/pull/958)
- fix: prevent SfSidebar disableBodyScroll triggering on desktop [#1027](https://github.com/vuestorefront/magento2/pull/1027)
- fix: category page - equal amount of product for a row [#1007](https://github.com/vuestorefront/magento2/pull/1007)
- fix: wrong warning announcement on modal window to login [#1004](https://github.com/vuestorefront/magento2/pull/1004)
- fix: entities on filters are not displayed properly [#989](https://github.com/vuestorefront/magento2/pull/989)
- fix: add html content purify for the selected filters [#1039](https://github.com/vuestorefront/magento2/pull/1039)
- fix: useProductGallery reactivity [#1033](https://github.com/vuestorefront/magento2/pull/1033)
- fix: sfcontentpages style missing on my account develop [#992](https://github.com/vuestorefront/magento2/pull/992)
- fix: filter by category issue [#977](https://github.com/vuestorefront/magento2/pull/977)

### Refactors

- refactor!: moved customer pages to subroutes [#991](https://github.com/vuestorefront/magento2/pull/991)
- refactor!: create renderers for each product type [#1014](https://github.com/vuestorefront/magento2/pull/1014)
- refactor: updated order details totals section styling [#1042](https://github.com/vuestorefront/magento2/pull/988)
- refactor!: use order.number instead of deprecated order.order_number [#1000](https://github.com/vuestorefront/magento2/pull/1000)
- refactor: add product to cart from wishlist [#1026](https://github.com/vuestorefront/magento2/pull/1026)
- refactor: remove useless order getters [#1016](https://github.com/vuestorefront/magento2/pull/1016)
- refactor!: create wishlist module [#945](https://github.com/vuestorefront/magento2/pull/945)

### Tests

- test: added tests for cmscontent component [#1056](https://github.com/vuestorefront/magento2/pull/1056)
- test: categorynavbar component [#952](https://github.com/vuestorefront/magento2/pull/952)
- test: category-breadcrumbs component [#987](https://github.com/vuestorefront/magento2/pull/987)

### Chore

- chore: fix all remaining .vue lang="ts" errors [#1043](https://github.com/vuestorefront/magento2/pull/1043)
- refactor: fix eslint warnings in .vue files [#1036](https://github.com/vuestorefront/magento2/pull/1036)
- chore: implement overlooked additional tasks [#1023](https://github.com/vuestorefront/magento2/pull/1023)
- chore: fix all remaining eslint errors [#1010](https://github.com/vuestorefront/magento2/pull/1010)
- chore: fix ~50 eslint errors [#1008](https://github.com/vuestorefront/magento2/pull/1008)
- chore: fix ~240 eslint errors/warnings [#1005](https://github.com/vuestorefront/magento2/pull/1005)

### Documentation

- docs: update composables docs [#994](https://github.com/vuestorefront/magento2/pull/994)
- docs: refactor the setup guide docs [#975](https://github.com/vuestorefront/magento2/pull/975)
- docs: update useAddresses API reference [#935](https://github.com/vuestorefront/magento2/pull/935)
Loading