diff --git a/CHANGELOG.md b/CHANGELOG.md index 14479a50d49d0ac64afbf8a22096a82bb96a7ba3..ee3400bae62c2918e64ed75ed0972e247950be1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,23 @@ All notable changes to the FIT-Connect Java SDK will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/), and this project adheres to [Semantic Versioning](https://semver.org/). -## [1.0.0-rc.1] +## [1.0.0-rc.2] - 2023-06-14 + +### Fixed +- Fix of invalid XML schema validation (#1070) +- Fix of invalid ReplyChannel validation (#1073) + +### Changed +- Upgraded dependencies: + - Jackson 2.15.2 + - Lombok 1.18.28 + - Logback 1.4.8 + - Apache Tika 2.8.0 + - Json Schema Validator 1.0.84 + +### Removed +- The command-line client was removed from the actual sdk client module, since it was only for testing purposes + +## [1.0.0-rc.1] - 2023-03-05 - initial release candidate version of the SDK diff --git a/client/src/main/java/dev/fitko/fitconnect/client/RouterClient.java b/client/src/main/java/dev/fitko/fitconnect/client/RouterClient.java index 7386001362beeaae85cd39f57eed15e9eb135354..c9c7601abe8a5214671da50619160e7fb509ce62 100644 --- a/client/src/main/java/dev/fitko/fitconnect/client/RouterClient.java +++ b/client/src/main/java/dev/fitko/fitconnect/client/RouterClient.java @@ -12,6 +12,9 @@ import dev.fitko.fitconnect.core.routing.RouteVerifier; import java.util.List; import java.util.function.Supplier; +/** + * A client to retrieve routing information for areas and destinations. + */ public final class RouterClient { private final RoutingService routingService; diff --git a/integration-tests/README.md b/integration-tests/README.md deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/pom.xml b/pom.xml index 608c1ba87c450d6806bfb61de07b64dc370dfebf..f73911f10c6d09aa20ccee9aa6239f51c06b7ef4 100644 --- a/pom.xml +++ b/pom.xml @@ -67,7 +67,6 @@ <lombock.version>1.18.28</lombock.version> <jackson-databind.version>2.15.2</jackson-databind.version> <jackson-annotations.version>2.15.0</jackson-annotations.version> - <lombock.version>1.18.28</lombock.version> <logback.version>1.4.8</logback.version> <slf4j.version>2.0.7</slf4j.version>