Skip to content

3.0.0

Compare
Choose a tag to compare
@harry-peirse harry-peirse released this 27 Sep 22:24
· 55 commits to dev since this release

Available in Maven Central

What's new in this version

  • Added a dependency on apache commons http client which now takes care of HTTP calls instead of the vanilla java HttpUrlConnection. This gives us support for PATCH, and you can also optionally configure how this client works (in case you want connection pooling or timouts to be configured) via a builder in the CheckoutConfiguration class. This superseeds the original timeout variable that was previously available.
  • Support for getting and updating instruments

Add to your Gradle project with:

dependencies {
    implementation 'com.checkout:checkout-sdk-java:3.0.0'
}

Or add to your Maven project with:

<dependency>
    <groupId>com.checkout</groupId>
    <artifactId>checkout-sdk-java</artifactId>
    <version>3.0.0</version>
</dependency>