@waku/core 0.0.16 → 0.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/bundle/index.js +5842 -4093
- package/bundle/lib/message/version_0.js +1 -1
- package/bundle/{version_0-e9a6cfb0.js → version_0-5a4becbc.js} +6 -0
- package/dist/lib/filter/index.js +7 -3
- package/dist/lib/filter/index.js.map +1 -1
- package/dist/lib/light_push/index.js +1 -1
- package/dist/lib/light_push/index.js.map +1 -1
- package/dist/lib/message/version_0.js +6 -0
- package/dist/lib/message/version_0.js.map +1 -1
- package/dist/lib/relay/index.js +6 -0
- package/dist/lib/relay/index.js.map +1 -1
- package/dist/lib/store/index.js +1 -1
- package/dist/lib/store/index.js.map +1 -1
- package/dist/lib/waku.d.ts +2 -2
- package/dist/lib/waku.js +8 -2
- package/dist/lib/waku.js.map +1 -1
- package/package.json +10 -16
- package/src/lib/filter/index.ts +13 -4
- package/src/lib/light_push/index.ts +2 -2
- package/src/lib/message/version_0.ts +10 -2
- package/src/lib/relay/index.ts +12 -0
- package/src/lib/store/index.ts +2 -2
- package/src/lib/waku.ts +13 -4
package/CHANGELOG.md
CHANGED
@@ -5,6 +5,29 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The file is maintained by [Release Please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org) specification,
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [0.0.17](https://github.com/waku-org/js-waku/compare/core-v0.0.16...core-v0.0.17) (2023-05-09)
|
9
|
+
|
10
|
+
|
11
|
+
### Features
|
12
|
+
|
13
|
+
* Add mapping function to multiaddr of peerid ([#1306](https://github.com/waku-org/js-waku/issues/1306)) ([763dc01](https://github.com/waku-org/js-waku/commit/763dc0125dae8a675aa25e9116831f15748c2f9d))
|
14
|
+
* Ensure content topic is defined ([bd9d073](https://github.com/waku-org/js-waku/commit/bd9d07394fc2dcad573dd7f3b44ee692d0ea93e8))
|
15
|
+
* ToSubscriptionIterator impl for IReceiver ([#1307](https://github.com/waku-org/js-waku/issues/1307)) ([7daa9d0](https://github.com/waku-org/js-waku/commit/7daa9d05bf44b33296b56df214f5d5901887a129))
|
16
|
+
* Use nwaku/go-waku docker images instead of building binaries ([#1259](https://github.com/waku-org/js-waku/issues/1259)) ([dc3774c](https://github.com/waku-org/js-waku/commit/dc3774c0ede6c76956fb02fda4dbe9f9fb218e91))
|
17
|
+
|
18
|
+
|
19
|
+
### Bug Fixes
|
20
|
+
|
21
|
+
* Enum used from this dependency ([c9e7af4](https://github.com/waku-org/js-waku/commit/c9e7af470dfb92fc3e5b02935b243ce350153641))
|
22
|
+
|
23
|
+
|
24
|
+
### Dependencies
|
25
|
+
|
26
|
+
* The following workspace dependencies were updated
|
27
|
+
* dependencies
|
28
|
+
* @waku/interfaces bumped from 0.0.11 to 0.0.12
|
29
|
+
* @waku/utils bumped from 0.0.4 to 0.0.5
|
30
|
+
|
8
31
|
## [0.0.16](https://github.com/waku-org/js-waku/compare/core-v0.0.15...core-v0.0.16) (2023-04-03)
|
9
32
|
|
10
33
|
|