From f6f6057c492e706a2d136e5ad36f97439a53be7a Mon Sep 17 00:00:00 2001 From: Hanno Cornelius <68783915+jm-clius@users.noreply.github.com> Date: Wed, 6 Jan 2021 08:49:28 +0200 Subject: [PATCH] Release v0.2. (#336) --- CHANGELOG.md | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0722d6d18..b1df01a28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,24 @@ # Changelog -## Next version +## 2021-01-05 v0.2 -- Calls to `publish` a message on `wakunode2` now `await` instead of `discard` dispatched [`WakuRelay`](https://github.com/vacp2p/specs/blob/master/specs/waku/v2/waku-relay.md) procedures -- Added JSON-RPC Admin API to retrieve information about peers registered on the `wakunode2` -- `StrictNoSign` enabled. -- Added JSON-RPC Private API to enable using symmetric or asymmetric cryptography to encrypt/decrypt message payloads +This release contains the following changes: + +- Calls to `publish` a message on `wakunode2` now `await` instead of `discard` dispatched [`WakuRelay`](https://github.com/vacp2p/specs/blob/master/specs/waku/v2/waku-relay.md) procedures. +- [`StrictNoSign`](https://github.com/libp2p/specs/tree/master/pubsub#message-signing) enabled. +- Add JSON-RPC API for external access to `wakunode2` functionality: + - Admin API retrieves information about peers registered on the `wakunode2`. + - Debug API exposes debug information about a `wakunode2`. + - Filter API saves bandwidth by allowing light nodes to filter for specific content. + - Private API enables symmetric or asymmetric cryptography to encrypt/decrypt message payloads. + - Relay API allows basic pub/sub functionality. + - Store API retrieves historical messages. +- Add tutorial on how to use JSON-RPC API. - Refactor: Move `waku_filter` protocol into its own module. +The Waku v2 implementation, and [most protocols it consist of](https://specs.vac.dev/specs/waku/), +are still in a draft/beta state. The Waku v1 implementation is stable but not under active development. + ## 2020-11-30 v0.1 Initial beta release.