@waku/interfaces 0.0.14 → 0.0.15
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
CHANGED
@@ -5,6 +5,13 @@ 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.15](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.14...interfaces-v0.0.15) (2023-06-08)
|
9
|
+
|
10
|
+
|
11
|
+
### Features
|
12
|
+
|
13
|
+
* 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))
|
14
|
+
|
8
15
|
## [0.0.14](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.13...interfaces-v0.0.14) (2023-05-26)
|
9
16
|
|
10
17
|
|
@@ -13,4 +13,8 @@ export interface ConnectionManagerOptions {
|
|
13
13
|
* This is used to increase intention of dialing non-bootstrap peers, found using other discovery mechanisms (like Peer Exchange)
|
14
14
|
*/
|
15
15
|
maxBootstrapPeersAllowed: number;
|
16
|
+
/**
|
17
|
+
* Max number of parallel dials allowed
|
18
|
+
*/
|
19
|
+
maxParallelDials: number;
|
16
20
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@waku/interfaces",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.15",
|
4
4
|
"description": "Definition of Waku interfaces",
|
5
5
|
"types": "./dist/index.d.ts",
|
6
6
|
"module": "./dist/index.js",
|
@@ -57,9 +57,9 @@
|
|
57
57
|
"@libp2p/interface-registrar": "^2.0.8",
|
58
58
|
"@multiformats/multiaddr": "^12.0.0",
|
59
59
|
"@typescript-eslint/eslint-plugin": "^5.57.0",
|
60
|
-
"@typescript-eslint/parser": "^5.
|
60
|
+
"@typescript-eslint/parser": "^5.59.8",
|
61
61
|
"cspell": "^6.31.1",
|
62
|
-
"eslint": "^8.
|
62
|
+
"eslint": "^8.41.0",
|
63
63
|
"eslint-config-prettier": "^8.6.0",
|
64
64
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
65
65
|
"eslint-plugin-functional": "^5.0.4",
|
@@ -14,4 +14,8 @@ export interface ConnectionManagerOptions {
|
|
14
14
|
* This is used to increase intention of dialing non-bootstrap peers, found using other discovery mechanisms (like Peer Exchange)
|
15
15
|
*/
|
16
16
|
maxBootstrapPeersAllowed: number;
|
17
|
+
/**
|
18
|
+
* Max number of parallel dials allowed
|
19
|
+
*/
|
20
|
+
maxParallelDials: number;
|
17
21
|
}
|