Releases: lightsail-network/java-stellar-sdk
Releases · lightsail-network/java-stellar-sdk
0.7.0
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
inOperation.fromXdr
(#194). - Fixed exception thrown from
ManageOfferOperation.fromXDR
for some offers (#188). - Send Horizon client fingerprint (#190).
Server
now implementsCloseable
interface (#182).- Fixed
/order_book
endpoint streaming.
0.6.0
0.5.0
0.4.1
0.4.0
- Breaking change
Transaction.Builder
requiressetTimeout
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
0.3.2
- Non
ed25519
keys are now supported in all responses (fixes #126):SetOptionsOperationResponse.getSigner
is deprecated. Please useSetOptionsOperationResponse.getSignerKey
.AccountResponse.Signer.getAccountId
is deprecated. Please useAccountResponse.Signer.getKey
.
- Fixed
PathPaymentOperationResponse.getSourceAsset
method (#125).
0.3.1
0.3.0
- Protocol V10 updates:
Transaction
now has methods to create it from previously builtTransactionEnvelope
.- Improved
Server.submitTransaction
method, now throws exception for timeouts.