@waku/core 0.0.36-f7c290d.0 → 0.0.36

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 +39 -0
  2. package/bundle/index.js +1008 -594
  3. package/bundle/lib/message/version_0.js +1 -2
  4. package/bundle/{version_0-CyeTW0Vr.js → version_0-9DPFjcJG.js} +1570 -6
  5. package/dist/.tsbuildinfo +1 -1
  6. package/dist/lib/connection_manager/connection_manager.d.ts +2 -1
  7. package/dist/lib/connection_manager/connection_manager.js +16 -8
  8. package/dist/lib/connection_manager/connection_manager.js.map +1 -1
  9. package/dist/lib/filter/filter.d.ts +4 -3
  10. package/dist/lib/filter/filter.js +9 -7
  11. package/dist/lib/filter/filter.js.map +1 -1
  12. package/dist/lib/light_push/light_push.d.ts +4 -3
  13. package/dist/lib/light_push/light_push.js +6 -4
  14. package/dist/lib/light_push/light_push.js.map +1 -1
  15. package/dist/lib/message/version_0.d.ts +1 -1
  16. package/dist/lib/metadata/metadata.js +6 -4
  17. package/dist/lib/metadata/metadata.js.map +1 -1
  18. package/dist/lib/store/store.d.ts +4 -3
  19. package/dist/lib/store/store.js +6 -4
  20. package/dist/lib/store/store.js.map +1 -1
  21. package/dist/lib/stream_manager/stream_manager.d.ts +3 -4
  22. package/dist/lib/stream_manager/stream_manager.js +6 -8
  23. package/dist/lib/stream_manager/stream_manager.js.map +1 -1
  24. package/package.json +125 -1
  25. package/src/lib/connection_manager/connection_manager.ts +24 -16
  26. package/src/lib/filter/filter.ts +13 -8
  27. package/src/lib/light_push/light_push.ts +8 -5
  28. package/src/lib/metadata/metadata.ts +8 -5
  29. package/src/lib/store/store.ts +8 -5
  30. package/src/lib/stream_manager/stream_manager.ts +8 -6
  31. package/bundle/base_protocol-DvQrudwy.js +0 -152
  32. package/bundle/index-CTo1my9M.js +0 -1543
  33. package/bundle/lib/base_protocol.js +0 -2
  34. package/dist/lib/base_protocol.d.ts +0 -18
  35. package/dist/lib/base_protocol.js +0 -25
  36. package/dist/lib/base_protocol.js.map +0 -1
  37. package/src/lib/base_protocol.ts +0 -44
package/CHANGELOG.md CHANGED
@@ -5,6 +5,45 @@ 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.36](https://github.com/waku-org/js-waku/compare/core-v0.0.35...core-v0.0.36) (2025-06-23)
9
+
10
+
11
+ ### ⚠ BREAKING CHANGES
12
+
13
+ * upgrade libp2p, nodejs and typescript ([#2401](https://github.com/waku-org/js-waku/issues/2401))
14
+ * remove IBaseProtocol and improve interface on PeerExchange ([#2422](https://github.com/waku-org/js-waku/issues/2422))
15
+ * re-work messaging parts and sharding ([#2399](https://github.com/waku-org/js-waku/issues/2399))
16
+
17
+ ### Features
18
+
19
+ * Event based approach to Filter ([#2300](https://github.com/waku-org/js-waku/issues/2300)) ([a4dfd34](https://github.com/waku-org/js-waku/commit/a4dfd3455c88db6ff60531c15a58128afb25db05))
20
+ * Re-work messaging parts and sharding ([#2399](https://github.com/waku-org/js-waku/issues/2399)) ([1905558](https://github.com/waku-org/js-waku/commit/1905558753a7bf61c3dd27d6892d0f561d4c57c6))
21
+ * Shard retrieval for store and store peers selection ([#2417](https://github.com/waku-org/js-waku/issues/2417)) ([f55db3e](https://github.com/waku-org/js-waku/commit/f55db3eb4bbbbbdf454e420b7238ede0642d996f))
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * Rebase package lock ([f649f59](https://github.com/waku-org/js-waku/commit/f649f59e64cd1d9bd2fcc01509f6725790534a7b))
27
+ * Remove unnecessary comments from store validation ([5f63cb5](https://github.com/waku-org/js-waku/commit/5f63cb5bfbb8c7926597490a867c11ab90af8159))
28
+ * **store:** Update store query validation logic to support msg hash q… ([49f26d8](https://github.com/waku-org/js-waku/commit/49f26d89a8032386ee5b3ba629713b4f84891d5d))
29
+ * **store:** Update store query validation logic to support msg hash queries ([9f7a15d](https://github.com/waku-org/js-waku/commit/9f7a15dfb19e765c4cbfa43f5d4f9323d2804f50))
30
+
31
+
32
+ ### Miscellaneous Chores
33
+
34
+ * Remove IBaseProtocol and improve interface on PeerExchange ([#2422](https://github.com/waku-org/js-waku/issues/2422)) ([7c8d107](https://github.com/waku-org/js-waku/commit/7c8d1073b0d076117fb33ce05452a88871259782))
35
+ * Upgrade libp2p, nodejs and typescript ([#2401](https://github.com/waku-org/js-waku/issues/2401)) ([fcc6496](https://github.com/waku-org/js-waku/commit/fcc6496fef914c56f6a4d2d17c494c8b94caea3c))
36
+
37
+
38
+ ### Dependencies
39
+
40
+ * The following workspace dependencies were updated
41
+ * dependencies
42
+ * @waku/enr bumped from ^0.0.29 to ^0.0.30
43
+ * @waku/interfaces bumped from 0.0.30 to 0.0.31
44
+ * @waku/proto bumped from 0.0.10 to 0.0.11
45
+ * @waku/utils bumped from 0.0.23 to 0.0.24
46
+
8
47
  ## [0.0.35](https://github.com/waku-org/js-waku/compare/core-v0.0.34...core-v0.0.35) (2025-04-23)
9
48
 
10
49