Skip to content

Releases: bigchaindb/js-bigchaindb-driver

v3.1.1

27 Nov 16:17
Compare
Choose a tag to compare

Minor fixes for .npmignore

v3.1.0

27 Nov 14:59
Compare
Choose a tag to compare

Added support for metadata search

0.3.0

06 Jul 08:00
a9fb073
Compare
Choose a tag to compare

We've made js-bigchaindb-driver compatible with the latest BigchainDB release 1.0.
We had to bump from 0.2 to 0.3 because of a breaking change in the schema of the transaction model.

Apart from that, everything that was valid for 0.2 it's valid for 0.3.

If you are migrating from 0.1 to 0.3, make sure to read the upgrade guide.

0.2.0

26 Jun 16:35
Compare
Choose a tag to compare

We've made js-bigchaindb-driver compatible with the latest BigchainDB release v1.0.0rc1.

Changes include:

  • Complying to the BigchainDB HTTP API
  • Complying to breaking changes of BigchainDB's data model
  • Added 75% test coverage of unit tests and integration tests
  • Various bug fixes

Overall, this release is incompatible with any previous releases. We've included an upgrade guide for your convenience.

Fix browser bundling with webpack

23 Jun 08:23
Compare
Choose a tag to compare

While releasing various bundled versions for browsers, we forgot to update the browser path for using those bundles in conjunction with npm. This version fixes bundling with npm for browsers.

0.1.1

22 Jun 09:02
Compare
Choose a tag to compare

We've added browser bundling support.

You can now import the bigchaindb-driver from within an HTML file like this:

<script src="https://unpkg.com/bigchaindb-driver@0.1.1/dist/browser/bigchaindb-driver.window.min.js"></script>

<script>
  // And start constructing transactions.
  // The BigchainDB library and all its classes are available from
  // window.BigchainDB
  const alice = new BigchainDB.Ed25519Keypair()
  // and so on...
</script>