Skip to content

Commit 739ba9a

Browse files
committed
Version bumped
1 parent 20f19b1 commit 739ba9a

File tree

35 files changed

+80
-67
lines changed

35 files changed

+80
-67
lines changed

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,8 @@
139139
- Fix for #180, Kore AI Bot Health Unreliable
140140
- Fix for #171, Chat Workflow Delete/Checkbox alignment display
141141
- Fix for #141, Handle Primitives in Chat Workflow
142+
143+
## Jul 28, 2021
144+
- Fix for #183, camelcase issue for methods
145+
- Fix for #192, FormConverter doesn't use same object mapper as EntityJsonConverter
146+
- Migrated from InstantConverter to TimeConverter, which supports Zone and LocaldateTime

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>7.20.4-SNAPSHOT</version>
9+
<version>7.20.5-SNAPSHOT</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212

@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>org.finos.symphony.toolkit</groupId>
2626
<artifactId>chat-workflow-spring-boot-starter</artifactId>
27-
<version>7.20.4-SNAPSHOT</version>
27+
<version>7.20.5-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>7.20.4-SNAPSHOT</version>
10+
<version>7.20.5-SNAPSHOT</version>
1111
<relativePath>../..</relativePath>
1212
</parent>
1313

@@ -43,7 +43,7 @@
4343
<groupId>org.finos.symphony.toolkit</groupId>
4444
<artifactId>symphony-app-spring-boot-starter</artifactId>
4545
<scope>compile</scope>
46-
<version>7.20.4-SNAPSHOT</version>
46+
<version>7.20.5-SNAPSHOT</version>
4747
</dependency>
4848

4949
<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>7.20.4-SNAPSHOT</version>
10+
<version>7.20.5-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>7.20.4-SNAPSHOT</version>
36+
<version>7.20.5-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>7.20.4-SNAPSHOT</version>
42+
<version>7.20.5-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>7.20.4-SNAPSHOT</version>
9+
<version>7.20.5-SNAPSHOT</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212

@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>org.finos.symphony.toolkit</groupId>
2626
<artifactId>chat-workflow-spring-boot-starter</artifactId>
27-
<version>7.20.4-SNAPSHOT</version>
27+
<version>7.20.5-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>7.20.4-SNAPSHOT</version>
13+
<version>7.20.5-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>7.20.4-SNAPSHOT</version>
250+
<version>7.20.5-SNAPSHOT</version>
251251
<scope>test</scope>
252252
</dependency>
253253
<!-- excluded by spring bom, but we need it for jersey-apache-connector -->

libs/chat-workflow-spring-boot-starter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,4 +361,4 @@ Depending on the arguments of the command, they may be shows as buttons, or sugg
361361

362362
## Symphony Chat Workflow Annotations:
363363
You can find more details about the annotations used in Symphony Chat Workflow in below link
364-
- [View Chat Workflow Annotations](../../ANNOTATIONS.md)
364+
- [View Chat Workflow Annotations](../../tutorials/ANNOTATIONS.md)

libs/chat-workflow-spring-boot-starter/pom.xml

Lines changed: 4 additions & 4 deletions
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>7.20.4-SNAPSHOT</version>
11+
<version>7.20.5-SNAPSHOT</version>
1212
<relativePath>../..</relativePath>
1313
</parent>
1414

@@ -21,17 +21,17 @@
2121
<dependency>
2222
<groupId>org.finos.symphony.toolkit</groupId>
2323
<artifactId>symphony-api-spring-boot-starter</artifactId>
24-
<version>7.20.4-SNAPSHOT</version>
24+
<version>7.20.5-SNAPSHOT</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>org.finos.symphony.toolkit</groupId>
2828
<artifactId>entity-json</artifactId>
29-
<version>7.20.4-SNAPSHOT</version>
29+
<version>7.20.5-SNAPSHOT</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>org.finos.symphony.toolkit</groupId>
3333
<artifactId>shared-stream-spring-boot-starter</artifactId>
34-
<version>7.20.4-SNAPSHOT</version>
34+
<version>7.20.5-SNAPSHOT</version>
3535
</dependency>
3636
<!-- needed for formatting messageml -->
3737
<dependency>

