@libp2p/kad-dht 16.3.2-404c7824a → 16.3.2-5e07d5963

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.
@@ -442,7 +442,7 @@ export interface KadDHTInit {
442
442
  /**
443
443
  * How many peers are queried in parallel during a query.
444
444
  *
445
- * @default 3
445
+ * @default 10
446
446
  */
447
447
  alpha?: number;
448
448
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/kad-dht",
3
- "version": "16.3.2-404c7824a",
3
+ "version": "16.3.2-5e07d5963",
4
4
  "description": "JavaScript implementation of the Kad-DHT for libp2p",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/kad-dht#readme",
@@ -48,14 +48,14 @@
48
48
  "doc-check": "aegir doc-check"
49
49
  },
50
50
  "dependencies": {
51
- "@libp2p/crypto": "5.1.19-404c7824a",
52
- "@libp2p/interface": "3.2.3-404c7824a",
53
- "@libp2p/interface-internal": "3.1.6-404c7824a",
54
- "@libp2p/peer-collections": "7.0.21-404c7824a",
55
- "@libp2p/peer-id": "6.0.10-404c7824a",
56
- "@libp2p/ping": "3.1.6-404c7824a",
57
- "@libp2p/record": "4.0.13-404c7824a",
58
- "@libp2p/utils": "7.2.2-404c7824a",
51
+ "@libp2p/crypto": "5.1.19-5e07d5963",
52
+ "@libp2p/interface": "3.2.3-5e07d5963",
53
+ "@libp2p/interface-internal": "3.1.6-5e07d5963",
54
+ "@libp2p/peer-collections": "7.0.21-5e07d5963",
55
+ "@libp2p/peer-id": "6.0.10-5e07d5963",
56
+ "@libp2p/ping": "3.1.6-5e07d5963",
57
+ "@libp2p/record": "4.0.13-5e07d5963",
58
+ "@libp2p/utils": "7.2.2-5e07d5963",
59
59
  "@multiformats/multiaddr": "^13.0.3",
60
60
  "@multiformats/multiaddr-matcher": "^3.0.2",
61
61
  "any-signal": "^4.1.1",
@@ -81,8 +81,8 @@
81
81
  "uint8arrays": "^6.1.1"
82
82
  },
83
83
  "devDependencies": {
84
- "@libp2p/logger": "6.2.8-404c7824a",
85
- "@libp2p/peer-store": "12.0.21-404c7824a",
84
+ "@libp2p/logger": "6.2.8-5e07d5963",
85
+ "@libp2p/peer-store": "12.0.21-5e07d5963",
86
86
  "@types/lodash.random": "^3.2.9",
87
87
  "@types/lodash.range": "^3.2.9",
88
88
  "@types/sinon": "^21.0.1",
package/src/index.ts CHANGED
@@ -501,7 +501,7 @@ export interface KadDHTInit {
501
501
  /**
502
502
  * How many peers are queried in parallel during a query.
503
503
  *
504
- * @default 3
504
+ * @default 10
505
505
  */
506
506
  alpha?: number
507
507