Skip to content

Releases: chain/sequence-sdk-java

Sequence Java SDK v1.5

16 Mar 23:33

Choose a tag to compare

For full details on the 1.5 release and how to migrate your code,
visit the Sequence changelog.

  • Added Feeds. More info
  • The keys field on Account and Flavor has been deprecated; the new field
    is keyIds, containing key ID strings.
  • Added support for camel-case identifiers in filter queries.
    Identifiers in query strings are now consistent with
    identifiers in Java source code.
    Snake-case names in query strings are deprecated.
  • Transaction reference data properties and methods have been deprecated;
    Use action tags instead.

Sequence Java SDK v1.4

09 Mar 00:14

Choose a tag to compare

For full details on the 1.4 release and how to migrate your code,
visit the Sequence changelog.

  • Added tags to Action.
  • Added setActionTags and addActionTagField to Transaction
    action builders.
  • Added timestamp inequalities in filters.
  • setReferenceData and addReferenceDataField on Transaction builder actions
    have been deprecated. Use the new action tag fields above.
  • setStartTime and setEndTime in Transaction filters have been deprecated.
    You can now use "timestamp >= $1" in a filter instead.

Sequence Java SDK v1.3

02 Mar 00:27

Choose a tag to compare

For full details on the 1.3 release and how to migrate your code,
visit the Sequence changelog.

  • Added new interfaces: listing tokens and summing tokens.
    Listing tokens replaces querying contracts, which is now deprecated.
    Summing tokens replaces querying balances, which is now deprecated.
  • Added new interfaces: token tags.
    Set token tags on Issue and Transfer actions.
  • Added new interface: setFilter and addFilterParameter on the transaction
    builder. Filter tokens by tags on Transfer and Retire actions.
  • Added new pagination interfaces: accounts, actions, flavors, keys, tokens,
    transactions. Can be used in an end-user application, such as infinite scroll.
    Use setPageSize(size) on builders to set page size.
    Use getPage(client, cursor) to make subsequent requests.

Sequence Java SDK v1.2.0

17 Feb 01:05

Choose a tag to compare

For full details on the 1.2 release and how to migrate your code,
visit the Sequence changelog.

  • Asset has been renamed to Flavor; all references to assets have been
    deprecated.
  • The code field on API errors has been deprecated; the new field is
    seqCode, containing SEQXXX error codes.
  • The sourceAccountTags, destinationAccountTags, and assetTags on
    action objects have been deprecated; All tags on actions are now available
    within a new Action.snapshot object.

Sequence Java SDK v1.1.0

17 Feb 01:04

Choose a tag to compare

For full details on the 1.1 release and how to migrate your code,
visit the Sequence changelog.

  • Added support for setting a user-provided id on key and account objects.
  • The alias field on key and account objects has been deprecated.
  • The ledger field when creating an API client has been deprecated; the new
    field is named ledgerName.
  • Added full support for for listing and summing actions.