Skip to content

Releases: pluggyai/pluggy-java

v0.3.1

13 Aug 16:56

Choose a tag to compare

  • Hotfix: add getters & setters to CreditData response object.
  • improve Asserts.assertValidDateString() validation error message.
  • Reenable disabled test getTransactions_byExistingAccountId_withPageFilters_ok() & fix createItem + updateItem test errors by using the newly required 'https://' webhookUrl param.

v0.3.0

11 Aug 23:30
18d4d53

Choose a tag to compare

Changes for this version:

  • Method PluggyClientService::getTransactions() now implements TransactionsSearchRequest param, instead of previous DateFilters. This new param adds support for page and pageSize query params, while keeping support for previously defined from and to params. Usage example:
    TransactionsSearchRequest firstPageParams = new TransactionsSearchRequest()
      .page(1)
      .pageSize(10);

    Response<TransactionsResponse> firstPageResponse = client.service()
      .getTransactions(firstAccountId, firstPageParams)
      .execute();
  • New options for PluggyClientBuilder instance:
    • noAuthInterceptor() option excludes default usage of provided ApiKeyAuthInterceptor instance. You'll need to then provide your own auth interceptor instance using the following:
    • okHttpClientBuilder() public method that provides access to OkHttpClient.Builder, for advanced configurability such as timeouts, interceptors, etc.
      Usage example:
    PluggyClientBuilder clientBuilder = PluggyClient.builder()
      .baseUrl(BASE_URL)
      .clientIdAndSecret(CLIENT_ID, CLIENT_SECRET)
      .noAuthInterceptor();

    Builder okHttpBuilder = clientBuilder.okHttpClientBuilder();
    okHttpBuilder.addInterceptor(new HttpLoggingInterceptor());

    PluggyClient pluggyClient = clientBuilder.build();

v0.2.0

10 Aug 19:54

Choose a tag to compare

Changes for this version:

  • Fix mapping of error in ItemResponse entity.
  • Use maven-source-plugin to include sources in release.
  • Reenable getTransaction_byExistingId_ok() test after fixes in platform API.

v0.2.0-SNAPSHOT

07 Aug 00:50

Choose a tag to compare

v0.2.0-SNAPSHOT Pre-release
Pre-release
config(ci): skip test in publish -> 'deploy' job (they are done in pr…

First release v0.1.0

06 Aug 03:12

Choose a tag to compare

Initial implementation of the Pluggy API SDK.
Contains an implementation for all current endpoints of the API, and all of them have at least one passing integration test.

0.1.0-SNAPSHOT

03 Aug 08:15

Choose a tag to compare

0.1.0-SNAPSHOT Pre-release
Pre-release

first release