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
+13
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
+
## [1.11.1] - 2020.03.17
8
+
9
+
### Added
10
+
- Add save address on place order - @lucasqm (#394)
11
+
- Add ElasticSearch client support for HTTP authentication - @cewald (#397)
12
+
- Add error handling for catalog and add header 'X-VS-Cache-Tags' to response - @gibkigonzo
13
+
14
+
### Fixed
15
+
- Add fallback for `sourcePriceInclTax` and `finalPriceInclTax` in `magento1` platform - @cewald (#398)
16
+
- Add default ES index to config and update `getStockList` - @gibkigonzo (#405)
17
+
- 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)
90
-
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)
91
-
constfactory=newProcessorFactory(config)
92
-
consttagsArray=[]
93
-
if(config.server.useOutputCache&&cache){
94
-
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)
91
+
if(_err||_resBody.error){
92
+
apiError(res,_err||_resBody.error);
93
+
return
94
+
}
95
+
try{
96
+
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)
97
+
constfactory=newProcessorFactory(config)
98
+
consttagsArray=[]
99
+
if(config.server.useOutputCache&&cache){
100
+
consttagPrefix=entityType[0].toUpperCase()// first letter of entity name: P, T, A ...
0 commit comments