Skip to content

Releases: stellar/js-stellar-sdk

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.

v0.7.7

06 Dec 16:34
Compare
Choose a tag to compare
  • Increased SUBMIT_TRANSACTION_TIMEOUT

v0.7.6

21 Nov 13:18
Compare
Choose a tag to compare
  • Increased allowed stellar.toml file size.

v0.7.5

16 Nov 17:43
Compare
Choose a tag to compare
  • Fix jsdoc.

v0.7.4

07 Nov 15:34
Compare
Choose a tag to compare
  • Limit length of federation server and stellar.toml responses.
  • Throw error if memo is not of type string in federation response.
  • Server now works with server URLs with a path.

v0.7.3

08 Mar 12:27
Compare
Choose a tag to compare
  • Upgrade stellar-base.