Skip to content
This repository has been archived by the owner on Feb 16, 2022. It is now read-only.

Releases: earthstar-project/stone-soup

v8.0.0

21 Jan 10:32
f37750d
Compare
Choose a tag to compare

This release makes the following changes:

Breaking

  • Crypto's methods are now all asynchronous

Additions

  • Added a Deno distribution #136
  • Add glob / template querying #138
  • Added noble/ed25519 crypto driver, made it the default #111
  • Added StorageDriverIndexedDB #108

Licensing

  • Changed licence from AGPL-4.0 to LPGL-3.0

New Contributors

Full Changelog: v7.0.2...v8.0.0

QueryFollower

11 Oct 14:35
Compare
Choose a tag to compare

6.2.0: QueryFollower is now a separate class

You can create a QueryFollower object. Give it a Storage and a Query.

Once you do that you can subscribe to events from it. It will start at the first document (in your peer's local order) and walk forward, calling the callback on each one that matches the query. When it's caught up it will switch to Live Mode where it calls your callback as new documents are created (or arrive from other peers).

This used to be part of StorageDriver but now it's a separate class.

Docs are here: https://github.com/earthstar-project/stone-soup/blob/main/src/query-follower/query-follower-types.ts