Skip to content

Releases: finos/symphony-bdk-java

symphony-bdk-2.1.8

03 Jun 09:36
53eb191
Compare
Choose a tag to compare

Release note

Bug Fixes

  • #531 fixed jersey common dependency issue

Installation

More info in getting-started.md

Using Maven:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.finos.symphony.bdk</groupId>
            <artifactId>symphony-bdk-bom</artifactId>
            <version>2.1.8</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

Using Gradle:

dependencies {
    implementation platform('org.finos.symphony.bdk:symphony-bdk-bom:2.1.8')
}

symphony-bdk-2.1.7

02 Jun 21:13
9c4f442
Compare
Choose a tag to compare

Release note

Bug Fixes

  • #529 Usage of userId instead of username to accept incoming events. Fixing external messages issue.

Installation

More info in getting-started.md

Using Maven:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.finos.symphony.bdk</groupId>
            <artifactId>symphony-bdk-bom</artifactId>
            <version>2.1.7</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

Using Gradle:

dependencies {
    implementation platform('org.finos.symphony.bdk:symphony-bdk-bom:2.1.7')
}

symphony-legacy-bdk-1.3.6

28 May 08:47
912d02b
Compare
Choose a tag to compare

Release note

Security issues fix

  • #527 : Upgraded dependencies to fix Snyk vulnerabilities

Installation

Using Maven

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>com.symphony.platformsolutions</groupId>
            <artifactId>symphony-bdk-bot-sdk-java</artifactId>
            <version>1.3.6</version>
        </dependency>
        <dependency>
            <groupId>com.symphony.platformsolutions</groupId>
            <artifactId>symphony-api-client-java</artifactId>
            <version>1.3.6</version>
        </dependency>
        <dependency>
            <groupId>com.symphony.platformsolutions</groupId>
            <artifactId>sms-sdk-renderer-java</artifactId>
            <version>1.3.6</version>
        </dependency>
    </dependencies>
</dependencyManagement>

Using Gradle

dependencies {
    implementation platform('com.symphony.platformsolutions:symphony-bdk-bot-sdk-java:1.3.6')
    implementation platform('com.symphony.platformsolutions:symphony-api-client-java:1.3.6')
    implementation platform('com.symphony.platformsolutions:sms-sdk-renderer-java:1.3.6')
}

symphony-bdk-2.1.6

30 Apr 10:16
84eb995
Compare
Choose a tag to compare

Release note

Bug Fixes

  • #509 DatafeedLoop now retries on 500 server errors

Installation

More info in getting-started.md

Using Maven:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.finos.symphony.bdk</groupId>
            <artifactId>symphony-bdk-bom</artifactId>
            <version>2.1.6</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

Using Gradle:

dependencies {
    implementation platform('org.finos.symphony.bdk:symphony-bdk-bom:2.1.6')
}

symphony-bdk-2.1.5

27 Apr 15:44
c0dca85
Compare
Choose a tag to compare

Release note

Improvements

  • #506 Allow environment variables in config file (thanks to @Yannick-Symphony for his first contribution 🚀 )

Installation

More info in getting-started.md

Using Maven:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.finos.symphony.bdk</groupId>
            <artifactId>symphony-bdk-bom</artifactId>
            <version>2.1.5</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

Using Gradle:

dependencies {
    implementation platform('org.finos.symphony.bdk:symphony-bdk-bom:2.1.5')
}

symphony-bdk-2.1.4

20 Apr 07:38
fa66974
Compare
Choose a tag to compare

Release note

Security

  • #483 Cookie set without SameSite=Strict

Improvements

  • #482 traceId is set for each new DF events, Jersey2 client logs request execution time

Installation

More info in getting-started.md

Using Maven:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.finos.symphony.bdk</groupId>
            <artifactId>symphony-bdk-bom</artifactId>
            <version>2.1.4</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

Using Gradle:

dependencies {
    implementation platform('org.finos.symphony.bdk:symphony-bdk-bom:2.1.4')
}

symphony-bdk-2.1.3

17 Mar 13:00
b75f440
Compare
Choose a tag to compare

Release note

Improvements

  • #475 Fix ConcurrentModificationException in Datafeed loop
  • #474 Update Spring Boot to 2.4.3

Installation

More info in getting-started.md

Using Maven:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.finos.symphony.bdk</groupId>
            <artifactId>symphony-bdk-bom</artifactId>
            <version>2.1.3</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

Using Gradle:

dependencies {
    implementation platform('org.finos.symphony.bdk:symphony-bdk-bom:2.1.3')
}

symphony-bdk-2.1.2

09 Mar 08:29
cbb475c
Compare
Choose a tag to compare

Release note

Improvements

  • #464 Infinite number of attempts for the Datafeed retry configuration
  • #471 Updated User-Agent value to comply with RFC7231

Installation

More info in getting-started.md

Using Maven:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.finos.symphony.bdk</groupId>
            <artifactId>symphony-bdk-bom</artifactId>
            <version>2.1.2</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

Using Gradle:

dependencies {
    implementation platform('org.finos.symphony.bdk:symphony-bdk-bom:2.1.2')
}

symphony-bdk-2.1.1

02 Mar 10:58
5b16c44
Compare
Choose a tag to compare

Release note

Bug fixes

  • #462 HttpClient NPE bug when add queryparam (#463)

Installation

More info in getting-started.md

Using Maven:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.finos.symphony.bdk</groupId>
            <artifactId>symphony-bdk-bom</artifactId>
            <version>2.1.1</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

Using Gradle:

dependencies {
    implementation platform('org.finos.symphony.bdk:symphony-bdk-bom:2.1.1')
}

symphony-bdk-2.1.1.RC2

01 Mar 14:47
327db7f
Compare
Choose a tag to compare
Pre-release
Update build.gradle