@matter/node 0.16.8-alpha.0-20260129-9807090da → 0.16.8
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.
|
@@ -398,7 +398,7 @@ class Behaviors {
|
|
|
398
398
|
let promise;
|
|
399
399
|
const backing = this.#backings[id];
|
|
400
400
|
if (backing) {
|
|
401
|
-
logger.
|
|
401
|
+
logger.info(`Removing ${backing} from active endpoint`);
|
|
402
402
|
promise = backing.close();
|
|
403
403
|
delete this.#backings[id];
|
|
404
404
|
}
|
|
@@ -385,7 +385,7 @@ class Behaviors {
|
|
|
385
385
|
let promise;
|
|
386
386
|
const backing = this.#backings[id];
|
|
387
387
|
if (backing) {
|
|
388
|
-
logger.
|
|
388
|
+
logger.info(`Removing ${backing} from active endpoint`);
|
|
389
389
|
promise = backing.close();
|
|
390
390
|
delete this.#backings[id];
|
|
391
391
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matter/node",
|
|
3
|
-
"version": "0.16.8
|
|
3
|
+
"version": "0.16.8",
|
|
4
4
|
"description": "API for building Matter nodes",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"iot",
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
"#*": "./src/*"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@matter/general": "0.16.8
|
|
46
|
-
"@matter/model": "0.16.8
|
|
47
|
-
"@matter/types": "0.16.8
|
|
48
|
-
"@matter/protocol": "0.16.8
|
|
45
|
+
"@matter/general": "0.16.8",
|
|
46
|
+
"@matter/model": "0.16.8",
|
|
47
|
+
"@matter/types": "0.16.8",
|
|
48
|
+
"@matter/protocol": "0.16.8"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@matter/tools": "0.16.8
|
|
52
|
-
"@matter/testing": "0.16.8
|
|
51
|
+
"@matter/tools": "0.16.8",
|
|
52
|
+
"@matter/testing": "0.16.8"
|
|
53
53
|
},
|
|
54
54
|
"files": [
|
|
55
55
|
"dist/**/*",
|
|
@@ -510,7 +510,7 @@ export class Behaviors {
|
|
|
510
510
|
let promise: undefined | MaybePromise<void>;
|
|
511
511
|
const backing = this.#backings[id];
|
|
512
512
|
if (backing) {
|
|
513
|
-
logger.
|
|
513
|
+
logger.info(`Removing ${backing} from active endpoint`);
|
|
514
514
|
promise = backing.close();
|
|
515
515
|
delete this.#backings[id];
|
|
516
516
|
}
|