@waku/enr 0.0.20 → 0.0.22-070b625.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 +6267 -19864
- package/dist/.tsbuildinfo +1 -1
- package/dist/creator.d.ts +1 -1
- package/dist/enr.d.ts +1 -2
- package/dist/enr.js +7 -3
- package/dist/enr.js.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/peer_id.d.ts +1 -1
- package/dist/raw_enr.js +1 -1
- package/dist/raw_enr.js.map +1 -1
- package/package.json +1 -91
- package/src/creator.ts +1 -1
- package/src/enr.ts +8 -5
- package/src/index.ts +0 -1
- package/src/peer_id.ts +1 -1
- package/src/raw_enr.ts +1 -1
- package/dist/relay_shard_codec.d.ts +0 -3
- package/dist/relay_shard_codec.js +0 -54
- package/dist/relay_shard_codec.js.map +0 -1
- package/src/relay_shard_codec.ts +0 -60
package/CHANGELOG.md
CHANGED
@@ -67,6 +67,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
67
67
|
* devDependencies
|
68
68
|
* @waku/interfaces bumped from 0.0.20 to 0.0.21
|
69
69
|
|
70
|
+
## [0.0.21](https://github.com/waku-org/js-waku/compare/enr-v0.0.20...enr-v0.0.21) (2024-03-04)
|
71
|
+
|
72
|
+
|
73
|
+
### ⚠ BREAKING CHANGES
|
74
|
+
|
75
|
+
* protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756))
|
76
|
+
|
77
|
+
### Features
|
78
|
+
|
79
|
+
* Protocols filter peers as per configured shard ([#1756](https://github.com/waku-org/js-waku/issues/1756)) ([477c2a5](https://github.com/waku-org/js-waku/commit/477c2a5918f2f75cd2c14bc6ed75e1687c5a09b4))
|
80
|
+
|
81
|
+
|
82
|
+
### Bug Fixes
|
83
|
+
|
84
|
+
* **tests:** Append `p2p` with the multiaddrs from ENR ([#1817](https://github.com/waku-org/js-waku/issues/1817)) ([f8e02ab](https://github.com/waku-org/js-waku/commit/f8e02ab19eefd616926e17900602dcef28b068ff))
|
85
|
+
|
86
|
+
|
87
|
+
### Dependencies
|
88
|
+
|
89
|
+
* The following workspace dependencies were updated
|
90
|
+
* dependencies
|
91
|
+
* @waku/utils bumped from 0.0.14 to 0.0.15
|
92
|
+
* devDependencies
|
93
|
+
* @waku/interfaces bumped from 0.0.21 to 0.0.22
|
94
|
+
|
70
95
|
## [0.0.19](https://github.com/waku-org/js-waku/compare/enr-v0.0.18...enr-v0.0.19) (2023-11-01)
|
71
96
|
|
72
97
|
|