@waku/discovery 0.0.9-f911bf8.0 → 0.0.10-2ed5ddc.0
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 +24 -0
- package/bundle/index.js +4947 -4525
- package/dist/.tsbuildinfo +1 -1
- package/dist/dns/constants.d.ts +2 -2
- package/dist/dns/constants.js +2 -1
- package/dist/dns/constants.js.map +1 -1
- package/dist/local-peer-cache/index.d.ts +1 -2
- package/dist/local-peer-cache/index.js +2 -2
- package/dist/local-peer-cache/index.js.map +1 -1
- package/dist/peer-exchange/index.d.ts +1 -1
- package/dist/peer-exchange/index.js +1 -1
- package/dist/peer-exchange/index.js.map +1 -1
- package/dist/peer-exchange/waku_peer_exchange.d.ts +6 -5
- package/dist/peer-exchange/waku_peer_exchange.js +10 -7
- package/dist/peer-exchange/waku_peer_exchange.js.map +1 -1
- package/dist/peer-exchange/waku_peer_exchange_discovery.d.ts +3 -4
- package/dist/peer-exchange/waku_peer_exchange_discovery.js +5 -5
- package/dist/peer-exchange/waku_peer_exchange_discovery.js.map +1 -1
- package/package.json +1 -1
- package/src/dns/constants.ts +2 -2
- package/src/local-peer-cache/index.ts +2 -2
- package/src/peer-exchange/index.ts +1 -2
- package/src/peer-exchange/waku_peer_exchange.ts +12 -15
- package/src/peer-exchange/waku_peer_exchange_discovery.ts +7 -12
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,29 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.0.9](https://github.com/waku-org/js-waku/compare/discovery-v0.0.8...discovery-v0.0.9) (2025-06-23)
|
4
|
+
|
5
|
+
|
6
|
+
### ⚠ BREAKING CHANGES
|
7
|
+
|
8
|
+
* upgrade libp2p, nodejs and typescript ([#2401](https://github.com/waku-org/js-waku/issues/2401))
|
9
|
+
* remove IBaseProtocol and improve interface on PeerExchange ([#2422](https://github.com/waku-org/js-waku/issues/2422))
|
10
|
+
|
11
|
+
### Miscellaneous Chores
|
12
|
+
|
13
|
+
* 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))
|
14
|
+
* 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))
|
15
|
+
|
16
|
+
|
17
|
+
### Dependencies
|
18
|
+
|
19
|
+
* The following workspace dependencies were updated
|
20
|
+
* dependencies
|
21
|
+
* @waku/core bumped from 0.0.35 to 0.0.36
|
22
|
+
* @waku/enr bumped from 0.0.29 to 0.0.30
|
23
|
+
* @waku/interfaces bumped from 0.0.30 to 0.0.31
|
24
|
+
* @waku/proto bumped from ^0.0.10 to ^0.0.11
|
25
|
+
* @waku/utils bumped from 0.0.23 to 0.0.24
|
26
|
+
|
3
27
|
## [0.0.8](https://github.com/waku-org/js-waku/compare/discovery-v0.0.7...discovery-v0.0.8) (2025-04-23)
|
4
28
|
|
5
29
|
|