matterbridge 3.6.2-dev-20260316-21bfabd → 3.6.2-dev-20260317-e291a17
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/CHANGELOG.md +11 -1
- package/apps/frontend/npm-shrinkwrap.json +6 -6
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -54,6 +54,13 @@ These classes will run as threads in the next releases:
|
|
|
54
54
|
|
|
55
55
|
## [3.6.2] - Dev branch
|
|
56
56
|
|
|
57
|
+
### Dev Breaking Changes
|
|
58
|
+
|
|
59
|
+
- [getAttribute]: The overloads of `getAttribute()` method that take Behavior.Type or ClusterType are now typed.
|
|
60
|
+
- [setAttribute]: The overloads of `setAttribute()` method that take Behavior.Type or ClusterType are now typed.
|
|
61
|
+
- [updateAttribute]: The overloads of `updateAttribute()` method that take Behavior.Type or ClusterType are now typed.
|
|
62
|
+
- [subscribeAttribute]: The overloads of `subscribeAttribute()` method that take Behavior.Type or ClusterType are now typed.
|
|
63
|
+
|
|
57
64
|
### Dev News
|
|
58
65
|
|
|
59
66
|
- [DevContainer]: Change base image to `mcr.microsoft.com/devcontainers/javascript-node:24-trixie`.
|
|
@@ -62,6 +69,7 @@ These classes will run as threads in the next releases:
|
|
|
62
69
|
|
|
63
70
|
- [frontend]: Add support for Hass Ingress project (https://github.com/lovelylain/hass_ingress). Thanks kramttocs (https://github.com/Luligu/matterbridge/discussions/524).
|
|
64
71
|
- [threads]: Add ArchiveCommand thread.
|
|
72
|
+
- [endpoint]: Add getSnapshot() to create a snapshot of matter cluster state.
|
|
65
73
|
|
|
66
74
|
### Changed
|
|
67
75
|
|
|
@@ -73,7 +81,9 @@ These classes will run as threads in the next releases:
|
|
|
73
81
|
- [archive]: Use `zipjs` package.
|
|
74
82
|
- [archive]: Remove `archiver` and `glob` packages.
|
|
75
83
|
|
|
76
|
-
|
|
84
|
+
### Fixed
|
|
85
|
+
|
|
86
|
+
- [frontend]: Fix edge case when more then one device with mode = 'server' is in the same plugin. Thanks Ryan (https://github.com/Luligu/matterbridge/pull/528).
|
|
77
87
|
|
|
78
88
|
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
79
89
|
|
|
@@ -103,9 +103,9 @@
|
|
|
103
103
|
}
|
|
104
104
|
},
|
|
105
105
|
"node_modules/@babel/parser": {
|
|
106
|
-
"version": "7.29.
|
|
107
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.
|
|
108
|
-
"integrity": "sha512-
|
|
106
|
+
"version": "7.29.2",
|
|
107
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz",
|
|
108
|
+
"integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==",
|
|
109
109
|
"license": "MIT",
|
|
110
110
|
"dependencies": {
|
|
111
111
|
"@babel/types": "^7.29.0"
|
|
@@ -118,9 +118,9 @@
|
|
|
118
118
|
}
|
|
119
119
|
},
|
|
120
120
|
"node_modules/@babel/runtime": {
|
|
121
|
-
"version": "7.
|
|
122
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.
|
|
123
|
-
"integrity": "sha512-
|
|
121
|
+
"version": "7.29.2",
|
|
122
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz",
|
|
123
|
+
"integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
|
|
124
124
|
"license": "MIT",
|
|
125
125
|
"engines": {
|
|
126
126
|
"node": ">=6.9.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.6.2-dev-
|
|
3
|
+
"version": "3.6.2-dev-20260317-e291a17",
|
|
4
4
|
"description": "Matterbridge plugin manager for Matter",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -125,21 +125,21 @@
|
|
|
125
125
|
"README-SERVICE.md"
|
|
126
126
|
],
|
|
127
127
|
"dependencies": {
|
|
128
|
-
"@matterbridge/core": "3.6.2-dev-
|
|
129
|
-
"@matterbridge/dgram": "3.6.2-dev-
|
|
130
|
-
"@matterbridge/jest-utils": "3.6.2-dev-
|
|
131
|
-
"@matterbridge/thread": "3.6.2-dev-
|
|
132
|
-
"@matterbridge/types": "3.6.2-dev-
|
|
133
|
-
"@matterbridge/utils": "3.6.2-dev-
|
|
134
|
-
"@matterbridge/vitest-utils": "3.6.2-dev-
|
|
128
|
+
"@matterbridge/core": "3.6.2-dev-20260317-e291a17",
|
|
129
|
+
"@matterbridge/dgram": "3.6.2-dev-20260317-e291a17",
|
|
130
|
+
"@matterbridge/jest-utils": "3.6.2-dev-20260317-e291a17",
|
|
131
|
+
"@matterbridge/thread": "3.6.2-dev-20260317-e291a17",
|
|
132
|
+
"@matterbridge/types": "3.6.2-dev-20260317-e291a17",
|
|
133
|
+
"@matterbridge/utils": "3.6.2-dev-20260317-e291a17",
|
|
134
|
+
"@matterbridge/vitest-utils": "3.6.2-dev-20260317-e291a17"
|
|
135
135
|
},
|
|
136
136
|
"overrides": {
|
|
137
137
|
"eslint": "10.0.3",
|
|
138
138
|
"@eslint/js": "10.0.1"
|
|
139
139
|
},
|
|
140
140
|
"build": {
|
|
141
|
-
"sha": "
|
|
142
|
-
"sha7": "
|
|
141
|
+
"sha": "e291a17256e1b4b1ce96c61ad249393ed051756d",
|
|
142
|
+
"sha7": "e291a17",
|
|
143
143
|
"event": "workflow_dispatch",
|
|
144
144
|
"workflow": "Publish to npm and trigger docker builds",
|
|
145
145
|
"type": "branch",
|