Skip to content
This repository has been archived by the owner on Sep 27, 2019. It is now read-only.

Releases: trufflesuite/drizzle-legacy

v1.1.4

22 Apr 22:19
88ec8d8
Compare
Choose a tag to compare

Updates:

  • Added sensible default options. See the src/defaultOptions.js file.
  • Replaced block polling via setInterval with eth-block-tracker-es5 for more reliable block data when websockets are unavailable.

v1.1.3

20 Apr 21:54
6eb7a9b
Compare
Choose a tag to compare

Fixes:

  • No longer have to include an events key in the options object.

v1.1.2

20 Apr 21:45
6eb7a9b
Compare
Choose a tag to compare

Second patch release (that was fast!); fixes:

  • No longer have to include a polls key in the options object. (Fixes #32)

v1.1.1

20 Apr 21:07
6eb7a9b
Compare
Choose a tag to compare

First patch release! Here's what's fixed:

  • You now choose whether Drizzle gets minified. (#26; thanks to @balasan)
  • Custom block polling intervals now work. (#27; thanks to @balasan)
  • No more "Erorrs" only "Errors". (#37; thanks to @KilledByNLP)

v1.1.0 - Real World Readiness

27 Mar 07:59
Compare
Choose a tag to compare

As the name implies, this release contains features that allow Drizzle to function in more real-world scenarios including MetaMask support and using your existing redux store! 🌎🌍🌏

New Features

  • BYOS (Bring Your Own [redux] Store)
    • Can accommodate mono-store and multi-store setups in addition to a Drizzle-created store. See the documentation for implementation details.
  • Tracks account balances.
  • Account, account balance and block polling.
    • Drizzle will now use block polling as a fallback for providers that don't support subscriptions.
    • Custom intervals (see options below).
  • New options
    • polls (object): Contains key/value pairs denoting what is being polled and the interval (in ms). Possible polls are accounts and blocks. Accounts will poll for addresses and balances, blocks for new blocks. Blocks default to 3000. For example: polls: { accounts: 1500 }.
  • Distribution minified.

Drizzle v1.0.1 - Comet ☄️

24 Feb 18:22
Compare
Choose a tag to compare

You may have seen this repository whizzing by as you gazed at our GitHub. Well, it's finally ready for study! Introducing Drizzle: A collection of front-end libraries that make writing dapp front-ends easier and more predictable.

Why version 1.0.1? Because we want to keep the GitHub releases in sync with the NPM package versions.

What's inside? Glad you asked. Rather than repeat ourselves, check out the detailed readme or our documentation. For future releases, these notes will document fixes, additions, subtractions and changes.