Skip to content

Commit 06bc4f7

Browse files
authored
docs: release v0.14.0 (#1488)
1 parent c6ab90a commit 06bc4f7

File tree

1 file changed

+68
-3
lines changed

1 file changed

+68
-3
lines changed

CHANGELOG.md

Lines changed: 68 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,68 @@
1+
## 2023-01-16 v0.14.0
2+
3+
Release highlights:
4+
- An important fix for the Waku message archive returning inconsistent responses to history queries.
5+
- Support for [AutoNAT](https://docs.libp2p.io/concepts/nat/autonat/) and [libp2p Circuit Relay](https://docs.libp2p.io/concepts/nat/circuit-relay/) that allows, among other things, for [NAT hole punching](https://docs.libp2p.io/concepts/nat/hole-punching/).
6+
- Support for structured logging in JSON format.
7+
- A fix for an underlying file descriptor leak that affected websocket connections.
8+
9+
### Features
10+
11+
- Support for [AutoNAT](https://docs.libp2p.io/concepts/nat/autonat/)
12+
- Support for [libp2p Circuit Relay](https://docs.libp2p.io/concepts/nat/circuit-relay/) (server only)
13+
- New Waku Archive implementation. This allows easy addition of drivers for different technologies to store historical messages.
14+
- Support for structured logging and specifying log format.
15+
- Node now keeps track of its external reachability.
16+
17+
### Changes
18+
19+
- Zerokit RLN library now statically linked.
20+
- Use extended key generation in Zerokit API to comply with [32/RLN](https://rfc.vac.dev/spec/32/).
21+
- Re-enable root validation in [`17/WAKU-RLN-RELAY`](https://rfc.vac.dev/spec/17/) implementation.
22+
- [Network monitoring tool](https://github.com/status-im/nwaku/tree/2336522d7f478337237a5a4ec8c5702fb4babc7d/tools#networkmonitor) now supports DNS discovery.
23+
- Added [dashboard](https://github.com/waku-org/nwaku/blob/3e0e1cb2398297fca761aa74f52d32fa837d556c/metrics/waku-network-monitor-dashboard.json) for network monitoring.
24+
- Continued refactoring of several protocol implementations to improve maintainability and readability.
25+
- Removed swap integration from store protocol.
26+
- Peerstore now consolidated with libp2p peerstore.
27+
- Peerstore now also tracks peer direction.
28+
- SIGSEGV signals are now handled and logged properly.
29+
- Waku v2 no longer imports libraries from Waku v1.
30+
- Improved build and CI processes:
31+
- Added support for an `EXPERIMENTAL` compiler flag.
32+
- Simplified project Makefile.
33+
- Split Dockerfile into production and experimental stages.
34+
- Removed obsolete simulation libraries from build.
35+
- Improved parallellisation (and therefore processing time) when dialing several peers simultaneously.
36+
- Waku Archive now responds with error to historical queries containing more than 10 content topics.
37+
38+
### Fixes
39+
40+
- Fixed support for optional fields in several protocol rpc codecs. [#1393](https://github.com/waku-org/nwaku/pull/1393) [#1395](https://github.com/waku-org/nwaku/pull/1395) [#1396](https://github.com/waku-org/nwaku/pull/1396)
41+
- Fixed clients with `--store=false` not installing Store Client JSON-RPC API handlers. [#1382](https://github.com/waku-org/nwaku/pull/1382)
42+
- Fixed SQLite driver returning inconsistent responses to store queries. [#1415](https://github.com/waku-org/nwaku/pull/1415)
43+
- Fixed peer exchange discv5 loop starting before discv5 has started. [#1407](https://github.com/waku-org/nwaku/pull/1407)
44+
- Fixed wakubridge test timing. [#1429](https://github.com/waku-org/nwaku/pull/1429)
45+
- Fixed bug in Noise module types equating `T_ss` incorrectly to `"se"` and not `"ss"`. [#1432](https://github.com/waku-org/nwaku/pull/1432)
46+
- Fixed Ctrl-C quitting resulting in unreleased resources and exit failures. [#1416](https://github.com/waku-org/nwaku/pull/1416)
47+
- Fixed CI workflows not cloning repo on startup. [#1454](https://github.com/waku-org/nwaku/pull/1454) [#1455](https://github.com/waku-org/nwaku/pull/1455)
48+
- Fixed Admin API peer connection not returning error response if peer can't be connected. [#1476](https://github.com/waku-org/nwaku/pull/1476)
49+
- Fixed underlying file descriptor leak. [#1483](https://github.com/waku-org/nwaku/pull/1483)
50+
51+
### Docs
52+
53+
- Added [instructions](https://github.com/waku-org/nwaku/blob/3e0e1cb2398297fca761aa74f52d32fa837d556c/docs/operators/quickstart.md) for running nwaku with docker compose.
54+
55+
This release supports the following [libp2p protocols](https://docs.libp2p.io/concepts/protocols/):
56+
| Protocol | Spec status | Protocol id |
57+
| ---: | :---: | :--- |
58+
| [`11/WAKU2-RELAY`](https://rfc.vac.dev/spec/11/) | `stable` | `/vac/waku/relay/2.0.0` |
59+
| [`12/WAKU2-FILTER`](https://rfc.vac.dev/spec/12/) | `draft` | `/vac/waku/filter/2.0.0-beta1` |
60+
| [`13/WAKU2-STORE`](https://rfc.vac.dev/spec/13/) | `draft` | `/vac/waku/store/2.0.0-beta4` |
61+
| [`18/WAKU2-SWAP`](https://rfc.vac.dev/spec/18/) | `draft` | `/vac/waku/swap/2.0.0-beta1` |
62+
| [`19/WAKU2-LIGHTPUSH`](https://rfc.vac.dev/spec/19/) | `draft` | `/vac/waku/lightpush/2.0.0-beta1` |
63+
64+
The Waku v1 implementation is stable but not under active development.
65+
166
## 2022-11-15 v0.13.0
267

368
Release highlights:
@@ -122,7 +187,7 @@ The full list of changes is below.
122187

123188
### Docs
124189

125-
- Improved [RLN testnet tutorial](https://github.com/status-im/nwaku/blob/14abdef79677ddc828ff396ece321e05cedfca17/docs/tutorial/onchain-rln-relay-chat2.md)
190+
- Improved [RLN testnet tutorial](https://github.com/status-im/nwaku/blob/14abdef79677ddc828ff396ece321e05cedfca17/docs/tutorial/onchain-rln-relay-chat2.md)
126191
- Added [tutorial](https://github.com/status-im/nwaku/blob/14abdef79677ddc828ff396ece321e05cedfca17/docs/operators/droplet-quickstart.md) on running nwaku from a DigitalOcean droplet.
127192
- Added [guide](https://github.com/status-im/nwaku/blob/14abdef79677ddc828ff396ece321e05cedfca17/docs/operators/how-to/monitor.md) on how to monitor nwaku using Prometheus and Grafana.
128193

@@ -159,7 +224,7 @@ The full list of changes is below.
159224
- Significantly improved the SQLite-only historical message `store` query performance.
160225
- Refactored several protocol implementations to improve maintainability and readability.
161226
- Major code reorganization for the [`13/WAKU2-STORE`](https://rfc.vac.dev/spec/13/) implementation to improve maintainability. This will also make the `store` extensible to support multiple implementations.
162-
- Disabled compiler log colors when running in a CI environment.
227+
- Disabled compiler log colors when running in a CI environment.
163228
- Refactored [`35/WAKU2-NOISE`](https://rfc.vac.dev/spec/35/) implementation into smaller submodules.
164229
- [`11/WAKU2-RELAY`](https://rfc.vac.dev/spec/11/) implementation can now optionally be compiled with [Zerokit RLN](https://github.com/vacp2p/zerokit/tree/64f508363946b15ac6c52f8b59d8a739a33313ec/rln). Previously only [Kilic's RLN](https://github.com/kilic/rln/tree/7ac74183f8b69b399e3bc96c1ae8ab61c026dc43) was supported.
165230

@@ -307,7 +372,7 @@ The full list of changes is below.
307372

308373
### Features
309374

310-
- [`17/WAKU-RLN-RELAY`](https://rfc.vac.dev/spec/17/) implementation now supports spam-protection for a specific combination of `pubsubTopic` and `contentTopic` (available under the `rln` compiler flag).
375+
- [`17/WAKU-RLN-RELAY`](https://rfc.vac.dev/spec/17/) implementation now supports spam-protection for a specific combination of `pubsubTopic` and `contentTopic` (available under the `rln` compiler flag).
311376
- [`17/WAKU-RLN-RELAY`](https://rfc.vac.dev/spec/17/) integrated into chat2 `toy-chat` (available under the `rln` compiler flag)
312377
- Added support for resolving dns-based `multiaddrs`
313378
- A Waku v2 node can now be configured with a domain name and `dns4` `multiaddr`

0 commit comments

Comments
 (0)