Releases: stellar/js-stellar-sdk
Releases · stellar/js-stellar-sdk
v1.0.5
v1.0.4
v1.0.3
v1.0.2
v1.0.1
The newest version of stellar-sdk
contains breaking changes, so we've taken this opportunity to switch to true semver! 🎉
- [1.0.0] Breaking change Stellar Protocol 11 compatibility
- Rename
Operation.manageOffer
toOperation.manageSellOffer
. - Rename
Operation.createPassiveOffer
toOperation.createPassiveSellOffer
. - Add
Operation.manageBuyOffer
.
- Rename
- [1.0.0] Breaking change The
fee
parameter toTransactionBuilder
is now
required. Failing to provide a fee will throw an error. - [1.0.1] The new renamed operations,
Operation.manageOffer
andOperation.createPassiveOffer
, will still work; they'll just issue a deprecation warning to the console, and they'll return the output of the new operation names (so their returnedtype
properties will be "manageSellOffer" and "createPassiveSellOffer" respectively).
v0.15.4
- Add types for LedgerCallBuilder.ledger.
- Add types for Server.operationFeeStats.
- Add types for the HorizonAxiosClient export.
- Move @types/* from devDependencies to dependencies.
- Pass and use a stream response type to CallBuilders if it's different from the
normal call response. - Upgrade stellar-base to a version that includes types, and remove
@types/stellar-base as a result.
v0.15.3
v0.15.2
v0.15.1
- Fix links to docs in comments (Thanks @klakovsky!)
- Move Typescript definitions from DefinitelyTyped into this package, and update a lot of endpoints.
v0.15.0
- Breaking change:
stellar-sdk
no longer ships with anEventSource
polyfill. If you plan to support IE11 / Edge, please use
event-source-polyfill
to setwindow.EventSource
. - Upgrade
stellar-base
to a version that doesn't use thecrypto
library,
fixing a bug with Angular 6 - Add
Server.prototype.fetchTimebounds
, a helper function that helps you set
thetimebounds
property when inittingTransactionBuilder
. It bases the
timebounds on server time rather than local time.