Releases: chain/sequence-sdk-java
Releases · chain/sequence-sdk-java
Sequence Java SDK v1.5
For full details on the 1.5 release and how to migrate your code,
visit the Sequence changelog.
- Added
Feeds. More info - The
keysfield onAccountandFlavorhas been deprecated; the new field
iskeyIds, 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
For full details on the 1.4 release and how to migrate your code,
visit the Sequence changelog.
- Added
tagstoAction. - Added
setActionTagsandaddActionTagFieldtoTransaction
action builders. - Added timestamp inequalities in filters.
setReferenceDataandaddReferenceDataFieldonTransactionbuilder actions
have been deprecated. Use the new action tag fields above.setStartTimeandsetEndTimein Transaction filters have been deprecated.
You can now use"timestamp >= $1"in a filter instead.
Sequence Java SDK v1.3
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:
setFilterandaddFilterParameteron 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.
UsesetPageSize(size)on builders to set page size.
UsegetPage(client, cursor)to make subsequent requests.
Sequence Java SDK v1.2.0
For full details on the 1.2 release and how to migrate your code,
visit the Sequence changelog.
Assethas been renamed toFlavor; all references to assets have been
deprecated.- The
codefield on API errors has been deprecated; the new field is
seqCode, containingSEQXXXerror codes. - The
sourceAccountTags,destinationAccountTags, andassetTagson
action objects have been deprecated; All tags on actions are now available
within a newAction.snapshotobject.
Sequence Java SDK v1.1.0
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
aliasfield on key and account objects has been deprecated. - The
ledgerfield when creating an API client has been deprecated; the new
field is namedledgerName. - Added full support for for listing and summing actions.