@eeacms/volto-eea-chatbot 2.0.0 → 2.0.1
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 +10 -1
- package/package.json +1 -1
- package/src/ChatBlock/index.js +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,14 @@ 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
|
-
### [2.0.
|
|
7
|
+
### [2.0.1](https://github.com/eea/volto-eea-chatbot/compare/2.0.0...2.0.1) - 2 April 2026
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix: Add bbb replacement for danswerChat [Tiberiu Ichim - [`6e6cbfc`](https://github.com/eea/volto-eea-chatbot/commit/6e6cbfc07ea10d2b92fa63a97e50a43a196eb739)]
|
|
12
|
+
- fix: make test [Alin V. (Claudiu) - [`ee005a0`](https://github.com/eea/volto-eea-chatbot/commit/ee005a0ec5edd7c2fdc7e213b995ff6b0d3a2128)]
|
|
13
|
+
|
|
14
|
+
## [2.0.0](https://github.com/eea/volto-eea-chatbot/compare/1.0.13...2.0.0) - 16 March 2026
|
|
8
15
|
|
|
9
16
|
#### :rocket: New Features
|
|
10
17
|
|
|
@@ -26,6 +33,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
26
33
|
#### :house: Internal changes
|
|
27
34
|
|
|
28
35
|
- style: Automated code fix [eea-jenkins - [`8a8c3c4`](https://github.com/eea/volto-eea-chatbot/commit/8a8c3c4172a4f669661378cf1b5a3569d85609e6)]
|
|
36
|
+
- chore: [JENKINSFILE] add package version in sonarqube [valentinab25 - [`535d986`](https://github.com/eea/volto-eea-chatbot/commit/535d986b7adc77743a668bc4ac63f835eef58df3)]
|
|
29
37
|
|
|
30
38
|
#### :hammer_and_wrench: Others
|
|
31
39
|
|
|
@@ -36,6 +44,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
36
44
|
#### :house: Internal changes
|
|
37
45
|
|
|
38
46
|
- style: Automated code fix [eea-jenkins - [`fdcd884`](https://github.com/eea/volto-eea-chatbot/commit/fdcd8848fd4c3f990ca5ea021f407487aebd6010)]
|
|
47
|
+
- chore: [JENKINSFILE] use sonarqube branches [EEA Jenkins - [`3d428d7`](https://github.com/eea/volto-eea-chatbot/commit/3d428d72f32c3d05452b0961c76f5db1c416e05c)]
|
|
39
48
|
|
|
40
49
|
#### :hammer_and_wrench: Others
|
|
41
50
|
|
package/package.json
CHANGED
package/src/ChatBlock/index.js
CHANGED
|
@@ -28,5 +28,13 @@ export default function installChatBlock(config) {
|
|
|
28
28
|
},
|
|
29
29
|
variations: [],
|
|
30
30
|
};
|
|
31
|
+
|
|
32
|
+
if (!config.blocks.blocksConfig.danswerChat) {
|
|
33
|
+
config.blocks.blocksConfig.danswerChat = {
|
|
34
|
+
...config.blocks.blocksConfig.eeaChatbot,
|
|
35
|
+
id: 'danswerChat',
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
|
|
31
39
|
return config;
|
|
32
40
|
}
|