You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 28, 2023. It is now read-only.
- Multistore support for `magento1`-platform using `magento1-vsbridge` - @cewald (#276)
19
+
20
+
### Changed
21
+
- Sharp dependency has been updated. *It might require reinstalling yarn dependencies* - @lukeromanowicz
22
+
- Replaced index property value `not_analyzed` with `true` for `options` field in attribute schema - @adityasharma7 (#334)
23
+
24
+
### Fixed
25
+
- Missing `res` and `req` parameters are now passed to ProductProcessor - @jahvi (#218)
26
+
- Moving of graphql files to the dist folder - @ResuBaka (#242)
27
+
- Moving of schema files to the dist folder - @ResuBaka (#244)
28
+
- Missing assetPath config for magento1 - @ResuBaka (#245)
29
+
- New payload for magento1 stock check endpoint - @cewald (#261)
30
+
-`yarn dev:inspect` command and extract nodemon config to nodemon.json - @Tjitse-E, @cewald (#272, #279)
31
+
- Include Magento Currency Code in mage2vs import and productsdelta if available - @rain2o (#281)
32
+
- Better handling of HTTP error codes provided by API client - @pkarw (#3151)
33
+
34
+
## [1.9.6] - 2019.07.11
35
+
- Dependencies update to avoid lodash security issues.
36
+
37
+
## [1.9.5] - 2019.06.17
38
+
- Dependencies update to avoid js-yaml security issues.
39
+
40
+
## [1.9.4] - 2019.06.03
41
+
- Extension schemas in `src/models` are not required anymore - @EmilsM, @lukeromanowicz (#259, #263)
42
+
43
+
## [1.9.3] - 2019.05.27
44
+
- Change min postal code length in user profile to 3 so it's sames as in orders - @lukeromanowicz (#253)
45
+
46
+
## [1.9.2] - 2019.05.20
47
+
- Fix failing o2m when parsing order schema - @lukeromanowicz (#248)
48
+
49
+
## [1.9.1] - 2019.05.10
50
+
- Mount ElasticSearch data to `docker/elasticsearch/data` directory - @dimasch, @lukeromanowicz (#237, #241)
51
+
- Fix product schema and importer in migration process - @lukeromanowicz (#239)
52
+
53
+
## [1.9.0] - 2019.05.06
54
+
- Changed location of magento1 platform js client. Moved from `src/platform/magento1/module` to [magento1-vsbridge-client](https://github.com/DivanteLtd/magento1-vsbridge-client) - @mtarld (#195)
55
+
- Update Babel from 6 to 7 - @lukeromanowicz (#202)
56
+
- Support unicode characters in order requests - @lukeromanowicz (#201)
57
+
- TravisCI configured for building and linting - @lukeromanowicz (#204)
58
+
- Use Redis database from configuration in mage2vs - @Cyclonecode (#211)
59
+
- Requests with invalid body result in HTTP code 400 instead of 500 - @AndreiBelokopytov (#220)
60
+
-`src/models/order.schema.json` was moved to `src/models/order.schema.js` to support regex transformation - @lukeromanowicz (#201)
61
+
62
+
## [1.8.4] - 2019.04.17
63
+
- Use encrypted token for user authentication - @pkarw (#215)
64
+
7
65
## [1.8.3] - 2019.03.05
8
66
- Use store id from configuration in `mage2vs import` - @boehsermoe (#179)
Copy file name to clipboardExpand all lines: README.md
+8-7Lines changed: 8 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ Besides a big improvement for the shopping experience, we also want to create a
19
19
- Docker and Docker Compose
20
20
21
21
Already included in `vue-storefront-api` Docker image (required locally, if you do not use containerization):
22
-
- Node.js 8.x or higher
22
+
- Node.js 10.x or higher
23
23
- Yarn
24
24
25
25
## Installation
@@ -82,7 +82,7 @@ This backend is using ElasticSearch data formats popularized by [ElasticSuite fo
82
82
Please use data migration mechanism provided to manipulate Redis, ElasticSearch or kue. Details: https://github.com/DivanteLtd/vue-storefront-api/tree/master/doc
83
83
84
84
## Adding custom modules with own dependencies (Yarn only)
85
-
When adding custom [Extensions to the API](https://github.com/DivanteLtd/vue-storefront/blob/master/doc/Extending%20vue-storefront-api.md) you might want to define some dependencies inside them. Thanks to [Yarn workspaces](https://yarnpkg.com/lang/en/docs/workspaces/)dependecies defined inside your custom module will be intaled when you execute `yarn` at project root level, so it's way esier and faster than installing all modules dependcies separetly.
85
+
When adding custom [Extensions to the API](https://github.com/DivanteLtd/vue-storefront/blob/master/doc/Extending%20vue-storefront-api.md) you might want to define some dependencies inside them. Thanks to [Yarn workspaces](https://yarnpkg.com/lang/en/docs/workspaces/)dependencies defined inside your custom module will be installed when you execute `yarn` at project root level, so it's way easier and faster than installing all modules dependencies separately.
86
86
87
87
To do this, define the `package.json` with your dependencies in your custom module:
@@ -131,6 +126,12 @@ You can run the following command to execute the full import:
131
126
```bash
132
127
yarn mage2vs import --store-code=de
133
128
```
129
+
130
+
Import of CMS blocks and pages is also performed by the full import. If the CMS API extension ((SnowdogApps/magento2-cms-api)[https://github.com/SnowdogApps/magento2-cms-api]) was not installed in magento 2, it's recommended to skip the CMS import commands.
0 commit comments