matterbridge 3.0.1-dev-20250501-4f463f9 → 3.0.1-dev-20250502-f374923

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
@@ -13,17 +13,23 @@ If you like this project and find it useful, please consider giving it a star on
13
13
  If you want to run Matterbridge in Home Assistant please use the official add-on https://github.com/Luligu/matterbridge-home-assistant-addon that also has Ingress and side panel.
14
14
  It is also available the official Matterbridge Home Assistant plugin https://github.com/Luligu/matterbridge-hass.
15
15
 
16
- ## New plugin matterbridge-webhooks
16
+ ## [3.0.1] - 2025-05-??
17
17
 
18
- A new plugin has been added: https://github.com/Luligu/matterbridge-webhooks
18
+ ### Added
19
19
 
20
- It allows you to expose any webhooks to Matter.
20
+ - [docker]: The builder for the **docker** image with tag **latest** will run each day at 00:00 UTC if there are new releases. Inside the image matterbridge and all plugins with the latest release (as published on npm) are already loaded. You can just pull the new image and matterbridge with all plugins will be the latest.
21
+ - [docker]: The builder for the **docker** image with tag **dev** will run each day at 00:00 UTC if there are new commits. Inside the image matterbridge and all plugins with the dev release (as pushed on GitHub) are already loaded. You can just pull the new image and matterbridge with all plugins will be the latest dev. It is possible that the devs are outdated by some published latests.
22
+ - [npm]: The dev of matterbridge is published with tag **dev** on **npm** each day at 00:00 UTC if there is a new commit. It is possible that the dev is outdated by a published latest.
23
+ - [frontend]: Added closeSnackbarMessage() to remove the notification with timeout = 0.
24
+ - [frontend]: Moved all plugin actions from express to web socket.
25
+ - [frontend]: Moved all config from express to web socket.
21
26
 
22
- Features:
27
+ ### Changed
23
28
 
24
- - The webhooks parameters can easily be entered in the frontend.
25
- - It is possible to choose the method: GET or POST.
26
- - The webhook can be tested directly in the frontend.
29
+ - [docker]: Updated the [Docker configurations](README-DOCKER.md).
30
+ - [frontend]: Changing configuration for a plugin now only lock configuration on that plugin.
31
+
32
+ ## [3.0.0] - 2025-04-29
27
33
 
28
34
  ## Breaking changes
29
35
 
@@ -38,8 +44,6 @@ Modified clusters:
38
44
 
39
45
  - OccupancySensing cluster.
40
46
 
41
- ## [3.0.0] - 2025-04-29
42
-
43
47
  ### Added
44
48
 
45
49
  - [addEndpoint]: Added an error handler with deep stack on aggregatorNode.add() and serverNode.add() calls.
@@ -56,7 +60,6 @@ Modified clusters:
56
60
  - [parameter]: Added getIntArrayParameter and getStringArrayParameter.
57
61
  - [frontend]: Added the view menu to load the logs directly in the browser.
58
62
  - [docker]: Optimized the dockerfiles and reduced the image size by 30%.
59
- - [docker]: The builder for the docker image with tag latest will run each day at 00:00 UTC. Inside the image all plugins with the latest release (as published on npm) are already loaded. You can just pull the new image and matterbridge with all plugins will be the latest.
60
63
 
61
64
  ### Changed
62
65
 
package/README-DOCKER.md CHANGED
@@ -16,7 +16,13 @@
16
16
 
17
17
  ## Run matterbridge with docker and docker compose
18
18
 
19
- 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.
19
+ 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**.
20
+
21
+ 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.
22
+
23
+ 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.
24
+
25
+ You can directly select and add a plugin without installing it.
20
26
 
21
27
  It is based on node:22-bookworm-slim and integrates the health check.
22
28
 
@@ -30,9 +36,12 @@ With docker run
30
36
 
31
37
  The health check still runs in the background, but:
32
38
  The container doesn’t restart automatically if it becomes unhealthy.
33
- You must manually check the health status:
34
39
 
40
+ You can manually check the health status:
41
+
42
+ ```bash
35
43
  docker exec -it matterbridge curl -v http://localhost:8283/health
44
+ ```
36
45
 
37
46
  ### First create the Matterbridge directories
38
47
 
@@ -40,9 +49,9 @@ This will create the required directories in your home directory if they don't e
40
49
 
41
50
  ```bash
42
51
  cd ~
43
- mkdir -p ./Matterbridge
44
- mkdir -p ./.matterbridge
45
- sudo chown -R $USER:$USER ./Matterbridge ./.matterbridge
52
+ mkdir -p ~/Matterbridge
53
+ mkdir -p ~/.matterbridge
54
+ sudo chown -R $USER:$USER ~/Matterbridge ~/.matterbridge
46
55
  ```
47
56
 
48
57
  You may need to adapt the script to your setup.
@@ -64,13 +73,11 @@ The container must have full access to the host network (needed for mdns).
64
73
 
65
74
  ```bash
66
75
  sudo docker run --name matterbridge \
67
- -v /home/<USER>/Matterbridge:/root/Matterbridge \
68
- -v /home/<USER>/.matterbridge:/root/.matterbridge \
76
+ -v ~/Matterbridge:/root/Matterbridge \
77
+ -v ~/.matterbridge:/root/.matterbridge \
69
78
  --network host --restart always -d luligu/matterbridge:latest
70
79
  ```
71
80
 
72
- Replace USER with your user name (i.e. ubuntu or pi).
73
-
74
81
  You may need to adapt the script to your setup.
75
82
 
76
83
  ### Run with docker compose
@@ -85,13 +92,11 @@ services:
85
92
  network_mode: host # Ensures the Matter mdns works
86
93
  restart: always # Ensures the container always restarts automatically
87
94
  volumes:
88
- - "/home/<USER>/Matterbridge:/root/Matterbridge" # Mounts the Matterbridge plugin directory
89
- - "/home/<USER>/.matterbridge:/root/.matterbridge" # Mounts the Matterbridge storage directory
95
+ - "${HOME}/Matterbridge:/root/Matterbridge" # Mounts the Matterbridge plugin directory
96
+ - "${HOME}/.matterbridge:/root/.matterbridge" # Mounts the Matterbridge storage directory
90
97
  ```
91
98
 
92
- Replace USER with your user name (i.e. ubuntu or pi: "/home/ubuntu/Matterbridge:/root/Matterbridge").
93
-
94
- copy it in the home directory or edit the existing one to add the matterbridge service.
99
+ Copy it in the home directory or edit the existing one to add the matterbridge service.
95
100
 
96
101
  Then start docker compose with:
97
102
 
@@ -99,6 +104,12 @@ Then start docker compose with:
99
104
  docker compose up -d
100
105
  ```
101
106
 
107
+ or start only the matterbridge container with:
108
+
109
+ ```bash
110
+ docker compose up -d matterbridge
111
+ ```
112
+
102
113
  ### Stop with docker compose
103
114
 
104
115
  ```bash
@@ -107,8 +118,11 @@ docker compose down
107
118
 
108
119
  ### Update with docker compose
109
120
 
121
+ This will pull the new matterbridge image and restart the matterbridge container.
122
+
110
123
  ```bash
111
- docker compose pull
124
+ docker compose pull matterbridge
125
+ docker compose up -d --no-deps matterbridge
112
126
  ```
113
127
 
114
128
  ### Inspect the container