matterbridge 3.0.1-dev-20250430-a3ea2b7 → 3.0.1-dev-20250502-6d36575

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,21 @@ 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. 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. 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 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 published latest.
23
+ - [frontend]: Added closeSnackbarMessage() to remove the notification with timeout = 0.
24
+ - [frontend]: Moved plugin actions from express to web socket.
21
25
 
22
- Features:
26
+ ### Changed
23
27
 
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.
28
+ - [docker]: Updated the [Docker configurations](README-DOCKER.md).
29
+
30
+ ## [3.0.0] - 2025-04-29
27
31
 
28
32
  ## Breaking changes
29
33
 
@@ -38,8 +42,6 @@ Modified clusters:
38
42
 
39
43
  - OccupancySensing cluster.
40
44
 
41
- ## [3.0.0] - 2025-04-29
42
-
43
45
  ### Added
44
46
 
45
47
  - [addEndpoint]: Added an error handler with deep stack on aggregatorNode.add() and serverNode.add() calls.
@@ -56,7 +58,6 @@ Modified clusters:
56
58
  - [parameter]: Added getIntArrayParameter and getStringArrayParameter.
57
59
  - [frontend]: Added the view menu to load the logs directly in the browser.
58
60
  - [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
61
 
61
62
  ### Changed
62
63
 
package/README-DOCKER.md CHANGED
@@ -16,7 +16,11 @@
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.
20
24
 
21
25
  It is based on node:22-bookworm-slim and integrates the health check.
22
26
 
@@ -30,9 +34,12 @@ With docker run
30
34
 
31
35
  The health check still runs in the background, but:
32
36
  The container doesn’t restart automatically if it becomes unhealthy.
33
- You must manually check the health status:
34
37
 
38
+ You can manually check the health status:
39
+
40
+ ```bash
35
41
  docker exec -it matterbridge curl -v http://localhost:8283/health
42
+ ```
36
43
 
37
44
  ### First create the Matterbridge directories
38
45
 
@@ -40,9 +47,9 @@ This will create the required directories in your home directory if they don't e
40
47
 
41
48
  ```bash
42
49
  cd ~
43
- mkdir -p ./Matterbridge
44
- mkdir -p ./.matterbridge
45
- sudo chown -R $USER:$USER ./Matterbridge ./.matterbridge
50
+ mkdir -p ~/Matterbridge
51
+ mkdir -p ~/.matterbridge
52
+ sudo chown -R $USER:$USER ~/Matterbridge ~/.matterbridge
46
53
  ```
47
54
 
48
55
  You may need to adapt the script to your setup.
@@ -64,13 +71,11 @@ The container must have full access to the host network (needed for mdns).
64
71
 
65
72
  ```bash
66
73
  sudo docker run --name matterbridge \
67
- -v /home/<USER>/Matterbridge:/root/Matterbridge \
68
- -v /home/<USER>/.matterbridge:/root/.matterbridge \
74
+ -v ~/Matterbridge:/root/Matterbridge \
75
+ -v ~/.matterbridge:/root/.matterbridge \
69
76
  --network host --restart always -d luligu/matterbridge:latest
70
77
  ```
71
78
 
72
- Replace USER with your user name (i.e. ubuntu or pi).
73
-
74
79
  You may need to adapt the script to your setup.
75
80
 
76
81
  ### Run with docker compose
@@ -85,13 +90,11 @@ services:
85
90
  network_mode: host # Ensures the Matter mdns works
86
91
  restart: always # Ensures the container always restarts automatically
87
92
  volumes:
88
- - "/home/<USER>/Matterbridge:/root/Matterbridge" # Mounts the Matterbridge plugin directory
89
- - "/home/<USER>/.matterbridge:/root/.matterbridge" # Mounts the Matterbridge storage directory
93
+ - "${HOME}/Matterbridge:/root/Matterbridge" # Mounts the Matterbridge plugin directory
94
+ - "${HOME}/.matterbridge:/root/.matterbridge" # Mounts the Matterbridge storage directory
90
95
  ```
91
96
 
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.
97
+ Copy it in the home directory or edit the existing one to add the matterbridge service.
95
98
 
96
99
  Then start docker compose with:
97
100
 
@@ -99,6 +102,12 @@ Then start docker compose with:
99
102
  docker compose up -d
100
103
  ```
101
104
 
105
+ or start only the matterbridge container with:
106
+
107
+ ```bash
108
+ docker compose up -d matterbridge
109
+ ```
110
+
102
111
  ### Stop with docker compose
103
112
 
104
113
  ```bash
@@ -107,8 +116,11 @@ docker compose down
107
116
 
108
117
  ### Update with docker compose
109
118
 
119
+ This will pull the new matterbridge image and restart the matterbridge container.
120
+
110
121
  ```bash
111
- docker compose pull
122
+ docker compose pull matterbridge
123
+ docker compose up -d --no-deps matterbridge
112
124
  ```
113
125
 
114
126
  ### Inspect the container
package/dist/cli.js CHANGED
File without changes