Skip to content

Releases: earthstar-project/earthstar

v10.2.2 - Dependency fixes

31 Aug 09:09
6a2b3d4
Compare
Choose a tag to compare

This is a patch release which fixes two dependencies that began to fail: better-sqlite3 and fast-stable-json-stringify. The former was breaking NPM installs, the latter was breaking Deno installs. Now both are fixed.

v10.2.1 Fixed invitation redemption in Chrome and Firefox

15 Jun 14:23
Compare
Choose a tag to compare

This release fixes a bug where invitation URLS could not be redeemed in Chrome or Firefox (thanks @tripledoublev!)

v10.2.0: LAN peer discovery and sync

16 May 11:25
Compare
Choose a tag to compare

This is a feature release adding APIs to automatically discover and sync with peers on the local network. Automatically find and sync with friends at a café, or with your own devices at home.

// Start a new discovery service, and advertise ourselves as "My Computer".
const discoveryLan = new DiscoveryLAN({ name: "My Computer" });

// Wait for new discovery service events...
for await (const discoveryEvent of peer.discover(discoveryLan)) {
  if (discoveryEvent.kind === "PEER DISCOVERED") {
    // We'll sync with everyone we find!
    discoveryEvent.sync();
  }
}

Discovery is powered by dns_sd, and sync itself is powered by a new fully encrypted TCP transport driver.

  • (Feature) Added Peer.discover, a new method for automatically discovering other peers. How it does that it left to the DiscoveryService you provide it.
  • (Feature) Added DiscoveryLAN, a discovery service for finding and advertising yourself to other peers on the local network. Works for both Node and Deno, requires --unstable on Deno.

v10.1.0: Invitations

14 Apr 12:37
Compare
Choose a tag to compare

This is a feature release which adds support for invitation URLs.

Copying and pasting many addresses, secrets, and URLs is tedious. Copying and pasting a single address which your app already knows what to do with is much better.

They look like this:

earthstar://+shareaddress.xxx/?invite&server=https://server.com&server=https://server2.com&secret=bxxx&v=2
  • (Feature) Added SharedSettings#redeemInvitationURL, which adds the share, secret, and servers from an Earthstar invitation URL.
  • (Feature) Added createInvitationURL and parseInvitationURL utilities for creating and parsing Earthstar invitation URLs.
  • (Fix) parseShareAddress now validates share addresses more strictly so as to ensure their suffix is a pubkey.
  • (Fix) Deprecate generateShareAddress
  • (Fix) Fixed some issues ExtensionServerSettings when ephemeral and
    non-ephemeral settings for a hosted share existed at the same time.
  • (Chore) Update range_reconcile to 1.0.2, which makes sync slightly more
    efficient.

v10.0.2 - Updated Deno SqliteFFI driver, animal story

13 Feb 13:28
Compare
Choose a tag to compare

Fixes

  • DocDriverSqliteFfi has been updated to use https://deno.land/x/sqlite3@0.7.3 which has compatibility with Deno 1.30.0 and up. This driver uses unstable APIs and will not work with previous versions of Deno.

Docs

  • Updated the example 'animal story' script to showcase Earthstar's ephemeral document features. Thank you @johanbove!
  • Updated the README to make it clear that certain APIs like ReplicaDriverWeb are only available through different namespaces in the NPM distribution.

Chores

v10.0.1: Syncing fixes and improved errors

18 Jan 11:03
Compare
Choose a tag to compare

This is a patch release focused on resolving errors encountered during syncing, and making other issues encountered during syncing easier to diagnose.

Thank you to everyone who helped me put together the clues to find these bugs!

  • (Fix) - Peers will now only initiate a single transfer for many documents with the same attachment, fixing a case which could cause syncing to hang indefinitely.
  • (Fix) - Peers will now attempt to download attachments for documents which they already possess prior to syncing but are missing attachments for.
  • (Improvement) - Syncer will cancel itself if it does not receive anything from the other peer within a ten second window.
  • (Improvement) - Syncer will cancel an attachment transfer if it doesn't receive anything from the other side within a ten second window.
  • (Improvement) - Warn in the console when a replica could not ingest an attachment during sync.
  • (Improvement) - Better error messages for web syncing failures (e.g. 404, wrong endpoint).

v10: Attachments, Read-only shares, and Efficient Sync

02 Jan 12:32
3b1623c
Compare
Choose a tag to compare

v10.0.0 - Squirrel

🐿 Cute, fast, and likes to store things.

This is a major release which introduces attachments, share keypairs, efficient
sync
, and much much more. It is the biggest release of Earthstar ever.

As such, this version breaks compatibility with previous versions of Earthstar.

