@dxos/messaging 0.4.10-main.ef6fbc2 → 0.4.10-main.f635fb0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/messaging",
3
- "version": "0.4.10-main.ef6fbc2",
3
+ "version": "0.4.10-main.f635fb0",
4
4
  "description": "Messaging",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -19,23 +19,23 @@
19
19
  "dependencies": {
20
20
  "isomorphic-ws": "^4.0.1",
21
21
  "ws": "^8.14.2",
22
- "@dxos/async": "0.4.10-main.ef6fbc2",
23
- "@dxos/codec-protobuf": "0.4.10-main.ef6fbc2",
24
- "@dxos/context": "0.4.10-main.ef6fbc2",
25
- "@dxos/keys": "0.4.10-main.ef6fbc2",
26
- "@dxos/invariant": "0.4.10-main.ef6fbc2",
27
- "@dxos/log": "0.4.10-main.ef6fbc2",
28
- "@dxos/node-std": "0.4.10-main.ef6fbc2",
29
- "@dxos/protocols": "0.4.10-main.ef6fbc2",
30
- "@dxos/rpc": "0.4.10-main.ef6fbc2",
31
- "@dxos/util": "0.4.10-main.ef6fbc2"
22
+ "@dxos/async": "0.4.10-main.f635fb0",
23
+ "@dxos/codec-protobuf": "0.4.10-main.f635fb0",
24
+ "@dxos/context": "0.4.10-main.f635fb0",
25
+ "@dxos/invariant": "0.4.10-main.f635fb0",
26
+ "@dxos/keys": "0.4.10-main.f635fb0",
27
+ "@dxos/log": "0.4.10-main.f635fb0",
28
+ "@dxos/node-std": "0.4.10-main.f635fb0",
29
+ "@dxos/protocols": "0.4.10-main.f635fb0",
30
+ "@dxos/util": "0.4.10-main.f635fb0",
31
+ "@dxos/rpc": "0.4.10-main.f635fb0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/node": "^18.11.9",
35
35
  "earljs": "~0.1.10",
36
36
  "typescript": "^5.2.2",
37
37
  "wait-for-expect": "^3.0.2",
38
- "@dxos/signal": "0.4.10-main.ef6fbc2"
38
+ "@dxos/signal": "0.4.10-main.f635fb0"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
@@ -213,7 +213,6 @@ export class SignalClient implements SignalMethods {
213
213
  async leave({ topic, peerId }: { topic: PublicKey; peerId: PublicKey }): Promise<void> {
214
214
  this._performance.leaveCounter++;
215
215
  log('leaving', { topic, peerId });
216
-
217
216
  void this._swarmStreams.get({ topic, peerId })?.close();
218
217
  this._swarmStreams.delete({ topic, peerId });
219
218
  this._joinedTopics.delete({ topic, peerId });