matterbridge 3.1.7-dev-20250723-8e073ce → 3.1.7-dev-20250724-c3522e6
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
CHANGED
|
@@ -28,8 +28,8 @@ If you like this project and find it useful, please consider giving it a star on
|
|
|
28
28
|
|
|
29
29
|
- [docker]: Added trigger of Build Docker Image latest from publish.yml.
|
|
30
30
|
- [docker]: Added trigger of Build Docker Image dev from publish-dev-daily.yml.
|
|
31
|
-
- [docker]: Added on demand trigger for Build Docker Image latest from other plugins.
|
|
32
|
-
- [docker]: Added on demand trigger for Build Docker Image dev from other plugins.
|
|
31
|
+
- [docker]: Added on demand trigger for Build Docker Image latest from other plugins workflows.
|
|
32
|
+
- [docker]: Added on demand trigger for Build Docker Image dev from other plugins workflows.
|
|
33
33
|
- [mdns]: Added bin mb_mdns.
|
|
34
34
|
- [coap]: Added bin mb_coap.
|
|
35
35
|
|
|
@@ -109,6 +109,9 @@ export function createUniqueId(param1, param2, param3, param4) {
|
|
|
109
109
|
hash.update(param1 + param2 + param3 + param4);
|
|
110
110
|
return hash.digest('hex');
|
|
111
111
|
}
|
|
112
|
+
export function featuresFor(endpoint, behavior) {
|
|
113
|
+
return endpoint.behaviors.supported[lowercaseFirstLetter(behavior)]['cluster']['supportedFeatures'];
|
|
114
|
+
}
|
|
112
115
|
export function getBehaviourTypesFromClusterServerIds(clusterServerList) {
|
|
113
116
|
const behaviorTypes = [];
|
|
114
117
|
clusterServerList.forEach((clusterId) => {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.1.7-dev-
|
|
3
|
+
"version": "3.1.7-dev-20250724-c3522e6",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.1.7-dev-
|
|
9
|
+
"version": "3.1.7-dev-20250724-c3522e6",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.15.1",
|
package/package.json
CHANGED