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
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
25
25
- Fix MSI default stock id value
26
26
- Add outputFormatter to response from cache - @gibkigonzo (#428)
27
27
28
+
29
+
## [1.11.1] - 2020.03.17
30
+
31
+
### Added
32
+
- Add save address on place order - @lucasqm (#394)
33
+
- Add ElasticSearch client support for HTTP authentication - @cewald (#397)
34
+
- Add error handling for catalog and add header 'X-VS-Cache-Tags' to response - @gibkigonzo
35
+
36
+
### Fixed
37
+
- Add fallback for `sourcePriceInclTax` and `finalPriceInclTax` in `magento1` platform - @cewald (#398)
38
+
- Add default ES index to config and update `getStockList` - @gibkigonzo (#405)
39
+
- 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)
114
+
if(_err||_resBody.error){
115
+
apiError(res,_err||_resBody.error);
116
+
return
117
+
}
118
+
try{
119
+
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)
120
+
constfactory=newProcessorFactory(config)
121
+
consttagsArray=[]
122
+
if(config.server.useOutputCache&&cache){
123
+
consttagPrefix=entityType[0].toUpperCase()// first letter of entity name: P, T, A ...
0 commit comments