Here are the headline features:

  • Attachments. When a new document is written to a Replica you can attach
    arbitary binary data to it. This can be used for sharing large images, music,
    video, anything. There is no size limit.
  • Shares with granular read / write access. Share addresses are now the
    public key of a share keypair. The public key grants discovery and read
    access, the secret key grants write access to the replica.
  • Efficient sync. Syncing has been completely overhauled to use a new
    efficient reconclition mechanism powered by
    range-reconcile and
    push-pull-push-multicast trees.

The server APIs have also been moved into this repo.

In addition to new features, many APIs have been tweaked or changed entirely.
Please see the API documentation and the README to see what these new API
changes are like.

Server

  • Moved existing server APIs into the core module, available as Server.

Peer

  • Added Peer.onReplicasChange
  • Added Peer.onSyncersChange

Replica

  • Significantly improved the performance of querying documents.
  • Replicas now can create documents with attachments with Replica.set
  • Added Replica.ingestAttachment
  • Added Replica.getAttachment
  • Added Replica.addAttachments
  • Added Replica.wipeDocAtPath
  • Added Replica.getEventStream
  • Added Replica.getQueryStream
  • Added Replica.onEvent
  • Added MultiformatReplica, a Replica which is able to read, write, and sync
    documents of different formats.
  • Added FormatEs5, which supports share keypairs and attachments
  • Added ReplicaDriverWeb
  • Added ReplicaDriverFs
  • Added RelpicaDriverMemory
  • Added DocDriverSqliteFFI, which uses an FFI implemetation of Sqlite.
    Requires the --unstable flag on Deno.
  • Updated syncReplicaAndFsDir to use attachments for large files.
  • ReplicaCache now has attachment methods

Syncing

  • Added PartnerLocal, for syncing with local peers.

  • Added PartnerWebServer, for syncing with servers.

  • Added PartnerWebClient, for syncing with web clients.

  • Removed earthstar_streaming_rpc as a dependency.

Queries

  • Removed the contentLength options on QueryFilter.

  • Removed QueryFollower. Use Replica.getQueryStream instead.

  • queryByTemplateAsync and queryByGlobAsync have had the redundant async
    taken out of their name.

Cryptography

  • Added Crypto.generateShareKeypair
  • Added CryptoDriverSodium which uses a WASM version of libsodium for very
    fast operations. This is now the default driver on Deno.
  • Updated CryptoDriverNoble to use a new, faster, audited version.

Other

  • Added a new SharedSettings class for easily saving and retrieving an author
    keypair, shares and secrets, and favourite servers.
  • Added parseAuthorOrShareAddress
  • Added a new minified web bundle, available from
    https://cdn.earthstar-project.org/js/earthstar.web.v10.0.0.js
  • Added ARCHITECTURE.md
  • Added CONTRIBUTING.md
  • Added CODE_OF_CONDUCT.md

v8.2.4

13 Mar 14:11
Compare
Choose a tag to compare

I've made a number of changes which specifically target Earthstar's performance in the context of dynamic UIs e.g. React apps.

Changes since 8.10:

New NPM API

  • Breaknig: moved modules with environmental assupmtions (e.g. ReplicaDriverSqlite, ReplicaDriverLocalStorage) into earthstar/browser and earthstar/node import subpaths.

Replica

  • Share addresses are now validated when a Replica is being instantiated.

Syncing

  • SyncCoordinator now only has one active pull from another peer at a time
  • The maxLocalIndex of other peers is now better preserved across async calls, preventing refetches

ReplicaDriverIndexedDB

  • ReplicaDriverIndexedDB now waits until the underlying DB is ready when querying docs
  • Fixed an issue where the driver's maxLocalIndex was not being correctly instantiated

ReplicaDriverLocalStorage

  • Fixed an issue where the driver's maxLocalIndex was not being correctly instantiated

ReplicaCache

  • Added a close method to ReplicaCache which closes all the QueryFollowers during its usage
  • Added a onCacheUpdatedWrapper arg to ReplicaCache's constructor, allowing all callbacks to be wrapped within a function call.
  • ReplicaCache now only fires cache updates when the results of a query do not match with the cache
  • ReplicaCache now reuses QueryFollowers more efficiently

v8.1.0

03 Mar 12:40
2c2a919
Compare
Choose a tag to compare

Previously it was possible to create a Replica with an invalid share address.

const replica = new Replica("PEANUTS.123", FormatValidatorEs4, driver);
// No complaints until you try to set or sync docs.

Now it will throw an error.

v8.0.0

03 Mar 12:37
Compare
Choose a tag to compare

This is a breaking change for users of the NPM package.

Previously all exports were available via earthstar:

import { Replica, ReplicaDriverIndexedDB } from "earthstar"; 

Platform-specific exports have been moved into their own subpaths:

import { Replica } from "earthstar";
import { ReplicaDriverIndexedDB } from "earthstar/browser";

There are also Node specific exports available at earthstar/node.

This was done for better compatibility with bundlers unable to treeshake unused exports, which would cause errors like fs not being available in the browser.