matterbridge 3.9.3-dev-20260702-3a218d7 → 3.9.3

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
@@ -58,11 +58,11 @@ These classes will run as threads in the next releases:
58
58
  - all plugins in bridge mode;
59
59
  - each plugin in childbridge mode;
60
60
 
61
- ## [3.9.3] - Dev branch
61
+ ## [3.9.3] - 2026-07-03
62
62
 
63
63
  ### Warning
64
64
 
65
- The Docker run examples did not set a stop timeout. The new matter.js storage lock system needs Matterbridge to shut down cleanly, so without `--stop-timeout 60` Docker may kill the container before the lock is released. Docker Compose setups should use `stop_grace_period: 60s` for the same reason.
65
+ The Docker run examples did not set a stop timeout. The new matter.js storage lock system needs Matterbridge to shut down cleanly, so without `--stop-timeout 60` Docker may kill the container before the lock is released. Docker Compose setups should use `stop_grace_period: 60s` for the same reason. The docker guide has been updated.
66
66
 
67
67
  Please update your setup.
68
68
 
@@ -77,6 +77,7 @@ Please update your setup.
77
77
  - [bun]: The bun local docker image now runs from src files. No build is done.
78
78
  - [utils]: Add writeDiagnostic() in utils package.
79
79
  - [bun]: Add bunAvailable() in runtimeBun.ts.
80
+ - [s6-rc]: Add a timeout-kill of 55 secs to the s6-rc images (same reason as the `--stop-timeout 60` in Docker run and Docker compose).
80
81
 
81
82
  ### Changed
82
83
 
@@ -93,6 +94,7 @@ Please update your setup.
93
94
  - [bun]: Change bun install param from --production to --omit=dev to avoid the frozen lock.
94
95
  - [thread]: Refactor Docker, npm and GitHub version check timeout handling and warn when Docker Hub rate limits version lookups.
95
96
  - [typecheck]: Refactor typecheck tsconfig.json.
97
+ - [service]: Update service configuration guides.
96
98
 
97
99
  - [codex]: Update config to v.1.0.1.
98
100
 
@@ -102,7 +104,7 @@ Please update your setup.
102
104
  ### Fixed
103
105
 
104
106
  - [thread]: Add worker-local unhandled rejection and uncaught exception guards, and count failed worker exits as thread errors.
105
- - [docs]: Fix wrong path for the frontend ceertificates: place certificates in the `.matterbridge/certs` directory.
107
+ - [docs]: Fix wrong path for the frontend certificates: place certificates in the `.matterbridge/certs` directory.
106
108
 
107
109
  <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
108
110
 
@@ -186,7 +186,7 @@ sudo systemctl disable matterbridge.service
186
186
  sudo journalctl -u matterbridge.service -n 1000 -f --output cat
187
187
  ```
188
188
 
189
- ### Delete the logs older then 3 days (all of them not only the ones of Matterbridge!)
189
+ ### Delete the logs older than 3 days (all of them not only the ones of Matterbridge!)
190
190
 
191
191
  Check the space used
192
192
 
@@ -194,7 +194,7 @@ Check the space used
194
194
  sudo journalctl --disk-usage
195
195
  ```
196
196
 
197
- remove all log older then 3 days
197
+ remove all log older than 3 days
198
198
 
199
199
  ```bash
200
200
  sudo journalctl --rotate
@@ -222,14 +222,15 @@ MaxRetentionSec=3days
222
222
  MaxFileSec=1day
223
223
  # Disable forwarding to syslog to prevent duplicate logging.
224
224
  ForwardToSyslog=no
225
- # Limit persistent logs in /var/log/journal to 100 MB.
225
+ # Limit persistent (disk) logs in /var/log/journal to 100 MB.
226
226
  SystemMaxUse=100M
227
- # Limit runtime logs in /run/log/journal to 100 MB.
227
+ # Limit runtime (memory) logs in /run/log/journal to 100 MB.
228
228
  RuntimeMaxUse=100M
229
229
  ```
230
230
 
231
- save it and run
231
+ save it and check if other configs override yours:
232
232
 
233
233
  ```bash
234
234
  sudo systemctl restart systemd-journald
235
+ sudo systemd-analyze cat-config systemd/journald.conf
235
236
  ```
@@ -226,7 +226,7 @@ sudo systemctl disable matterbridge
226
226
  sudo journalctl -u matterbridge -n 1000 -f --output cat
227
227
  ```
228
228
 
229
- ### Delete the logs older then 3 days (all of them not only the ones of Matterbridge!)
229
+ ### Delete the logs older than 3 days (all of them not only the ones of Matterbridge!)
230
230
 
231
231
  Check the space used
232
232
 
@@ -234,7 +234,7 @@ Check the space used
234
234
  sudo journalctl --disk-usage
235
235
  ```
236
236
 
237
- remove all log older then 3 days
237
+ remove all log older than 3 days
238
238
 
