@eeacms/volto-globalsearch 1.0.12 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/config/index.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
### [1.0.13](https://github.com/eea/volto-globalsearch/compare/1.0.12...1.0.13) - 7 March 2023
|
|
8
|
+
|
|
9
|
+
#### :hammer_and_wrench: Others
|
|
10
|
+
|
|
11
|
+
- set the middleware proxy address for globalsearchbase [Zoltan Szabo - [`d0a0802`](https://github.com/eea/volto-globalsearch/commit/d0a08026fa73ce8fd15b666c922e7db71104a5d1)]
|
|
12
|
+
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`b710a4f`](https://github.com/eea/volto-globalsearch/commit/b710a4f73f61e164ecf502a83e7f07d0daf578b3)]
|
|
7
13
|
### [1.0.12](https://github.com/eea/volto-globalsearch/compare/1.0.11...1.0.12) - 1 March 2023
|
|
8
14
|
|
|
9
15
|
#### :hammer_and_wrench: Others
|
package/package.json
CHANGED
package/src/config/index.js
CHANGED
|
@@ -77,6 +77,9 @@ export default function install(config) {
|
|
|
77
77
|
if (typeof window !== 'undefined') {
|
|
78
78
|
config.searchui.globalsearch.host =
|
|
79
79
|
process.env.RAZZLE_ES_PROXY_ADDR || getClientProxyAddress();
|
|
80
|
+
|
|
81
|
+
config.searchui.globalsearchbase.host =
|
|
82
|
+
process.env.RAZZLE_ES_PROXY_ADDR || getClientProxyAddress();
|
|
80
83
|
}
|
|
81
84
|
|
|
82
85
|
config.searchui.standalone = {
|