@@ -7,8 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 0.27.0] - 2022-09-13
11+
12+ ### Added
13+
14+ - ` createLightNode ` to create a Waku node for resource restricted environment with Light Push, Filter and Relay.
15+ - ` createPrivacyNode ` to create a Waku node for privacy preserving usage with Relay only.
16+ - ` createFullNode ` to create a Waku node for with all protocols, for ** testing purposes only** .
17+
1018### Changed
1119
20+ - ` Waku ` is now defined as an interface with ` WakuNode ` an implementation of it.
21+ - ` createWaku ` is deprecated in favour of ` createLightNode ` and ` createPrivacyNode ` .
22+ - ` waitForRemotePeer ` can throw, default behaviour has changed.
1223- ` addPeerToAddressBook ` is now async.
1324- API Docs moved to https://js.waku.org/
1425- test: fix typing for nwaku JSON RPC responses.
@@ -18,17 +29,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1829### Added
1930
2031- Simple connection management that selects the most recent connection for store, light push and filter requests.
21- - ` createLightNode ` to create a Waku node for resource restricted environment with Light Push, Filter and Relay.
22- - ` createPrivacyNode ` to create a Waku node for privacy preserving usage with Relay only.
23- - ` createFullNode ` to create a Waku node for with all protocols, for ** testing purposes only** .
2432
2533### Changed
2634
2735- ** breaking** : ` DecryptionParams ` may be passed when using ` queryHistory ` instead of just keys.
2836- Examples have been moved to https://github.com/waku-org/js-waku-examples .
29- - ` Waku ` is now defined as an interface with ` WakuNode ` an implementation of it.
30- - ` createWaku ` is deprecated in favour of ` createLightNode ` and ` createPrivacyNode ` .
31- - ` waitForRemotePeer ` can throw, default behaviour has changed.
3237
3338### Fixed
3439
@@ -478,7 +483,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
478483- [ ReactJS Chat App example] ( ./examples/web-chat ) .
479484- [ Typedoc Documentation] ( https://js-waku.wakuconnect.dev/ ) .
480485
481- [ Unreleased ] : https://github.com/status-im/js-waku/compare/v0.26.0...HEAD
486+ [ Unreleased ] : https://github.com/status-im/js-waku/compare/v0.27.0...HEAD
487+ [ 0.27.0 ] : https://github.com/status-im/js-waku/compare/v0.26.0...v0.27.0
482488[ 0.26.0 ] : https://github.com/status-im/js-waku/compare/v0.25.0...v0.26.0
483489[ 0.25.0 ] : https://github.com/status-im/js-waku/compare/v0.24.0...v0.25.0
484490[ 0.24.0 ] : https://github.com/status-im/js-waku/compare/v0.23.0...v0.24.0
0 commit comments