239
239
  ```bash
240
240
  sudo journalctl --rotate
@@ -262,14 +262,15 @@ MaxRetentionSec=3days
262
262
  MaxFileSec=1day
263
263
  # Disable forwarding to syslog to prevent duplicate logging.
264
264
  ForwardToSyslog=no
265
- # Limit persistent logs in /var/log/journal to 100 MB.
265
+ # Limit persistent (disk) logs in /var/log/journal to 100 MB.
266
266
  SystemMaxUse=100M
267
- # Limit runtime logs in /run/log/journal to 100 MB.
267
+ # Limit runtime (memory) logs in /run/log/journal to 100 MB.
268
268
  RuntimeMaxUse=100M
269
269
  ```
270
270
 
271
- save it and run
271
+ save it and check if other configs override yours:
272
272
 
273
273
  ```bash
274
274
  sudo systemctl restart systemd-journald
275
+ sudo systemd-analyze cat-config systemd/journald.conf
275
276
  ```
package/README-SERVICE.md CHANGED
@@ -65,6 +65,7 @@ You may need to adapt the configuration to your setup:
65
65
  [Unit]
66
66
  Description=matterbridge
67
67
  After=network-online.target
68
+ Wants=network.target
68
69
  StartLimitIntervalSec=60
69
70
  StartLimitBurst=5
70
71
 
@@ -161,7 +162,7 @@ sudo systemctl disable matterbridge.service
161
162
  sudo journalctl -u matterbridge.service -n 1000 -f --output cat
162
163
  ```
163
164
 
164
- ### Delete the logs older then 3 days (all of them not only the ones of Matterbridge!)
165
+ ### Delete the logs older than 3 days (all of them not only the ones of Matterbridge!)
165
166
 
166
167
  Check the space used
167
168
 
@@ -169,7 +170,7 @@ Check the space used
169
170
  sudo journalctl --disk-usage
170
171
  ```
171
172
 
172
- remove all log older then 3 days
173
+ remove all log older than 3 days
173
174
 
174
175
  ```bash
175
176
  sudo journalctl --rotate
@@ -197,16 +198,17 @@ MaxRetentionSec=3days
197
198
  MaxFileSec=1day
198
199
  # Disable forwarding to syslog to prevent duplicate logging.
199
200
  ForwardToSyslog=no
200
- # Limit persistent logs in /var/log/journal to 100 MB.
201
+ # Limit persistent (disk) logs in /var/log/journal to 100 MB.
201
202
  SystemMaxUse=100M
202
- # Limit runtime logs in /run/log/journal to 100 MB.
203
+ # Limit runtime (memory) logs in /run/log/journal to 100 MB.
203
204
  RuntimeMaxUse=100M
204
205
  ```
205
206
 
206
- save it and run:
207
+ save it and check if other configs override yours:
207
208
 
208
209
  ```bash
209
210
  sudo systemctl restart systemd-journald
211
+ sudo systemd-analyze cat-config systemd/journald.conf
210
212
  ```
211
213
 
212
214
  ## Verify that with your distro you can run sudo npm install -g matterbridge without the password
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.9.3-dev-20260702-3a218d7",
3
+ "version": "3.9.3",
4
4
  "description": "Matterbridge plugin manager for Matter",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -208,24 +208,24 @@
208
208
  ]
209
209
  },
210
210
  "dependencies": {
211
- "@matterbridge/core": "3.9.3-dev-20260702-3a218d7",
212
- "@matterbridge/dgram": "3.9.3-dev-20260702-3a218d7",
213
- "@matterbridge/jest-utils": "3.9.3-dev-20260702-3a218d7",
214
- "@matterbridge/thread": "3.9.3-dev-20260702-3a218d7",
215
- "@matterbridge/types": "3.9.3-dev-20260702-3a218d7",
216
- "@matterbridge/utils": "3.9.3-dev-20260702-3a218d7",
217
- "@matterbridge/vitest-utils": "3.9.3-dev-20260702-3a218d7",
211
+ "@matterbridge/core": "3.9.3",
212
+ "@matterbridge/dgram": "3.9.3",
213
+ "@matterbridge/jest-utils": "3.9.3",
214
+ "@matterbridge/thread": "3.9.3",
215
+ "@matterbridge/types": "3.9.3",
216
+ "@matterbridge/utils": "3.9.3",
217
+ "@matterbridge/vitest-utils": "3.9.3",
218
218
  "node-ansi-logger": "3.3.0",
219
219
  "node-persist-manager": "2.1.0"
220
220
  },
221
221
  "build": {
222
222
  "version": "3.9.3",
223
- "sha": "db1ca218a4b2a9ffa6e131adae1953e646d715b2",
224
- "sha7": "db1ca21",
225
- "event": "schedule",
223
+ "sha": "f23e4307b64dbac15c134ac2e1797d2aebb74fd0",
224
+ "sha7": "f23e430",
225
+ "event": "release",
226
226
  "workflow": "Publish to npm and trigger docker builds",
227
227
  "type": "branch",
228
- "name": "dev",
229
- "dev": "true"
228
+ "name": "main",
229
+ "dev": "false"
230
230
  }
231
231
  }