Skip to content

Releases: stellar/js-stellar-sdk

v0.10.3

16 Aug 19:16
Compare
Choose a tag to compare
  • Update stellar-base and xdr files.

v0.10.2

08 Aug 18:50
Compare
Choose a tag to compare
  • Update stellar-base (and js-xdr).

v0.10.1

01 Aug 08:52
Compare
Choose a tag to compare
  • Update stellar-base to 0.8.1.

v0.10.0

31 Jul 18:03
Compare
Choose a tag to compare
  • Update stellar-base to 0.8.0 with bump_sequence support.

v0.9.2

19 Jul 13:45
Compare
Choose a tag to compare
  • Removed .babelrc file from the NPM package.

v0.9.1

28 Jun 11:42
Compare
Choose a tag to compare

Breaking changes

  • stellar-sdk is now using native Promise instead of bluebird. The catch function is different. Instead of:

    .catch(StellarSdk.NotFoundError, function (err) { /* ... */ })

    please use the following snippet:

    .catch(function (err) {
      if (err instanceof StellarSdk.NotFoundError) { /* ... */ }
    })
  • We no longer support IE 11, Firefox < 42, Chrome < 49.

Changes

  • Fixed _ is undefined bug.
  • Minified browser build is around 130 KB smaller! 🎊

v0.9.0

28 Jun 11:26
Compare
Choose a tag to compare

Broken build.

v0.8.2

05 Jun 15:45
Compare
Choose a tag to compare
  • Added timeout option to StellarTomlResolver and FederationServer calls (#158).
  • Fixed adding random value to URLs multiple times (#169).
  • Fixed jsdoc for classes that extend CallBuilder.
  • Updated dependencies.
  • Added yarn.lock file to repository.

v0.8.1

16 May 19:56
e79bab8
Compare
Choose a tag to compare
  • Add an allowed trade aggregation resolution of one minute
  • Various bug fixes
  • Improved documentation

0.8.0

21 Dec 22:34
42f70d7
Compare
Choose a tag to compare
  • Modify /trades endpoint to reflect changes in horizon.
  • Add /trade_aggregations support.
  • Add /assets support.