@libp2p/circuit-relay-v2 3.2.1-a4f0db1e9 → 3.2.2-5b084e968

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.
@@ -81,7 +81,7 @@ export class RelayDiscovery extends TypedEventEmitter {
81
81
  }
82
82
  ],
83
83
  orders: [
84
- // randomise
84
+ // randomize
85
85
  () => Math.random() < 0.5 ? 1 : -1,
86
86
  // prefer peers we've connected to in the past
87
87
  (a, b) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/circuit-relay-v2",
3
- "version": "3.2.1-a4f0db1e9",
3
+ "version": "3.2.2-5b084e968",
4
4
  "description": "Implementation of Circuit Relay v2",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/transport-circuit-relay-v2#readme",
@@ -52,13 +52,13 @@
52
52
  "doc-check": "aegir doc-check"
53
53
  },
54
54
  "dependencies": {
55
- "@libp2p/crypto": "5.0.12-a4f0db1e9",
56
- "@libp2p/interface": "2.6.0-a4f0db1e9",
57
- "@libp2p/interface-internal": "2.3.3-a4f0db1e9",
58
- "@libp2p/peer-collections": "6.0.19-a4f0db1e9",
59
- "@libp2p/peer-id": "5.0.13-a4f0db1e9",
60
- "@libp2p/peer-record": "8.0.19-a4f0db1e9",
61
- "@libp2p/utils": "6.5.3-a4f0db1e9",
55
+ "@libp2p/crypto": "5.0.12-5b084e968",
56
+ "@libp2p/interface": "2.6.0-5b084e968",
57
+ "@libp2p/interface-internal": "2.3.4-5b084e968",
58
+ "@libp2p/peer-collections": "6.0.20-5b084e968",
59
+ "@libp2p/peer-id": "5.0.13-5b084e968",
60
+ "@libp2p/peer-record": "8.0.20-5b084e968",
61
+ "@libp2p/utils": "6.5.4-5b084e968",
62
62
  "@multiformats/multiaddr": "^12.3.3",
63
63
  "@multiformats/multiaddr-matcher": "^1.6.0",
64
64
  "any-signal": "^4.1.1",
@@ -73,8 +73,8 @@
73
73
  "uint8arrays": "^5.1.0"
74
74
  },
75
75
  "devDependencies": {
76
- "@libp2p/interface-compliance-tests": "6.3.3-a4f0db1e9",
77
- "@libp2p/logger": "5.1.9-a4f0db1e9",
76
+ "@libp2p/interface-compliance-tests": "6.3.4-5b084e968",
77
+ "@libp2p/logger": "5.1.9-5b084e968",
78
78
  "aegir": "^45.0.5",
79
79
  "delay": "^6.0.0",
80
80
  "it-drain": "^3.0.7",
@@ -83,7 +83,7 @@
83
83
  "it-to-buffer": "^4.0.7",
84
84
  "p-wait-for": "^5.0.2",
85
85
  "protons": "^7.6.0",
86
- "race-signal": "^1.1.0",
86
+ "race-signal": "^1.1.2",
87
87
  "sinon": "^19.0.2",
88
88
  "sinon-ts": "^2.0.0"
89
89
  },
@@ -114,7 +114,7 @@ export class RelayDiscovery extends TypedEventEmitter<RelayDiscoveryEvents> impl
114
114
  }
115
115
  ],
116
116
  orders: [
117
- // randomise
117
+ // randomize
118
118
  () => Math.random() < 0.5 ? 1 : -1,
119
119
  // prefer peers we've connected to in the past
120
120
  (a, b) => {