Skip to content

Commit 95ac016

Browse files
committed
Release 8.0.0
1 parent dfad9f1 commit 95ac016

File tree

25 files changed

+66
-50
lines changed

25 files changed

+66
-50
lines changed

.README.md.swp

-16 KB
Binary file not shown.

CHANGES.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,3 +147,19 @@
147147

148148
## Sep 9, 2021
149149
- Fix for #214, support for escape character
150+
151+
## Sep 13, 2021
152+
153+
Major release of chat workflow. Most interfaces for this changed. See migration guide for details.
154+
155+
- Fix for #210, removed EntityJSON parameter from freemarker templating engine
156+
- Fix for #209, support for Dynamic Dropdowns, and room dropdowns
157+
- Fix for #178, proper error reporting inside symphony
158+
- Fix for #173, use of HandlerMapping pattern, removal of Workflow class.
159+
- Fix for #172, better Response class hierarchy
160+
- Fix for #168, spring scanning for @Work annotation classes
161+
- Fix for #164, help provision now generic, not part of symphony code
162+
- Fix for #113, trying to improve serialization of Entity JSON format
163+
- Fix for #196, mapping of EntityJson tags are Content objects.
164+
- Fix for #174, Addressable object hierarchy improved
165+

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ In order to do a release:
174174

175175
```
176176
mvn clean test -P symphony-ci
177-
mvn versions:set -DnewVersion=<our breaking change no>.<symphony-api-version>.<our-release-no> -DartifactId=\* -DgroupId=\*
177+
mvn versions:set -DnewVersion=<our breaking change no>.<minor version no>.<our-patch-version-no> -DartifactId=\* -DgroupId=\*
178178
mvn -DskipTests clean test source:jar javadoc:javadoc deploy -P symphony-release
179179
mvn versions:set -DnewVersion=<our breaking change no>.<symphony-api-version>.<our-release-no+1>-SNAPSHOT -DartifactId=\* -DgroupId=\*
180180
# then push to git

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

@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>org.finos.symphony.toolkit</groupId>
2525
<artifactId>symphony-chat-workflow-spring-boot-starter</artifactId>
26-
<version>8.0.0-SNAPSHOT</version>
26+
<version>8.0.1-SNAPSHOT</version>
2727
</dependency>
2828
<dependency>
2929
<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.0-SNAPSHOT</version>
10+
<version>8.0.1-SNAPSHOT</version>
1111
<relativePath>../..</relativePath>
1212
</parent>
1313

@@ -37,7 +37,7 @@
3737
<groupId>org.finos.symphony.toolkit</groupId>
3838
<artifactId>symphony-app-spring-boot-starter</artifactId>
3939
<scope>compile</scope>
40-
<version>8.0.0-SNAPSHOT</version>
40+
<version>8.0.1-SNAPSHOT</version>
4141
</dependency>
4242

4343
<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.0-SNAPSHOT</version>
10+
<version>8.0.1-SNAPSHOT</version>
1111
<relativePath>../..</relativePath>
1212
</parent>
1313

@@ -32,13 +32,13 @@
3232
<dependency>
3333
<groupId>org.finos.symphony.toolkit</groupId>
3434
<artifactId>symphony-api-spring-boot-starter</artifactId>
35-
<version>8.0.0-SNAPSHOT</version>
35+
<version>8.0.1-SNAPSHOT</version>
3636
<scope>compile</scope>
3737
</dependency>
3838
<dependency>
3939
<groupId>org.finos.symphony.toolkit</groupId>
4040
<artifactId>shared-stream-spring-boot-starter</artifactId>
41-
<version>8.0.0-SNAPSHOT</version>
41+
<version>8.0.1-SNAPSHOT</version>
4242
<scope>compile</scope>
4343
</dependency>
4444
<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.0-SNAPSHOT</version>
9+
<version>8.0.1-SNAPSHOT</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212

@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>org.finos.symphony.toolkit</groupId>
2525
<artifactId>symphony-chat-workflow-spring-boot-starter</artifactId>
26-
<version>8.0.0-SNAPSHOT</version>
26+
<version>8.0.1-SNAPSHOT</version>
2727
</dependency>
2828
<dependency>
2929
<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.0-SNAPSHOT</version>
13+
<version>8.0.1-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.0-SNAPSHOT</version>
250+
<version>8.0.1-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.0-SNAPSHOT</version>
11+
<version>8.0.1-SNAPSHOT</version>
1212
<relativePath>../..</relativePath>
1313
</parent>
1414

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

0 commit comments

Comments
 (0)