@waku/core 0.0.18 → 0.0.20

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.
Files changed (37) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/bundle/index.js +548 -109
  3. package/bundle/lib/message/version_0.js +1 -1
  4. package/bundle/{version_0-c6b47311.js → version_0-9c941081.js} +402 -23
  5. package/dist/index.d.ts +4 -2
  6. package/dist/index.js +4 -2
  7. package/dist/index.js.map +1 -1
  8. package/dist/lib/connection_manager.d.ts +8 -0
  9. package/dist/lib/connection_manager.js +74 -6
  10. package/dist/lib/connection_manager.js.map +1 -1
  11. package/dist/lib/filter/{filter_rpc.d.ts → v1/filter_rpc.d.ts} +1 -3
  12. package/dist/lib/filter/v1/filter_rpc.js.map +1 -0
  13. package/dist/lib/filter/{index.d.ts → v1/index.d.ts} +0 -2
  14. package/dist/lib/filter/{index.js → v1/index.js} +3 -3
  15. package/dist/lib/filter/v1/index.js.map +1 -0
  16. package/dist/lib/filter/v2/filter_rpc.d.ts +40 -0
  17. package/dist/lib/filter/v2/filter_rpc.js +109 -0
  18. package/dist/lib/filter/v2/filter_rpc.js.map +1 -0
  19. package/dist/lib/filter/v2/index.d.ts +3 -0
  20. package/dist/lib/filter/v2/index.js +235 -0
  21. package/dist/lib/filter/v2/index.js.map +1 -0
  22. package/dist/lib/wait_for_remote_peer.d.ts +1 -1
  23. package/dist/lib/wait_for_remote_peer.js +1 -1
  24. package/dist/lib/waku.d.ts +5 -5
  25. package/dist/lib/waku.js.map +1 -1
  26. package/package.json +9 -10
  27. package/src/index.ts +5 -2
  28. package/src/lib/connection_manager.ts +96 -8
  29. package/src/lib/filter/{filter_rpc.ts → v1/filter_rpc.ts} +1 -4
  30. package/src/lib/filter/{index.ts → v1/index.ts} +5 -6
  31. package/src/lib/filter/v2/filter_rpc.ts +131 -0
  32. package/src/lib/filter/v2/index.ts +413 -0
  33. package/src/lib/wait_for_remote_peer.ts +1 -1
  34. package/src/lib/waku.ts +5 -7
  35. package/dist/lib/filter/filter_rpc.js.map +0 -1
  36. package/dist/lib/filter/index.js.map +0 -1
  37. /package/dist/lib/filter/{filter_rpc.js → v1/filter_rpc.js} +0 -0
package/CHANGELOG.md CHANGED
@@ -5,6 +5,46 @@ 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.20](https://github.com/waku-org/js-waku/compare/core-v0.0.19...core-v0.0.20) (2023-06-08)
9
+
10
+
11
+ ### ⚠ BREAKING CHANGES
12
+
13
+ * rename package from @waku/create to @waku/sdk ([#1386](https://github.com/waku-org/js-waku/issues/1386))
14
+
15
+ ### Features
16
+
17
+ * Allow passing of multiple ENR URLs to DNS Discovery & dial multiple peers in parallel ([#1379](https://github.com/waku-org/js-waku/issues/1379)) ([f32d7d9](https://github.com/waku-org/js-waku/commit/f32d7d9fe0b930b4fa9c46b8644e6d21be45d5c1))
18
+ * Rename package from @waku/create to @waku/sdk ([#1386](https://github.com/waku-org/js-waku/issues/1386)) ([951ebda](https://github.com/waku-org/js-waku/commit/951ebdac9d5b594583acf5e4a21f6471fa81ff74))
19
+
20
+
21
+ ### Dependencies
22
+
23
+ * The following workspace dependencies were updated
24
+ * dependencies
25
+ * @waku/interfaces bumped from 0.0.14 to 0.0.15
26
+ * @waku/utils bumped from 0.0.7 to 0.0.8
27
+
28
+ ## [0.0.19](https://github.com/waku-org/js-waku/compare/core-v0.0.18...core-v0.0.19) (2023-05-26)
29
+
30
+
31
+ ### ⚠ BREAKING CHANGES
32
+
33
+ * filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332))
34
+
35
+ ### Features
36
+
37
+ * Filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332)) ([8d0e647](https://github.com/waku-org/js-waku/commit/8d0e64796695fbafad0a033552eb4412bdff3d78))
38
+
39
+
40
+ ### Dependencies
41
+
42
+ * The following workspace dependencies were updated
43
+ * dependencies
44
+ * @waku/interfaces bumped from 0.0.13 to 0.0.14
45
+ * @waku/proto bumped from * to 0.0.5
46
+ * @waku/utils bumped from 0.0.6 to 0.0.7
47
+
8
48
  ## [0.0.18](https://github.com/waku-org/js-waku/compare/core-v0.0.17...core-v0.0.18) (2023-05-18)
9
49
 
10
50