Skip to content

Releases: lightsail-network/java-stellar-sdk

0.7.0

16 May 18:21
55e480c
Compare
Choose a tag to compare

The following methods are deprecated and will be removed in 0.8.0. Please switch to new methods and classes.

Deprecated New method/class
org.stellar.sdk.Server#operationFeeStats org.stellar.sdk.Server#feeStats
org.stellar.sdk.requests.OperationFeeStatsRequestBuilder org.stellar.sdk.requests.FeeStatsRequestBuilder
org.stellar.sdk.responses.OperationFeeStatsResponse org.stellar.sdk.responses.FeeStatsResponse
org.stellar.sdk.responses.operations.CreatePassiveOfferOperationResponse org.stellar.sdk.responses.operations.CreatePassiveSellOfferOperationResponse
org.stellar.sdk.responses.operations.ManageOfferOperationResponse org.stellar.sdk.responses.operations.ManageOfferSellOperationResponse
org.stellar.sdk.CreatePassiveOfferOperation org.stellar.sdk.CreatePassiveSellOfferOperation
org.stellar.sdk.ManageOfferOperation org.stellar.sdk.ManageSellOfferOperation

Changes

  • Stellar Protocol 11 compatibility (#199).
  • Compatibility with Horizon API updates (#205).
  • Add Support for InflationOperation in Operation.fromXdr (#194).
  • Fixed exception thrown from ManageOfferOperation.fromXDR for some offers (#188).
  • Send Horizon client fingerprint (#190).
  • Server now implements Closeable interface (#182).
  • Fixed /order_book endpoint streaming.

0.6.0

26 Feb 14:04
Compare
Choose a tag to compare
  • Horizon 0.17.0 features (#180)
  • Enable setting custom base fee (#177)

0.5.0

31 Jan 18:40
Compare
Choose a tag to compare
  • Horizon 0.16.0 features (#172)
  • Allow no signatures in Transaction.toEnvelopeXdr (#164)
  • Fix dependencies shadowing (#173)

0.4.1

19 Dec 21:48
Compare
Choose a tag to compare
  • Fixed streaming issues.

0.4.0

17 Dec 13:57
Compare
Choose a tag to compare
  • Breaking change Transaction.Builder requires setTimeout method to be called.
  • Added Horizon 0.15.0 features.
  • Improved streaming code and dependencies (thanks @jillesvangurp!).
  • SEP-0005 derivation (thanks @westonal!).

0.3.3

24 Sep 15:25
Compare
Choose a tag to compare
  • Added missing fields: protocol_version, header_xdr to LedgerResponse #134.
  • Added missing data object to AccountResponse.
  • Fixed NumberFormatException in MemoId #129.
  • okhttp client now reconnects on connection failures, ex. timeouts.

0.3.2

16 Aug 07:31
Compare
Choose a tag to compare
  • Non ed25519 keys are now supported in all responses (fixes #126):
    • SetOptionsOperationResponse.getSigner is deprecated. Please use SetOptionsOperationResponse.getSignerKey.
    • AccountResponse.Signer.getAccountId is deprecated. Please use AccountResponse.Signer.getKey.
  • Fixed PathPaymentOperationResponse.getSourceAsset method (#125).

0.3.1

10 Aug 08:49
e18c276
Compare
Choose a tag to compare
  • Fixed condition check in TimeBounds when maxTime is equal 0.

0.3.0

03 Aug 17:47
Compare
Choose a tag to compare
  • Protocol V10 updates:
    • BumpSequence operation support (CAP-0001),
    • Asset liabilities (CAP-0003),
    • New Horizon fields and effects.
    • Updated XDR classes.
  • Transaction now has methods to create it from previously built TransactionEnvelope.
  • Improved Server.submitTransaction method, now throws exception for timeouts.

0.2.2

31 Jul 16:22
Compare
Choose a tag to compare
  • Fixed MemoReturnHash#toXdr() method.
  • Patch for Horizon Timeout responses (SubmitTransactionResponse.getEnvelopeXdr() and SubmitTransactionResponse.getResultXdr()).