matterbridge 3.1.7-dev-20250723-aab81fe → 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 +3 -1
- package/README-DOCKER.md +3 -3
- package/dist/matterbridgeEndpointHelpers.js +3 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -27,7 +27,9 @@ If you like this project and find it useful, please consider giving it a star on
|
|
|
27
27
|
### Added
|
|
28
28
|
|
|
29
29
|
- [docker]: Added trigger of Build Docker Image latest from publish.yml.
|
|
30
|
-
- [docker]: Added
|
|
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 workflows.
|
|
32
|
+
- [docker]: Added on demand trigger for Build Docker Image dev from other plugins workflows.
|
|
31
33
|
- [mdns]: Added bin mb_mdns.
|
|
32
34
|
- [coap]: Added bin mb_coap.
|
|
33
35
|
|
package/README-DOCKER.md
CHANGED
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
|
|
21
21
|
The Matterbridge Docker image, which includes a manifest list for the linux/amd64, linux/arm64 and linux/arm/v7 architectures, is published on **Docker Hub**.
|
|
22
22
|
|
|
23
|
-
The image (tag **latest**) includes matterbridge and all plugins with the latest release (as published on npm). You can just pull the new image and matterbridge with all plugins will be the latest release published on npm.
|
|
23
|
+
The image (tag **latest**) includes matterbridge and all official plugins with the latest release (as published on npm). You can just pull the new image and matterbridge with all plugins will be the latest release published on npm.
|
|
24
24
|
|
|
25
|
-
The image (tag **dev**) includes matterbridge and all plugins with the dev release (as pushed on GitHub). You can just pull the new image and matterbridge with all plugins will be the latest release pushed on GitHub. It is possible that the devs are outdated by published latests.
|
|
25
|
+
The image (tag **dev**) includes matterbridge and all plugins with the dev release (as pushed on GitHub). You can just pull the new image and matterbridge with all plugins will be the latest dev release pushed on GitHub. It is possible that the devs are outdated by published latests.
|
|
26
26
|
|
|
27
27
|
You can directly select and add a plugin without installing it.
|
|
28
28
|
|
|
@@ -71,7 +71,7 @@ After adding your user to the docker group, you need to log out and log back in
|
|
|
71
71
|
|
|
72
72
|
### Run the Docker container and start it
|
|
73
73
|
|
|
74
|
-
The container must have full access to the host network (needed for mdns).
|
|
74
|
+
The container must have full access to the host network (needed for mdns and Matter protocol).
|
|
75
75
|
|
|
76
76
|
```bash
|
|
77
77
|
sudo docker run --name matterbridge \
|
|
@@ -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