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.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
16
- Endpoint for reset password with reset token. Only for Magento 2 - @Fifciu
17
17
- Varnish Cache with autoinvalidation by Cache tags as addon - @Fifciu
18
18
- Add `resetPasswordUsingResetToken` to `magento1` platform - @cewald (#415)
19
+
- Update to `storefront-query-builder` version `1.0.0` - @cewald (#429)
20
+
- Add `composeError` in './magento2/o2m.js' - @flancer64 (#422)
21
+
- Explicit data extraction from 'Error' objects - @flancer64 (#424)
19
22
20
23
### Fixed
21
24
- add es7 support for map url module and fixed default index for es config - @gibkigonzo
22
25
- Add correct paths for production build - @cewald (#407)
23
26
- Fix MSI default stock id value
27
+
- Add outputFormatter to response from cache - @gibkigonzo (#428)
28
+
29
+
30
+
## [1.11.1] - 2020.03.17
31
+
32
+
### Added
33
+
- Add save address on place order - @lucasqm (#394)
34
+
- Add ElasticSearch client support for HTTP authentication - @cewald (#397)
35
+
- Add error handling for catalog and add header 'X-VS-Cache-Tags' to response - @gibkigonzo
36
+
37
+
### Fixed
38
+
- Add fallback for `sourcePriceInclTax` and `finalPriceInclTax` in `magento1` platform - @cewald (#398)
39
+
- Add default ES index to config and update `getStockList` - @gibkigonzo (#405)
40
+
- Makes elastic-stock extension compatible with both ES5 and ES7. Allows for stock fetch of configurable children that is set as "Not Visible Individually" - @didkan (#410)
},(_err,_res,_resBody)=>{// TODO: add caching layer to speed up SSR? How to invalidate products (checksum on the response BEFORE processing it)
113
-
if(_resBody&&_resBody.hits&&_resBody.hits.hits){// we're signing up all objects returned to the client to be able to validate them when (for example order)
114
-
constfactory=newProcessorFactory(config)
115
-
consttagsArray=[]
116
-
if(config.server.useOutputCache&&cache){
117
-
consttagPrefix=entityType[0].toUpperCase()// first letter of entity name: P, T, A ...
},async(_err,_res,_resBody)=>{// TODO: add caching layer to speed up SSR? How to invalidate products (checksum on the response BEFORE processing it)
116
+
if(_err||_resBody.error){
117
+
apiError(res,_err||_resBody.error);
118
+
return
119
+
}
120
+
try{
121
+
if(_resBody&&_resBody.hits&&_resBody.hits.hits){// we're signing up all objects returned to the client to be able to validate them when (for example order)
122
+
constfactory=newProcessorFactory(config)
123
+
consttagsArray=[]
124
+
if(config.server.useOutputCache&&cache){
125
+
consttagPrefix=entityType[0].toUpperCase()// first letter of entity name: P, T, A ...
0 commit comments