Skip to content

Commit

Permalink
[Release 2.8.4] Main -> Develop (#1440)
Browse files Browse the repository at this point in the history
### Description

Release 2.8.4
  • Loading branch information
Ifropc authored Jul 29, 2024
2 parents ae96ee1 + 58060b6 commit acfed77
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ subprojects {

allprojects {
group = "org.stellar.anchor-sdk"
version = "2.8.3"
version = "2.8.4"

tasks.jar {
manifest {
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![License](https://badgen.net/badge/license/Apache%202/blue?icon=github&label=License)](https://github.com/stellar/java-stellar-anchor-sdk/blob/develop/LICENSE)
[![GitHub Version](https://badgen.net/github/release/stellar/java-stellar-anchor-sdk?icon=github&label=Latest%20release)](https://github.com/stellar/java-stellar-anchor-sdk/releases)
[![Docker](https://badgen.net/badge/Latest%20Release/v2.8.3/blue?icon=docker)](https://hub.docker.com/r/stellar/anchor-platform/tags?page=1&name=2.8.3)
[![Docker](https://badgen.net/badge/Latest%20Release/v2.8.4/blue?icon=docker)](https://hub.docker.com/r/stellar/anchor-platform/tags?page=1&name=2.8.4)
![Develop Branch](https://github.com/stellar/java-stellar-anchor-sdk/actions/workflows/on_push_to_develop.yml/badge.svg?branch=develop)

<div style="text-align: center">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,9 @@ public List<String> getAllowedClientDomains() {

// If clientAllowList is defined, only the clients in the allow list are allowed.
return clientAllowList.stream()
.filter(domain -> clientsConfig.getClientConfigByName(domain) != null)
.flatMap(domain -> clientsConfig.getClientConfigByName(domain).getDomains().stream())
.filter(name -> clientsConfig.getClientConfigByName(name) != null)
.filter(name -> clientsConfig.getClientConfigByName(name).getDomains() != null)
.flatMap(name -> clientsConfig.getClientConfigByName(name).getDomains().stream())
.filter(StringHelper::isNotEmpty)
.collect(Collectors.toList());
}
Expand Down
2 changes: 1 addition & 1 deletion service-runner/src/main/resources/version-info.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2.8.3
version=2.8.4

0 comments on commit acfed77

Please sign in to comment.