@libp2p/interface-internal 2.0.3 → 2.0.4

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.
@@ -63,7 +63,7 @@ export interface ConnectionManager {
63
63
  */
64
64
  acceptIncomingConnection(maConn: MultiaddrConnection): Promise<boolean>;
65
65
  /**
66
- * Invoked after upgrading a multiaddr connection has finished
66
+ * Invoked after upgrading an inbound multiaddr connection has finished
67
67
  */
68
68
  afterUpgradeInbound(): void;
69
69
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/interface-internal",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "Interfaces implemented by internal libp2p components",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/interface-internal#readme",
@@ -48,8 +48,8 @@
48
48
  "build": "aegir build"
49
49
  },
50
50
  "dependencies": {
51
- "@libp2p/interface": "^2.1.1",
52
- "@libp2p/peer-collections": "^6.0.3",
51
+ "@libp2p/interface": "^2.1.2",
52
+ "@libp2p/peer-collections": "^6.0.4",
53
53
  "@multiformats/multiaddr": "^12.2.3",
54
54
  "progress-events": "^1.0.0",
55
55
  "uint8arraylist": "^2.4.8"
@@ -71,7 +71,7 @@ export interface ConnectionManager {
71
71
  acceptIncomingConnection(maConn: MultiaddrConnection): Promise<boolean>
72
72
 
73
73
  /**
74
- * Invoked after upgrading a multiaddr connection has finished
74
+ * Invoked after upgrading an inbound multiaddr connection has finished
75
75
  */
76
76
  afterUpgradeInbound(): void
77
77