Skip to content

Commit 605e0e7

Browse files
committed
version bumped to 8.0.6
1 parent a5f3318 commit 605e0e7

File tree

26 files changed

+68
-62
lines changed

26 files changed

+68
-62
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,3 +181,11 @@ Major release of chat workflow. Most interfaces for this changed. See migratio
181181
# Nov 8, 2021
182182

183183
- Minor bugfix - KoreAI - JAVA_HOME variable replaced with actual path from System Property
184+
185+
# Nov 29, 2021
186+
187+
- Fix for #264 - For ChatRequest and ChatButton - room exclusion feature
188+
- Fix for #262 and #235 - For ChatRequest and ChatButton - rooms parameter
189+
- Fix for #260 - We can search user from different POD as well
190+
- Fix for #259 - Buttons are now visible on HelpPage
191+

demos/claim-bot/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.finos.symphony.toolkit</groupId>
88
<artifactId>symphony-java-toolkit</artifactId>
9-
<version>8.0.5-SNAPSHOT</version>
9+
<version>8.0.6-SNAPSHOT</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212

@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>org.finos.symphony.toolkit</groupId>
2626
<artifactId>symphony-chat-workflow-spring-boot-starter</artifactId>
27-
<version>8.0.5-SNAPSHOT</version>
27+
<version>8.0.6-SNAPSHOT</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>org.apache.commons</groupId>

demos/demo-app/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.finos.symphony.toolkit</groupId>
99
<artifactId>symphony-java-toolkit</artifactId>
10-
<version>8.0.5-SNAPSHOT</version>
10+
<version>8.0.6-SNAPSHOT</version>
1111
<relativePath>../..</relativePath>
1212
</parent>
1313

@@ -38,7 +38,7 @@
3838
<groupId>org.finos.symphony.toolkit</groupId>
3939
<artifactId>symphony-app-spring-boot-starter</artifactId>
4040
<scope>compile</scope>
41-
<version>8.0.5-SNAPSHOT</version>
41+
<version>8.0.6-SNAPSHOT</version>
4242
</dependency>
4343

4444
<dependency>

demos/demo-bot/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.finos.symphony.toolkit</groupId>
99
<artifactId>symphony-java-toolkit</artifactId>
10-
<version>8.0.5-SNAPSHOT</version>
10+
<version>8.0.6-SNAPSHOT</version>
1111
<relativePath>../..</relativePath>
1212
</parent>
1313

@@ -33,13 +33,13 @@
3333
<dependency>
3434
<groupId>org.finos.symphony.toolkit</groupId>
3535
<artifactId>symphony-api-spring-boot-starter</artifactId>
36-
<version>8.0.5-SNAPSHOT</version>
36+
<version>8.0.6-SNAPSHOT</version>
3737
<scope>compile</scope>
3838
</dependency>
3939
<dependency>
4040
<groupId>org.finos.symphony.toolkit</groupId>
4141
<artifactId>shared-stream-spring-boot-starter</artifactId>
42-
<version>8.0.5-SNAPSHOT</version>
42+
<version>8.0.6-SNAPSHOT</version>
4343
<scope>compile</scope>
4444
</dependency>
4545
<dependency>

demos/todo-bot/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.finos.symphony.toolkit</groupId>
88
<artifactId>symphony-java-toolkit</artifactId>
9-
<version>8.0.5-SNAPSHOT</version>
9+
<version>8.0.6-SNAPSHOT</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212

@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>org.finos.symphony.toolkit</groupId>
2626
<artifactId>symphony-chat-workflow-spring-boot-starter</artifactId>
27-
<version>8.0.5-SNAPSHOT</version>
27+
<version>8.0.6-SNAPSHOT</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>org.apache.commons</groupId>

libs/bindings/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.finos.symphony.toolkit</groupId>
1212
<artifactId>symphony-java-toolkit</artifactId>
13-
<version>8.0.5-SNAPSHOT</version>
13+
<version>8.0.6-SNAPSHOT</version>
1414
<relativePath>../..</relativePath>
1515
</parent>
1616

@@ -247,7 +247,7 @@
247247
<dependency>
248248
<groupId>org.finos.symphony.toolkit</groupId>
249249
<artifactId>identity</artifactId>
250-
<version>8.0.5-SNAPSHOT</version>
250+
<version>8.0.6-SNAPSHOT</version>
251251
<scope>test</scope>
252252
</dependency>
253253
<!-- excluded by spring bom, but we need it for jersey-apache-connector -->

libs/chat-workflow/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>org.finos.symphony.toolkit</groupId>
1010
<artifactId>symphony-java-toolkit</artifactId>
11-
<version>8.0.5-SNAPSHOT</version>
11+
<version>8.0.6-SNAPSHOT</version>
1212
<relativePath>../..</relativePath>
1313
</parent>
1414

libs/chat-workflow/src/main/java/org/finos/symphony/toolkit/workflow/java/mapping/ChatButtonChatHandlerMapping.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import java.util.Collections;
66
import java.util.List;
77
import java.util.Map;
8+
import java.util.Objects;
89
import java.util.stream.Collectors;
910

1011
import org.finos.symphony.toolkit.workflow.actions.Action;
@@ -121,7 +122,7 @@ private boolean canBePerformedHere(FormAction a) {
121122
private ChatHandlerExecutor matchesFormAction(FormAction a) {
122123
MappingRegistration<?> me = this;
123124

124-
if(a.getData().get("form").getClass() == HelpPage.class) {
125+
if(Objects.nonNull(a.getData().get("form")) && a.getData().get("form").getClass() == HelpPage.class) {
125126
return null;
126127
}
127128

libs/chat-workflow/src/main/java/org/finos/symphony/toolkit/workflow/java/mapping/ChatRequestChatHandlerMapping.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import java.util.HashMap;
1010
import java.util.List;
1111
import java.util.Map;
12+
import java.util.Objects;
1213
import java.util.Optional;
1314
import java.util.stream.Collectors;
1415

@@ -200,7 +201,7 @@ public ChatHandlerExecutor getExecutor(Action a) {
200201

201202
if (a instanceof FormAction) {
202203

203-
if (((FormAction) a).getData().get("form").getClass() != HelpPage.class) {
204+
if (Objects.nonNull(((FormAction)a).getData().get("form")) && ((FormAction) a).getData().get("form").getClass() != HelpPage.class) {
204205
return null;
205206
}
206207

libs/entity-json/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.finos.symphony.toolkit</groupId>
1212
<artifactId>symphony-java-toolkit</artifactId>
13-
<version>8.0.5-SNAPSHOT</version>
13+
<version>8.0.6-SNAPSHOT</version>
1414
<relativePath>../..</relativePath>
1515
</parent>
1616

0 commit comments

Comments
 (0)