@waku/discovery 0.0.7-ebd7523.0 → 0.0.8-053bb95.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 +25 -0
- package/bundle/index.js +2294 -8232
- package/dist/.tsbuildinfo +1 -1
- package/dist/dns/dns_over_https.d.ts +2 -8
- package/dist/dns/dns_over_https.js +8 -22
- package/dist/dns/dns_over_https.js.map +1 -1
- package/package.json +1 -1
- package/src/dns/dns_over_https.ts +6 -31
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,30 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.0.7](https://github.com/waku-org/js-waku/compare/discovery-v0.0.6...discovery-v0.0.7) (2025-03-24)
|
4
|
+
|
5
|
+
|
6
|
+
### Features
|
7
|
+
|
8
|
+
* Add HealthIndicator with simplified logic and testing ([#2251](https://github.com/waku-org/js-waku/issues/2251)) ([3136f3a](https://github.com/waku-org/js-waku/commit/3136f3a70452cbec8b4361cc9697622b0a2debf7))
|
9
|
+
* Improve peer manager and re-integrate to light push ([#2191](https://github.com/waku-org/js-waku/issues/2191)) ([62f93dc](https://github.com/waku-org/js-waku/commit/62f93dc8428132161dba8881c6adc162040ae758))
|
10
|
+
* Move Peer to PeerId ([#2246](https://github.com/waku-org/js-waku/issues/2246)) ([fc93fae](https://github.com/waku-org/js-waku/commit/fc93fae873ad032cc4f18c41ab98959eef785279))
|
11
|
+
|
12
|
+
|
13
|
+
### Bug Fixes
|
14
|
+
|
15
|
+
* Remove peer deps ([#2200](https://github.com/waku-org/js-waku/issues/2200)) ([f34fc4b](https://github.com/waku-org/js-waku/commit/f34fc4b2442f1cec326c8ebd45596445232fa65b))
|
16
|
+
|
17
|
+
|
18
|
+
### Dependencies
|
19
|
+
|
20
|
+
* The following workspace dependencies were updated
|
21
|
+
* dependencies
|
22
|
+
* @waku/core bumped from 0.0.33 to 0.0.34
|
23
|
+
* @waku/enr bumped from 0.0.27 to 0.0.28
|
24
|
+
* @waku/interfaces bumped from 0.0.28 to 0.0.29
|
25
|
+
* @waku/proto bumped from ^0.0.8 to ^0.0.9
|
26
|
+
* @waku/utils bumped from 0.0.21 to 0.0.22
|
27
|
+
|
3
28
|
## [0.0.6](https://github.com/waku-org/js-waku/compare/discovery-v0.0.5...discovery-v0.0.6) (2024-10-16)
|
4
29
|
|
5
30
|
|