Skip to content

Releases: stellar/js-stellar-sdk

v1.0.5

27 Jun 19:00
cd14ad4
Compare
Choose a tag to compare
  • Make CallCollectionFunction return a CollectionPage (thanks @drdgvhbh!)
  • Update Horizon.AccountSigner[] types (thanks @pselden!)

v1.0.4

18 Jun 14:43
39e8a1c
Compare
Choose a tag to compare
  • Automatically tag alpha / beta releases as "next" in NPM.

v1.0.3

13 Jun 21:13
85d8078
Compare
Choose a tag to compare
  • Upgrade axios to 0.19.0 to close a security vulnerability.
  • Some type fixes.

v1.0.2

15 May 17:09
fb12e55
Compare
Choose a tag to compare
  • Upgrade stellar-base to v1.0.2 to fix a bug with the browser bundle.

v1.0.1

09 May 15:08
1a170f9
Compare
Choose a tag to compare

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 to Operation.manageSellOffer.
    • Rename Operation.createPassiveOffer to Operation.createPassiveSellOffer.
    • Add Operation.manageBuyOffer.
  • [1.0.0] Breaking change The fee parameter to TransactionBuilder is now
    required. Failing to provide a fee will throw an error.
  • [1.0.1] The new renamed operations, Operation.manageOffer and Operation.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 returned type properties will be "manageSellOffer" and "createPassiveSellOffer" respectively).

v0.15.4

30 Apr 19:05
afc080f
Compare
Choose a tag to compare
  • 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

19 Apr 18:38
69fda93
Compare
Choose a tag to compare

Use an environment variable in Travis instead of the encrypted API key for NPM auto-deploys.

v0.15.2

19 Apr 17:49
47daf92
Compare
Choose a tag to compare
  • Update npm publish keys.
  • Specify the changes made to the type definitions recently.
  • Make Server.transactions / Server.payments return CollectionPages again (fixes #262).

v0.15.1

18 Apr 16:03
e30c6f0
Compare
Choose a tag to compare
  • 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

19 Mar 17:07
11d76f1
Compare
Choose a tag to compare
  • Breaking change: stellar-sdk no longer ships with an EventSource
    polyfill. If you plan to support IE11 / Edge, please use
    event-source-polyfill
    to set window.EventSource.
  • Upgrade stellar-base to a version that doesn't use the crypto library,
    fixing a bug with Angular 6
  • Add Server.prototype.fetchTimebounds, a helper function that helps you set
    the timebounds property when initting TransactionBuilder. It bases the
    timebounds on server time rather than local time.