libs/chat-workflow-spring-boot-starter/src/test/java/org/finos/symphony/toolkit/workflow/TestSymphonyResponseHandler.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public void testSendMessage() {
6464
.then(a -> {
6565
Assertions.assertEquals(TestWorkflowConfig.room.getId(), a.getArgument(1));
6666
Assertions.assertEquals("<messageML> - <hash tag=\"testobjects-workflow\" /> - <hash tag=\"symphony-workflow\" /> - <hash tag=\"com-db-symphonyp-workflow-testobject\" /> testing</messageML>", a.getArgument(2));
67-
Assertions.assertEquals("{\"workflow_001\":{\"type\":\"com.db.symphonyp.workflow.testObject\",\"version\":\"1.0\",\"isin\":\"213\",\"bidAxed\":true,\"askAxed\":false,\"creator\":\"rob@here.com\",\"bidQty\":55,\"askQty\":22}}", a.getArgument(3));
67+
Assertions.assertEquals("{\"workflow_001\":{\"type\":\"org.finos.symphony.toolkit.workflow.testObject\",\"version\":\"1.0\",\"isin\":\"213\",\"bidAxed\":true,\"askAxed\":false,\"creator\":\"rob@here.com\",\"bidQty\":55,\"askQty\":22}}", a.getArgument(3));
6868
return null;
6969
});
7070

@@ -78,10 +78,10 @@ public void testSendEmptyForm() {
7878
.then(a -> {
7979
Assertions.assertEquals(TestWorkflowConfig.room, a.getArgument(1));
8080
Assertions.assertEquals("<messageML> - <hash tag=\"axes-workflow\" /> - <hash tag=\"symphony-workflow\" />"+
81-
" <form id=\"com.db.symphonyp.workflow.TestObject\" ><text-field name=\"isin.\" placeholder=\"isin\" ></text-field><checkbox name=\"bidAxed.\" value=\"true\" >bidAxed</checkbox><checkbox name=\"askAxed.\" value=\"true\" >askAxed</checkbox>"+
81+
" <form id=\"org.finos.symphony.toolkit.workflow.TestObject\" ><text-field name=\"isin.\" placeholder=\"isin\" ></text-field><checkbox name=\"bidAxed.\" value=\"true\" >bidAxed</checkbox><checkbox name=\"askAxed.\" value=\"true\" >askAxed</checkbox>"+
8282
"<text-field name=\"creator.\" placeholder=\"creator\" ></text-field><text-field name=\"bidQty.\" placeholder=\"bidQty\" ></text-field><text-field name=\"askQty.\" placeholder=\"askQty\" ></text-field>"
8383
+"<button name=\"OK\" type=\"action\" >Click me</button></form></messageML>", a.getArgument(2));
84-
Assertions.assertEquals("{\"workflow_001\":{\"type\":\"com.db.symphonyp.workflow.testObject\",\"version\":\"1.0\",\"isin\":\"213\",\"bidAxed\":true,\"askAxed\":false,\"creator\":\"rob@here.com\",\"bidQty\":55,\"askQty\":22}}", a.getArgument(3));
84+
Assertions.assertEquals("{\"workflow_001\":{\"type\":\"org.finos.symphony.toolkit.workflow.testObject\",\"version\":\"1.0\",\"isin\":\"213\",\"bidAxed\":true,\"askAxed\":false,\"creator\":\"rob@here.com\",\"bidQty\":55,\"askQty\":22}}", a.getArgument(3));
8585
return null;
8686
});
8787

@@ -95,7 +95,7 @@ public void testSendFormWithError() {
9595
.then(a -> {
9696
Assertions.assertEquals(TestWorkflowConfig.room, a.getArgument(1));
9797
Assertions.assertEquals("<messageML> - <hash tag=\"axes-workflow\" /> - <hash tag=\"symphony-workflow\" /> - <hash tag=\"com-db-axes-axe\" /> testing</messageML>", a.getArgument(2));
98-
Assertions.assertEquals("{\"workflow_001\":{\"type\":\"com.db.symphonyp.workflow.testObject\",\"version\":\"1.0\",\"isin\":\"213\",\"bidAxed\":true,\"askAxed\":false,\"creator\":\"rob@here.com\",\"bidQty\":55,\"askQty\":22}}", a.getArgument(3));
98+
Assertions.assertEquals("{\"workflow_001\":{\"type\":\"org.finos.symphony.toolkit.workflow.testObject\",\"version\":\"1.0\",\"isin\":\"213\",\"bidAxed\":true,\"askAxed\":false,\"creator\":\"rob@here.com\",\"bidQty\":55,\"askQty\":22}}", a.getArgument(3));
9999
return null;
100100
});
101101

@@ -112,7 +112,7 @@ public void testSendWithNestedWorflowObjects() {
112112
.then(a -> {
113113
Assertions.assertEquals(TestWorkflowConfig.room, a.getArgument(1));
114114
Assertions.assertEquals("<messageML> - <hash tag=\"axes-workflow\" /> - <hash tag=\"symphony-workflow\" /> - <hash tag=\"com-db-axes-axe\" /> testing</messageML>", a.getArgument(2));
115-
Assertions.assertEquals("{\"workflow_001\":{\"type\":\"com.db.symphonyp.workflow.testObject\",\"version\":\"1.0\",\"isin\":\"213\",\"bidAxed\":true,\"askAxed\":false,\"creator\":\"rob@here.com\",\"bidQty\":55,\"askQty\":22}}", a.getArgument(3));
115+
Assertions.assertEquals("{\"workflow_001\":{\"type\":\"org.finos.symphony.toolkit.workflow.testObject\",\"version\":\"1.0\",\"isin\":\"213\",\"bidAxed\":true,\"askAxed\":false,\"creator\":\"rob@here.com\",\"bidQty\":55,\"askQty\":22}}", a.getArgument(3));
116116
return null;
117117
});
118118

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>7.20.4-SNAPSHOT</version>
13+
<version>7.20.5-SNAPSHOT</version>
1414
<relativePath>../..</relativePath>
1515
</parent>
1616

0 commit comments

Comments
 (0)