Skip to content
This repository was archived by the owner on May 28, 2023. It is now read-only.

Commit 149d9d2

Browse files
committed
merge master
2 parents 9f44e1b + 0ec68cb commit 149d9d2

File tree

6 files changed

+811
-42
lines changed

6 files changed

+811
-42
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ 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.10.0-rc.1] - 2019.06.17
7+
## [1.10.0] - 2019.08.10
88

99
### Added
1010
- Typescript support - @ResuBaka (#210, #242)
@@ -27,8 +27,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2727
- Include Magento Currency Code in mage2vs import and productsdelta if available @rain2o (#281)
2828
- Better handling of HTTP error codes provided by API client - pkarw (#3151)
2929

30+
## [1.9.6] - 2019.07.11
31+
- Dependencies update to avoid lodash security issues.
32+
3033
## [1.9.5] - 2019.06.17
31-
- Dependencies security update against js-yaml flaws.
34+
- Dependencies update to avoid js-yaml security issues.
3235

3336
## [1.9.4] - 2019.06.03
3437
- Extension schemas in `src/models` are not required anymore - @EmilsM, @lukeromanowicz (#259, #263)

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,8 @@ After setting the `config.magento2.api` section using Yours Magento2 oauth crede
103103

104104
```json
105105
"magento2": {
106-
"url": "http://magento2.demo-1.xyz.com",
107106
"imgUrl": "http://localhost:8080/media/catalog/product",
108107
"assetPath": "/../var/magento2-sample-data/pub/media",
109-
"magentoUserName": "",
110-
"magentoUserPassword": "",
111-
"httpUserName": "",
112-
"httpUserPassword": "",
113108
"api": {
114109
"url": "http://demo-magento2.vuestorefront.io/rest",
115110
"consumerKey": "byv3730rhoulpopcq64don8ukb8lf2gq",

config/default.json

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,8 @@
164164
}
165165
},
166166
"magento2": {
167-
"url": "http://demo-magento2.vuestorefront.io/",
168167
"imgUrl": "http://demo-magento2.vuestorefront.io/media/catalog/product",
169168
"assetPath": "/../var/magento2-sample-data/pub/media",
170-
"magentoUserName": "",
171-
"magentoUserPassword": "",
172-
"httpUserName": "",
173-
"httpUserPassword": "",
174169
"api": {
175170
"url": "http://demo-magento2.vuestorefront.io/rest",
176171
"consumerKey": "byv3730rhoulpopcq64don8ukb8lf2gq",
@@ -180,7 +175,6 @@
180175
}
181176
},
182177
"magento1": {
183-
"url": "http://magento-demo.local",
184178
"imgUrl": "http://magento-demo.local/media/catalog/product",
185179
"assetPath": "",
186180
"magentoUserName": "",
@@ -196,7 +190,6 @@
196190
}
197191
},
198192
"imageable": {
199-
"namespace": "",
200193
"maxListeners": 512,
201194
"imageSizeLimit": 1024,
202195
"whitelist": {
@@ -215,8 +208,7 @@
215208
"queue": 2,
216209
"process": 4
217210
},
218-
"simd": true,
219-
"keepDownloads": true
211+
"simd": true
220212
},
221213
"entities": {
222214
"category": {

doc/3. FAQ and Recipes.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# FAQ and Recipes
2+
3+
Below, you can find solutions for the most common problems and advice for typical config changes required by Vue Storefront API. If you solved any new issues by yourself, please let us know on [Slack](http://vuestorefront.slack.com) or [Forum](https://forum.vuestorefront.io/) and we will add them to the list so others don't need to reinvent the wheel.
4+
5+
## Problem starting Vue Storefront API on Windows Docker
6+
7+
In case you can't get vue storefront api (app container) to work on Windows and in logs you can see:
8+
9+
```
10+
app_1 | standard_init_linux.go:207: exec user process caused "no such file or directory"
11+
```
12+
13+
then your end of line character is probably set to native Windows crlf. To change that you need to run:
14+
15+
```
16+
git config core.autocrlf false
17+
git config core.eol lf
18+
git reset --hard
19+
docker-compose -f docker-compose.yml -f docker-compose.nodejs.yml up --build
20+
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"elasticsearch": "^15.2.0",
6969
"email-check": "^1.1.0",
7070
"express": "^4.16.3",
71-
"graphql": "^0.10.1",
71+
"graphql": "^0.13.1",
7272
"graphql-tools": "^1.2.1",
7373
"humps": "^1.1.0",
7474
"jsonfile": "^4.0.0",

0 commit comments

Comments
 (0)