Releases: bigchaindb/js-bigchaindb-driver
v3.1.1
Minor fixes for .npmignore
v3.1.0
Added support for metadata search
0.3.0
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
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
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
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>