matterbridge 1.3.4 → 1.3.6

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.
Files changed (46) hide show
  1. package/CHANGELOG.md +615 -551
  2. package/README.md +643 -594
  3. package/dist/cluster/ElectricalEnergyMeasurementCluster.js +1 -1
  4. package/dist/cluster/ElectricalEnergyMeasurementCluster.js.map +1 -1
  5. package/dist/cluster/ElectricalPowerMeasurementCluster.js +10 -10
  6. package/dist/cluster/ElectricalPowerMeasurementCluster.js.map +1 -1
  7. package/dist/index.d.ts.map +1 -1
  8. package/dist/index.js +0 -2
  9. package/dist/index.js.map +1 -1
  10. package/dist/logger/export.d.ts +2 -0
  11. package/dist/logger/export.d.ts.map +1 -0
  12. package/dist/logger/export.js +2 -0
  13. package/dist/logger/export.js.map +1 -0
  14. package/dist/matterbridge.d.ts +7 -0
  15. package/dist/matterbridge.d.ts.map +1 -1
  16. package/dist/matterbridge.js +248 -320
  17. package/dist/matterbridge.js.map +1 -1
  18. package/dist/matterbridgeController.d.ts.map +1 -1
  19. package/dist/matterbridgeController.js +0 -3
  20. package/dist/matterbridgeController.js.map +1 -1
  21. package/dist/matterbridgeDevice.d.ts +213 -4
  22. package/dist/matterbridgeDevice.d.ts.map +1 -1
  23. package/dist/matterbridgeDevice.js +133 -46
  24. package/dist/matterbridgeDevice.js.map +1 -1
  25. package/dist/storage/export.d.ts +2 -0
  26. package/dist/storage/export.d.ts.map +1 -0
  27. package/dist/storage/export.js +2 -0
  28. package/dist/storage/export.js.map +1 -0
  29. package/dist/utils/colorUtils.d.ts +61 -0
  30. package/dist/utils/colorUtils.d.ts.map +1 -0
  31. package/dist/utils/colorUtils.js +313 -0
  32. package/dist/utils/colorUtils.js.map +1 -0
  33. package/dist/utils/utils.d.ts +73 -0
  34. package/dist/utils/utils.d.ts.map +1 -0
  35. package/dist/utils/utils.js +266 -0
  36. package/dist/utils/utils.js.map +1 -0
  37. package/dist/utils.d.ts +1 -0
  38. package/dist/utils.d.ts.map +1 -1
  39. package/dist/utils.js +4 -0
  40. package/dist/utils.js.map +1 -1
  41. package/frontend/build/asset-manifest.json +3 -3
  42. package/frontend/build/index.html +1 -1
  43. package/frontend/build/static/js/{main.cbfc6c9b.js → main.c3b5dfce.js} +3 -3
  44. package/frontend/build/static/js/{main.cbfc6c9b.js.map → main.c3b5dfce.js.map} +1 -1
  45. package/package.json +57 -21
  46. /package/frontend/build/static/js/{main.cbfc6c9b.js.LICENSE.txt → main.c3b5dfce.js.LICENSE.txt} +0 -0
package/CHANGELOG.md CHANGED
@@ -1,551 +1,615 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- ## [1.3.4] - 2024-06-23
6
-
7
- ### Fixed
8
- - [matterbridge]: Fixed exports
9
-
10
- <a href="https://www.buymeacoffee.com/luligugithub">
11
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
12
- </a>
13
-
14
- ## [1.3.3] - 2024-06-22
15
-
16
- ### Changed
17
- - [matterbridge]: Updated dependencies
18
- - [matterbridge]: When a plugin is in an error state, the bridge does not start to avoid causing the controllers to delete the registered devices and lose the configuration (e.g. room and automations).
19
-
20
- <a href="https://www.buymeacoffee.com/luligugithub">
21
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
22
- </a>
23
-
24
- ## [1.3.2] - 2024-06-22
25
-
26
- New plugin
27
-
28
- [shelly](https://github.com/Luligu/matterbridge-shelly)
29
-
30
- Matterbridge shelly allows you to expose Shelly Gen 1, Gen 2, and Gen 3 devices to Matter.
31
-
32
- Features:
33
-
34
- - Shellies are automatically discovered using mDNS.
35
- - Discovered shellies are stored in local storage for quick loading on startup.
36
- - In this first release, the components exposed are lights (with brightness), switches, rollers and power meters (with EveHistory electrical measurements).
37
- - Shellies are controlled locally, eliminating the need for cloud or MQTT (which can be disabled).
38
- - Shelly Gen 1 devices are controlled using the CoIoT protocol (see the note below).
39
- - Shelly Gen 2 and Gen 3 devices are controlled using WebSocket.
40
- - The Matter device takes the name configured in the Shelly device's web page.
41
- - A 10-minute timer checks if the device has reported in that time.
42
-
43
- ### Added
44
- - [matterbridgeDevice]: Added all clusters for airQualitySensor:
45
- CarbonMonoxideConcentrationMeasurement,
46
- CarbonDioxideConcentrationMeasurement,
47
- NitrogenDioxideConcentrationMeasurement,
48
- OzoneConcentrationMeasurement,
49
- FormaldehydeConcentrationMeasurement,
50
- Pm1ConcentrationMeasurement,
51
- Pm25ConcentrationMeasurement,
52
- Pm10ConcentrationMeasurement,
53
- RadonConcentrationMeasurement,
54
-
55
- ### Changed
56
- - [matterbridge]: Updated dependencies
57
- - [matter.js]: Updated matter.js to 0.9.2
58
-
59
- <a href="https://www.buymeacoffee.com/luligugithub">
60
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
61
- </a>
62
-
63
- ## [1.3.1] - 2024-06-20
64
-
65
- ### Changed
66
- - [matterbridge]: Updated dependencies
67
- - [matterbridge]: Refactor the loading of schemas, now they load from the plugin directory.
68
- - [matterbridge]: Moved getPluginVersion to the start also for disabled plugins.
69
-
70
- <a href="https://www.buymeacoffee.com/luligugithub">
71
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
72
- </a>
73
-
74
- ## [1.3.0] - 2024-06-16
75
-
76
- This release is all about Matter 1.3
77
-
78
- If you are wondering whether the controllers already support Matter 1.3, the answer is unfortunately no.
79
-
80
- Only Home Automation supports:
81
- - airQualitySensor (Matter 1.2)
82
-
83
- and (probably only like BooleanState cluster)
84
- - waterFreezeDetector (Matter 1.3)
85
- - waterLeakDetector (Matter 1.3)
86
- - rainSensor (Matter 1.3)
87
-
88
- ### Changed
89
- - [matterbridge]: Updated dependencies
90
- - [matterbridge]: Default config and schema for the new plugin matterbridge-shelly (will be published after this release)
91
-
92
- ### Added
93
- - [matterbridgeDevice]: Added waterFreezeDetector, waterLeakDetector, rainSensor, smokeCoAlarm, electricalSensor and deviceEnergyManagement device types as conformance to Matter 1.3
94
- - [matterbridgeDevice]: Added all clusters needed for the above Matter 1.3 device types
95
- - [matterbridgeDevice]: Added FanControl cluster (rev. 2) helper methods for the Fan device type
96
- - [matterbridge]: Added parameter -matterlogger [debug | info | notice | warn | error | fatal] to set the matter.js Logger separately from the Matterbridge log
97
- - [frontend]: Added logger level settings to reflect -matterlogger [debug | info | notice | warn | error | fatal]
98
-
99
- <a href="https://www.buymeacoffee.com/luligugithub">
100
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
101
- </a>
102
-
103
- ## [1.2.22] - 2024-06-04
104
-
105
- ### Changed
106
- - [matterbridge]: Updated dependencies
107
- - [matterbridge]: Default config and schema for the new plugin matterbridge-shelly
108
-
109
- <a href="https://www.buymeacoffee.com/luligugithub">
110
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
111
- </a>
112
-
113
- ## [1.2.21] - 2024-06-04
114
-
115
- ### Changed
116
- - [matterbridge]: Updated dependencies
117
-
118
- ### Fixed
119
- - [matterbridge]: Removed error stack from log error for npm get versions
120
- - [matterbridge]: Fixed the error that caused -add plugin to fail at the first run of matterbridge
121
-
122
- <a href="https://www.buymeacoffee.com/luligugithub">
123
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
124
- </a>
125
-
126
- ## [1.2.20] - 2024-06-03
127
-
128
- ### Changed
129
- - [matter.js]: Update to @project-chip/matter-node.js v. 0.9.1
130
- - [matterbridge]: Updated dependencies
131
-
132
- ### Fixed
133
- - [matterbridge]: Log level of Plugin already configured is now info
134
-
135
- <a href="https://www.buymeacoffee.com/luligugithub">
136
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
137
- </a>
138
-
139
- ## [1.2.19] - 2024-06-01
140
-
141
- ### Breaking change on Matterbridge start!
142
- Now the plugins load and start before the controller connects.
143
- A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his help testing all controllers.
144
-
145
- ### Changed
146
- - [matterbridge]: In bridge mode the plugins are loaded and started immediately
147
- - [matterbridge]: In child bridge mode the plugins are loaded and started immediately
148
- - [matterbridge]: Updated dependencies
149
-
150
- ### Fixed
151
- - [frontend]: Fixed the error badge in the registered plugins window
152
- - [frontend]: Added tooltip to the plugin update badge in the registered plugins window
153
-
154
- <a href="https://www.buymeacoffee.com/luligugithub">
155
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
156
- </a>
157
-
158
- ## [1.2.18] - 2024-05-28
159
-
160
- ### Changed
161
- - [matterbridgeDevice]: bridgedNode and powerSource device types as conformance to Matter 1.3
162
-
163
- ### Fixed
164
- - [matterbridge]: Fixed /api/settings error after resetting commissioning server
165
- - [matterbridge]: Added error message and clean shutdown when WebSocketServer or ExpressServer ports are already in use
166
-
167
- ### Added
168
- - [frontend]: Added a dropdown menu in Add Remove plugin to select the plugins
169
-
170
- <a href="https://www.buymeacoffee.com/luligugithub">
171
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
172
- </a>
173
-
174
- ## [1.2.17] - 2024-05-25
175
-
176
- ### Fixed
177
- - [matterbridge]: Fixed the issue causing the commissioning reset for all fabrics when only one is removed. (Apple uses 2 fabrics: Home app and Key chain).
178
-
179
- ### Changed
180
- - [matterbridge]: Preliminary integration for the new matterbridge-shelly plugin (still not published)
181
- - [matterbridge]: Updated dependencies
182
- - [matterbridge]: Moved eslint to @typescript-eslint/strict and @typescript-eslint/stylistic
183
-
184
- ### Added
185
- - [frontend]: Fetch data in Home page every minute
186
- - [device]: Added new method addClusterServerFromList
187
- - [device]: Added ModeSelectClusterServer (only for testing)
188
- - [matterbridge]: Added fabric info in the log on startup
189
- - [matterbridge]: Added vendorId for Alexa
190
-
191
- <a href="https://www.buymeacoffee.com/luligugithub">
192
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
193
- </a>
194
-
195
- ## [1.2.16] - 2024-05-15
196
-
197
- ### Changed
198
- - [matter.js]: Update to @project-chip/matter-node.js v. 0.9.0
199
-
200
- ### Added
201
-
202
- - [frontend]: Frontend updated to 1.0.0.
203
- - [frontend]: Added check version interval.
204
- - [frontend]: Added help and version information icons for plugins.
205
- - [frontend]: Added version information for Matterbridge (Click on the version badge).
206
- - [frontend]: Added help badge for Matterbridge.
207
- - [frontend]: Added version information badge for Matterbridge.
208
-
209
- <a href="https://www.buymeacoffee.com/luligugithub">
210
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
211
- </a>
212
-
213
- ## [1.2.15] - 2024-05-14
214
-
215
- ### Added
216
-
217
- - [frontend]: Added sponsor link in Header.
218
- - [frontend]: Added sponsor link in the plugin list.
219
-
220
- ### Fixed
221
-
222
- - [frontend]: Fixed the case when the latest version of Matterbridge or a plugin is not available.
223
-
224
- <a href="https://www.buymeacoffee.com/luligugithub">
225
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
226
- </a>
227
-
228
-
229
- ## [1.2.14] - 2024-05-09
230
-
231
- ### Added
232
-
233
- - [frontend]: Frontend updated to 0.9.0.
234
- - [frontend]: Added Plugin config editor
235
- - [frontend]: Added tool column to registered plugins with QRCode, Config, Remove and Enable/Disable
236
- - [frontend]: Removed Shutdown button when Matterbridge runs as a service or with docker
237
- - [frontend]: Added Error state to registered plugins
238
-
239
- <a href="https://www.buymeacoffee.com/luligugithub">
240
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
241
- </a>
242
-
243
- ## [1.2.13] - 2024-05-05
244
-
245
- ### Added
246
-
247
- - [frontend]: Added plugin version check (you can update from the badge)
248
- - [frontend]: Added tooltip to plugin name showing plugin path
249
- - [matterbridge]: The plugin config file is no more saved on shutdown.
250
- - [matterbridge]: Added plugin version check
251
- - [frontend]: When you install a plugin now it is also added
252
- - [frontend]: Added current and latest release to the badge in the Header section (you can update from the badge)
253
- - [docker]: Added the docker image:dev on the docker hub with architectures: linux/amd64, linux/arm64, linux/arm/v7
254
-
255
- <a href="https://www.buymeacoffee.com/luligugithub">
256
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
257
- </a>
258
-
259
- ## [1.2.12] - 2024-04-30
260
-
261
- ### Added
262
-
263
- - [frontend]: Added the device child enpoints to the table in the Devices page
264
- - [docker]: Added architectures to the docker image on the docker hub: linux/amd64, linux/arm64
265
- - [frontend]: Frontend updated to 0.8.9.
266
- - [frontend]: Added error in the logger level on the Settings page.
267
- - [frontend]: Added unregister all devices in the Settings page. Matterbridge will shutdown to allow unregistering.
268
- - [frontend]: Added reset in the Settings page. Matterbridge will shutdown to allow the reset.
269
- - [frontend]: Added factoryreset in the Settings page. Matterbridge will shutdown to allow the factoryreset.
270
-
271
- <a href="https://www.buymeacoffee.com/luligugithub">
272
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
273
- </a>
274
-
275
- ## [1.2.11] - 2024-04-25
276
-
277
- ### Added
278
-
279
- - [matterbridge]: Added user to system information.
280
- - [frontend]: Persist the filter selection (debug level and search criteria) in the Logs route.
281
- - [frontend]: Added on the header the version and two badges for bridgeMode and restartMode.
282
- - [frontend]: Frontend updated to 0.8.8.
283
- - [docker]: Added support for docker (BETA). The Matterbridge image is published on the docker hub.
284
- - [docker]: See the guidelines on https://github.com/Luligu/matterbridge?tab=readme-ov-file#Run-the-Docker-container-and-start-it.
285
- - [docker compose]: See the guidelines on https://github.com/Luligu/matterbridge?tab=readme-ov-file#Run-with-docker-compose.
286
-
287
- ### Fixed
288
-
289
- - [matterbridge]: Fixed the case when a plugin throws errors.
290
-
291
- ### New plugin
292
-
293
- - Matterbridge Somfy Tahoma https://github.com/Luligu/matterbridge-somfy-tahoma
294
-
295
- ## [1.2.10] - 2024-04-23
296
-
297
- ### Added
298
-
299
- - [extension]: Finalized implementation of zigbee2MQTT internal extension v. 1.0.0.
300
-
301
-
302
- ## [1.2.9] - 2024-04-19
303
-
304
- ### Added
305
-
306
- - [Matterbridge]: Added call to set reachability at start.
307
-
308
- ### Added
309
-
310
- - [Matterbridge]: Added call to set reachability at start.
311
- - [frontend]: Added filter for log level and search criteria in the Logs page.
312
- - [frontend]: Added colors to the logs in the Home page and in the Logs page.
313
- - [frontend]: Frontend updated to 0.8.7.
314
-
315
- ### Fixed
316
-
317
- - [logs]: Fixed wss for some browser that didn't connect to wss.
318
-
319
- ## [1.2.8] - 2024-04-16
320
-
321
- ### Changed
322
- - [matter.js]: Update to @project-chip/matter-node.js v. 0.8.1
323
-
324
- ### Added
325
-
326
- - [frontend]: Added logs in the Home page and in the Log page.
327
- - [frontend]: Frontend got updated to 0.8.6.
328
- - [frontend]: Added log for update and plugin install.
329
- - [extension]: Started implementation of zigbee2MQTT internal extension.
330
-
331
- ### Fixed
332
-
333
- - [spawn]: Fixed under windows.
334
-
335
- ## [1.2.7] - 2024-04-14
336
-
337
- ### Changed
338
-
339
- - [matterbridge]: The default frontend port is now 8283!.
340
- - [matterbridge.service]: Updated matterbridge.service instructions to fix restart when Matterbridge runs as a daemon with systemctl.
341
-
342
- ### Added
343
-
344
- - [frontend]: Added manual pairing code. Allows to pair Matterbridge without using the phone.
345
- - [MatterbridgeDevice]: Added api to create child endpoints (see matterbridge-example-dynamic-platform).
346
- - [MatterbridgeDevice]: Added FlowMeasurement cluster.
347
-
348
- ## [1.2.6] - 2024-04-11
349
-
350
- ### Added
351
-
352
- - [matterbridge]: Added -factoryreset parameter to factory reset Matterbridge (see the readme.md for more explanations).
353
- - [matterbridge]: Added -reset parameter to reset the commissioning of Matterbridge (bridge mode).
354
- - [matterbridge]: Added -reset [plugin] parameter to reset the commissioning of a plugin (childbridge mode).
355
- - [matterbridge]: Added -port [port] parameter to set the starting port for the commissioning servers (both bridge and childbridge modes).
356
-
357
- ### Changed
358
-
359
- - [matterbridge.service]: Updated matterbridge.service instructions that fix network start issue with systemctl on Linux.
360
-
361
- ### Fixed
362
-
363
- - [frontend]: Added sudo to the spawned command to execute update and install from frontend (for Linux this may be necessary).
364
- - [childbridge mode]: Fixed a syncronize issue on the start.
365
-
366
-
367
- ## [1.2.5] - 2024-04-08
368
-
369
- ### Added
370
- - [frontend]: Added update Matterbridge (spawn the command: 'npm -install -g matterbridge'). The console inherit the the spawned process running so you can check.
371
- - [frontend]: Added install plugin (spawn the command: 'npm -install -g plugin-name'). The console inherit the the spawned process running so you can check.
372
- - [frontend]: Added shutdown button.
373
- - [frontend]: Added login with password (default no password). Change the password in the Settings page of frontend.
374
- - [frontend]: Frontend got updated to 0.8.5.
375
- - [Matterbridge]: Added configuration and guidelines in the readme to run Matterbridge like a daemon with systemctl on Linux machine.
376
-
377
- ## [1.2.4] - 2024-04-01
378
-
379
- ### Changed
380
- - [matter.js]: Updated the code to matter.js release 0.80.0.
381
-
382
- ### Added
383
- - [MatterbridgeDevice]: Added DoorLock and Thermostat clusters.
384
-
385
- ## [1.2.3] - 2024-03-28
386
-
387
- ### Added
388
-
389
- - [Matterbridge]: Enable plugin now start the plugin (no need to restart in bridge mode).
390
- - [Matterbridge]: Disable plugin now shutdown the plugin (no need to restart).
391
-
392
- ## [1.2.2] - 2024-03-26
393
-
394
- ### Added
395
-
396
- - [MatterbridgeDevice]: Added Cluster DoorLock and command handler.
397
-
398
- ## [1.2.1] - 2024-03-25
399
-
400
- ### Added
401
-
402
- - [frontend]: Remove plugin from frontend.
403
- - [frontend]: Add plugin from frontend.
404
- - [workflow]: All packages now have a workflow on GitHub.
405
- - [frontend]: Frontend got updated to 0.8.4.
406
-
407
- ### Fixed
408
-
409
- - [frontend]: Fixed the restart needed message.
410
- - [matterbridge]: Fixed the delay of loading from the cli.
411
- - [matterbridge]: Fixed the count of devices removed.
412
-
413
- ## [1.2.0] - 2024-03-23
414
-
415
- ### Breaking change on plugin default entry point and platform constructor!
416
- - [plugin default entry point]: export default function initializePlugin(matterbridge: Matterbridge, log: AnsiLogger, config: PlatformConfig)
417
- - [platform constructor]: constructor(matterbridge: Matterbridge, log: AnsiLogger, config: PlatformConfig)
418
-
419
- ### Added
420
-
421
- - [platform]: Added async loadPluginConfig() and async savePluginConfig() to store plugin config.
422
- - [platform]: Added: config: PlatformConfig (JSON) property to platforms to store plugin config.
423
-
424
- ### Changed
425
-
426
- - [dependencies]: Updated dependencies.
427
-
428
- ## [1.1.11] - 2024-03-19
429
-
430
- ### Added
431
-
432
- - [frontend]: Frontend got updated to 0.8.3.
433
-
434
- ## [1.1.10] - 2024-03-17
435
-
436
- ### Added
437
-
438
- - [matterbridge]: added unregisterAllDevices() to the platforms
439
- - [matterbridge]: added unregisterDevice(device: MatterbridgeDevice) to the platforms
440
- - [frontend]: Enable and disable plugin are now available. Restart Matteerbridge after.
441
- - [frontend]: Frontend got updated to 0.8.2.
442
-
443
- ## [1.1.9] - 2024-03-16
444
-
445
- ### Added
446
-
447
- - [frontend]: Selecting a plugin in the home page show the corresponding QR code.
448
- - [frontend]: Settings page now controll the global logger level.
449
- - [frontend]: Restart from the header is available.
450
- - [frontend]: Frontend got updated to 0.8.1.
451
-
452
- ## [1.1.8] - 2024-03-15
453
-
454
- ### Added
455
-
456
- - [cli]: Resolve the plugin name from absolute or relative path or from globally installed modules (see the help).
457
- - [frontend]: Added some fancy stuff still not visible.
458
-
459
- ### Fixed
460
-
461
- - [install]: Fixed the error caused when the controllers disconnect and connect again.
462
-
463
- ## [1.1.7] - 2024-03-14
464
-
465
- ### Fixed
466
-
467
- - [install]: Fixed the install error (thanks https://github.com/khaidakin).
468
-
469
- ## [1.1.6] - 2024-03-14
470
-
471
- ### Added
472
-
473
- - [async]: Plugins are loaded started configured fully asyncronously.
474
- - [frontend]: Added configured button.
475
-
476
- ## [1.1.5] - 2024-03-12
477
-
478
- ### Added
479
-
480
- - [debug]: Added public property enableDebug to Matterbridge.
481
- - [debug]: Added parameter -debug to the command line.
482
-
483
- ### Fixed
484
-
485
- - [plugin]: Fixed the plugin.paired and plugin.commissioned in bridge mode.
486
- - [routes]: Fixed the plugin devices route.
487
- - [bridge]: Fixed the BasicInformationCluster in bridge mode.
488
-
489
- ## [1.1.4] - 2024-03-10
490
-
491
- ### Changed
492
-
493
- - [cli]: Updated the loading from cli.
494
-
495
-
496
- ## [1.1.3] - 2024-03-10
497
-
498
- ### Added
499
-
500
- - [onMatterStarted]: onMatterStarted() is called after matter server started.
501
- - [onConfigure]: onConfigure() is called after the platform controller is commissioned.
502
-
503
- ### Changed
504
-
505
- - [dependencies]: Updated dependencies.
506
-
507
- ### Fixed
508
-
509
- - [Plugin route]: Fixed the plugin device route in frontend.
510
-
511
- ## [1.1.2] - 2024-03-08
512
-
513
- ### Added
514
-
515
- - [async]: All code is asyncronous where it makes sense.
516
- - [JSDoc]: Added JSDoc to the code.
517
-
518
- ### Removed
519
-
520
- - [event]: Removed all event code.
521
-
522
- <!-- Commented out section
523
- ## [1.1.2] - 2024-03-08
524
-
525
- ### Added
526
-
527
- - [Feature 1]: Description of the feature.
528
- - [Feature 2]: Description of the feature.
529
-
530
- ### Changed
531
-
532
- - [Feature 3]: Description of the change.
533
- - [Feature 4]: Description of the change.
534
-
535
- ### Deprecated
536
-
537
- - [Feature 5]: Description of the deprecation.
538
-
539
- ### Removed
540
-
541
- - [Feature 6]: Description of the removal.
542
-
543
- ### Fixed
544
-
545
- - [Bug 1]: Description of the bug fix.
546
- - [Bug 2]: Description of the bug fix.
547
-
548
- ### Security
549
-
550
- - [Security 1]: Description of the security improvement.
551
- -->
1
+ # <img src="https://github.com/Luligu/matterbridge/blob/main/frontend/public/matterbridge%2064x64.png" alt="Matterbridge Logo" width="64px" height="64px">&nbsp;&nbsp;&nbsp;Matterbridge changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ If you like this project and find it useful, please consider giving it a star on GitHub at https://github.com/Luligu/matterbridge and sponsoring it.
6
+
7
+ ## [1.3.6] - 2024-06-28
8
+
9
+ ### Changed
10
+
11
+ - [matterbridge]: Unified the http server port for the frontend and the WebSockerServer.
12
+ - [matterbridge]: Unified the https server port for the frontend and the WebSockerServer.
13
+ - [certificates]: The certificates for https connections are imported from the directory ~/.matterbridge/certs with these names: cert.pem, key.pem and ca.pem (optional). Use the -ssl command line parameter to activate https for both frontend and WebSocketServer.
14
+
15
+ ### Fixed
16
+
17
+ - [matterbridge]: Fixed exports
18
+ - [matterbridgeDevice]: Fixed ElectricalEnergyMeasurement and ElectricalPowerMeasurement
19
+
20
+ <a href="https://www.buymeacoffee.com/luligugithub">
21
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
22
+ </a>
23
+
24
+ ## [1.3.5] - 2024-06-26
25
+
26
+ ### Added
27
+
28
+ - [matterbridgeDevice]: Added createDefaultLatchingSwitchClusterServer and getDefaultLatchingSwitchClusterServer for (https://github.com/Luligu/matterbridge-shelly)
29
+ - [frontend]: Added interfaceName
30
+
31
+ ### Changed
32
+
33
+ - [package]: Updated to eslint 9.5.0 and adopted the flat config
34
+ - [package]: Updated to use prettier and jest with the flat config
35
+ - [matterbridge]: Updated dependencies
36
+ - [matterbridgeDevice]: Updated ColorControl commandHandlers for improved compatibility with (https://github.com/Luligu/matterbridge-shelly)
37
+ - [matterbridge]: The "plugin disable" and "plugin remove" methods now also remove the registered devices from the bridge
38
+ - [matterbridge]: The "plugin add" method now loads, starts, and configures the plugin
39
+
40
+ <a href="https://www.buymeacoffee.com/luligugithub">
41
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
42
+ </a>
43
+
44
+ ## [1.3.4] - 2024-06-23
45
+
46
+ ### Fixed
47
+
48
+ - [matterbridge]: Fixed exports
49
+
50
+ <a href="https://www.buymeacoffee.com/luligugithub">
51
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
52
+ </a>
53
+
54
+ ## [1.3.3] - 2024-06-22
55
+
56
+ ### Changed
57
+
58
+ - [matterbridge]: Updated dependencies
59
+ - [matterbridge]: When a plugin is in an error state, the bridge does not start to avoid causing the controllers to delete the registered devices and lose the configuration (e.g. room and automations).
60
+
61
+ <a href="https://www.buymeacoffee.com/luligugithub">
62
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
63
+ </a>
64
+
65
+ ## [1.3.2] - 2024-06-22
66
+
67
+ New plugin
68
+
69
+ [shelly](https://github.com/Luligu/matterbridge-shelly)
70
+
71
+ Matterbridge shelly allows you to expose Shelly Gen 1, Gen 2, and Gen 3 devices to Matter.
72
+
73
+ Features:
74
+
75
+ - Shellies are automatically discovered using mDNS.
76
+ - Discovered shellies are stored in local storage for quick loading on startup.
77
+ - In this first release, the components exposed are lights (with brightness), switches, rollers and power meters (with EveHistory electrical measurements).
78
+ - Shellies are controlled locally, eliminating the need for cloud or MQTT (which can be disabled).
79
+ - Shelly Gen 1 devices are controlled using the CoIoT protocol (see the note below).
80
+ - Shelly Gen 2 and Gen 3 devices are controlled using WebSocket.
81
+ - The Matter device takes the name configured in the Shelly device's web page.
82
+ - A 10-minute timer checks if the device has reported in that time.
83
+
84
+ ### Added
85
+
86
+ - [matterbridgeDevice]: Added all clusters for airQualitySensor:
87
+ CarbonMonoxideConcentrationMeasurement,
88
+ CarbonDioxideConcentrationMeasurement,
89
+ NitrogenDioxideConcentrationMeasurement,
90
+ OzoneConcentrationMeasurement,
91
+ FormaldehydeConcentrationMeasurement,
92
+ Pm1ConcentrationMeasurement,
93
+ Pm25ConcentrationMeasurement,
94
+ Pm10ConcentrationMeasurement,
95
+ RadonConcentrationMeasurement,
96
+
97
+ ### Changed
98
+
99
+ - [matterbridge]: Updated dependencies
100
+ - [matter.js]: Updated matter.js to 0.9.2
101
+
102
+ <a href="https://www.buymeacoffee.com/luligugithub">
103
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
104
+ </a>
105
+
106
+ ## [1.3.1] - 2024-06-20
107
+
108
+ ### Changed
109
+
110
+ - [matterbridge]: Updated dependencies
111
+ - [matterbridge]: Refactor the loading of schemas, now they load from the plugin directory.
112
+ - [matterbridge]: Moved getPluginVersion to the start also for disabled plugins.
113
+
114
+ <a href="https://www.buymeacoffee.com/luligugithub">
115
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
116
+ </a>
117
+
118
+ ## [1.3.0] - 2024-06-16
119
+
120
+ This release is all about Matter 1.3
121
+
122
+ If you are wondering whether the controllers already support Matter 1.3, the answer is unfortunately no.
123
+
124
+ SmartThings and Home Automation support:
125
+
126
+ - airQualitySensor (Matter 1.2)
127
+
128
+ Home Automation supports (probably only like BooleanState cluster):
129
+
130
+ - waterFreezeDetector (Matter 1.3)
131
+ - waterLeakDetector (Matter 1.3)
132
+ - rainSensor (Matter 1.3)
133
+
134
+ ### Changed
135
+
136
+ - [matterbridge]: Updated dependencies
137
+ - [matterbridge]: Default config and schema for the new plugin matterbridge-shelly (will be published after this release)
138
+
139
+ ### Added
140
+
141
+ - [matterbridgeDevice]: Added waterFreezeDetector, waterLeakDetector, rainSensor, smokeCoAlarm, electricalSensor and deviceEnergyManagement device types as conformance to Matter 1.3
142
+ - [matterbridgeDevice]: Added all clusters needed for the above Matter 1.3 device types
143
+ - [matterbridgeDevice]: Added FanControl cluster (rev. 2) helper methods for the Fan device type
144
+ - [matterbridge]: Added parameter -matterlogger [debug | info | notice | warn | error | fatal] to set the matter.js Logger separately from the Matterbridge log
145
+ - [frontend]: Added logger level settings to reflect -matterlogger [debug | info | notice | warn | error | fatal]
146
+
147
+ <a href="https://www.buymeacoffee.com/luligugithub">
148
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
149
+ </a>
150
+
151
+ ## [1.2.22] - 2024-06-04
152
+
153
+ ### Changed
154
+
155
+ - [matterbridge]: Updated dependencies
156
+ - [matterbridge]: Default config and schema for the new plugin matterbridge-shelly
157
+
158
+ <a href="https://www.buymeacoffee.com/luligugithub">
159
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
160
+ </a>
161
+
162
+ ## [1.2.21] - 2024-06-04
163
+
164
+ ### Changed
165
+
166
+ - [matterbridge]: Updated dependencies
167
+
168
+ ### Fixed
169
+
170
+ - [matterbridge]: Removed error stack from log error for npm get versions
171
+ - [matterbridge]: Fixed the error that caused -add plugin to fail at the first run of matterbridge
172
+
173
+ <a href="https://www.buymeacoffee.com/luligugithub">
174
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
175
+ </a>
176
+
177
+ ## [1.2.20] - 2024-06-03
178
+
179
+ ### Changed
180
+
181
+ - [matter.js]: Update to @project-chip/matter-node.js v. 0.9.1
182
+ - [matterbridge]: Updated dependencies
183
+
184
+ ### Fixed
185
+
186
+ - [matterbridge]: Log level of Plugin already configured is now info
187
+
188
+ <a href="https://www.buymeacoffee.com/luligugithub">
189
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
190
+ </a>
191
+
192
+ ## [1.2.19] - 2024-06-01
193
+
194
+ ### Breaking change on Matterbridge start!
195
+
196
+ Now the plugins load and start before the controller connects.
197
+ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his help testing all controllers.
198
+
199
+ ### Changed
200
+
201
+ - [matterbridge]: In bridge mode the plugins are loaded and started immediately
202
+ - [matterbridge]: In child bridge mode the plugins are loaded and started immediately
203
+ - [matterbridge]: Updated dependencies
204
+
205
+ ### Fixed
206
+
207
+ - [frontend]: Fixed the error badge in the registered plugins window
208
+ - [frontend]: Added tooltip to the plugin update badge in the registered plugins window
209
+
210
+ <a href="https://www.buymeacoffee.com/luligugithub">
211
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
212
+ </a>
213
+
214
+ ## [1.2.18] - 2024-05-28
215
+
216
+ ### Changed
217
+
218
+ - [matterbridgeDevice]: bridgedNode and powerSource device types as conformance to Matter 1.3
219
+
220
+ ### Fixed
221
+
222
+ - [matterbridge]: Fixed /api/settings error after resetting commissioning server
223
+ - [matterbridge]: Added error message and clean shutdown when WebSocketServer or ExpressServer ports are already in use
224
+
225
+ ### Added
226
+
227
+ - [frontend]: Added a dropdown menu in Add Remove plugin to select the plugins
228
+
229
+ <a href="https://www.buymeacoffee.com/luligugithub">
230
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
231
+ </a>
232
+
233
+ ## [1.2.17] - 2024-05-25
234
+
235
+ ### Fixed
236
+
237
+ - [matterbridge]: Fixed the issue causing the commissioning reset for all fabrics when only one is removed. (Apple uses 2 fabrics: Home app and Key chain).
238
+
239
+ ### Changed
240
+
241
+ - [matterbridge]: Preliminary integration for the new matterbridge-shelly plugin (still not published)
242
+ - [matterbridge]: Updated dependencies
243
+ - [matterbridge]: Moved eslint to @typescript-eslint/strict and @typescript-eslint/stylistic
244
+
245
+ ### Added
246
+
247
+ - [frontend]: Fetch data in Home page every minute
248
+ - [device]: Added new method addClusterServerFromList
249
+ - [device]: Added ModeSelectClusterServer (only for testing)
250
+ - [matterbridge]: Added fabric info in the log on startup
251
+ - [matterbridge]: Added vendorId for Alexa
252
+
253
+ <a href="https://www.buymeacoffee.com/luligugithub">
254
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
255
+ </a>
256
+
257
+ ## [1.2.16] - 2024-05-15
258
+
259
+ ### Changed
260
+
261
+ - [matter.js]: Update to @project-chip/matter-node.js v. 0.9.0
262
+
263
+ ### Added
264
+
265
+ - [frontend]: Frontend updated to 1.0.0.
266
+ - [frontend]: Added check version interval.
267
+ - [frontend]: Added help and version information icons for plugins.
268
+ - [frontend]: Added version information for Matterbridge (Click on the version badge).
269
+ - [frontend]: Added help badge for Matterbridge.
270
+ - [frontend]: Added version information badge for Matterbridge.
271
+
272
+ <a href="https://www.buymeacoffee.com/luligugithub">
273
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
274
+ </a>
275
+
276
+ ## [1.2.15] - 2024-05-14
277
+
278
+ ### Added
279
+
280
+ - [frontend]: Added sponsor link in Header.
281
+ - [frontend]: Added sponsor link in the plugin list.
282
+
283
+ ### Fixed
284
+
285
+ - [frontend]: Fixed the case when the latest version of Matterbridge or a plugin is not available.
286
+
287
+ <a href="https://www.buymeacoffee.com/luligugithub">
288
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
289
+ </a>
290
+
291
+ ## [1.2.14] - 2024-05-09
292
+
293
+ ### Added
294
+
295
+ - [frontend]: Frontend updated to 0.9.0.
296
+ - [frontend]: Added Plugin config editor
297
+ - [frontend]: Added tool column to registered plugins with QRCode, Config, Remove and Enable/Disable
298
+ - [frontend]: Removed Shutdown button when Matterbridge runs as a service or with docker
299
+ - [frontend]: Added Error state to registered plugins
300
+
301
+ <a href="https://www.buymeacoffee.com/luligugithub">
302
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
303
+ </a>
304
+
305
+ ## [1.2.13] - 2024-05-05
306
+
307
+ ### Added
308
+
309
+ - [frontend]: Added plugin version check (you can update from the badge)
310
+ - [frontend]: Added tooltip to plugin name showing plugin path
311
+ - [matterbridge]: The plugin config file is no more saved on shutdown.
312
+ - [matterbridge]: Added plugin version check
313
+ - [frontend]: When you install a plugin now it is also added
314
+ - [frontend]: Added current and latest release to the badge in the Header section (you can update from the badge)
315
+ - [docker]: Added the docker image:dev on the docker hub with architectures: linux/amd64, linux/arm64, linux/arm/v7
316
+
317
+ <a href="https://www.buymeacoffee.com/luligugithub">
318
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
319
+ </a>
320
+
321
+ ## [1.2.12] - 2024-04-30
322
+
323
+ ### Added
324
+
325
+ - [frontend]: Added the device child enpoints to the table in the Devices page
326
+ - [docker]: Added architectures to the docker image on the docker hub: linux/amd64, linux/arm64
327
+ - [frontend]: Frontend updated to 0.8.9.
328
+ - [frontend]: Added error in the logger level on the Settings page.
329
+ - [frontend]: Added unregister all devices in the Settings page. Matterbridge will shutdown to allow unregistering.
330
+ - [frontend]: Added reset in the Settings page. Matterbridge will shutdown to allow the reset.
331
+ - [frontend]: Added factoryreset in the Settings page. Matterbridge will shutdown to allow the factoryreset.
332
+
333
+ <a href="https://www.buymeacoffee.com/luligugithub">
334
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
335
+ </a>
336
+
337
+ ## [1.2.11] - 2024-04-25
338
+
339
+ ### Added
340
+
341
+ - [matterbridge]: Added user to system information.
342
+ - [frontend]: Persist the filter selection (debug level and search criteria) in the Logs route.
343
+ - [frontend]: Added on the header the version and two badges for bridgeMode and restartMode.
344
+ - [frontend]: Frontend updated to 0.8.8.
345
+ - [docker]: Added support for docker (BETA). The Matterbridge image is published on the docker hub.
346
+ - [docker]: See the guidelines on https://github.com/Luligu/matterbridge?tab=readme-ov-file#Run-the-Docker-container-and-start-it.
347
+ - [docker compose]: See the guidelines on https://github.com/Luligu/matterbridge?tab=readme-ov-file#Run-with-docker-compose.
348
+
349
+ ### Fixed
350
+
351
+ - [matterbridge]: Fixed the case when a plugin throws errors.
352
+
353
+ ### New plugin
354
+
355
+ - Matterbridge Somfy Tahoma https://github.com/Luligu/matterbridge-somfy-tahoma
356
+
357
+ ## [1.2.10] - 2024-04-23
358
+
359
+ ### Added
360
+
361
+ - [extension]: Finalized implementation of zigbee2MQTT internal extension v. 1.0.0.
362
+
363
+ ## [1.2.9] - 2024-04-19
364
+
365
+ ### Added
366
+
367
+ - [Matterbridge]: Added call to set reachability at start.
368
+
369
+ ### Added
370
+
371
+ - [Matterbridge]: Added call to set reachability at start.
372
+ - [frontend]: Added filter for log level and search criteria in the Logs page.
373
+ - [frontend]: Added colors to the logs in the Home page and in the Logs page.
374
+ - [frontend]: Frontend updated to 0.8.7.
375
+
376
+ ### Fixed
377
+
378
+ - [logs]: Fixed wss for some browser that didn't connect to wss.
379
+
380
+ ## [1.2.8] - 2024-04-16
381
+
382
+ ### Changed
383
+
384
+ - [matter.js]: Update to @project-chip/matter-node.js v. 0.8.1
385
+
386
+ ### Added
387
+
388
+ - [frontend]: Added logs in the Home page and in the Log page.
389
+ - [frontend]: Frontend got updated to 0.8.6.
390
+ - [frontend]: Added log for update and plugin install.
391
+ - [extension]: Started implementation of zigbee2MQTT internal extension.
392
+
393
+ ### Fixed
394
+
395
+ - [spawn]: Fixed under windows.
396
+
397
+ ## [1.2.7] - 2024-04-14
398
+
399
+ ### Changed
400
+
401
+ - [matterbridge]: The default frontend port is now 8283!.
402
+ - [matterbridge.service]: Updated matterbridge.service instructions to fix restart when Matterbridge runs as a daemon with systemctl.
403
+
404
+ ### Added
405
+
406
+ - [frontend]: Added manual pairing code. Allows to pair Matterbridge without using the phone.
407
+ - [MatterbridgeDevice]: Added api to create child endpoints (see matterbridge-example-dynamic-platform).
408
+ - [MatterbridgeDevice]: Added FlowMeasurement cluster.
409
+
410
+ ## [1.2.6] - 2024-04-11
411
+
412
+ ### Added
413
+
414
+ - [matterbridge]: Added -factoryreset parameter to factory reset Matterbridge (see the readme.md for more explanations).
415
+ - [matterbridge]: Added -reset parameter to reset the commissioning of Matterbridge (bridge mode).
416
+ - [matterbridge]: Added -reset [plugin] parameter to reset the commissioning of a plugin (childbridge mode).
417
+ - [matterbridge]: Added -port [port] parameter to set the starting port for the commissioning servers (both bridge and childbridge modes).
418
+
419
+ ### Changed
420
+
421
+ - [matterbridge.service]: Updated matterbridge.service instructions that fix network start issue with systemctl on Linux.
422
+
423
+ ### Fixed
424
+
425
+ - [frontend]: Added sudo to the spawned command to execute update and install from frontend (for Linux this may be necessary).
426
+ - [childbridge mode]: Fixed a syncronize issue on the start.
427
+
428
+ ## [1.2.5] - 2024-04-08
429
+
430
+ ### Added
431
+
432
+ - [frontend]: Added update Matterbridge (spawn the command: 'npm -install -g matterbridge'). The console inherit the the spawned process running so you can check.
433
+ - [frontend]: Added install plugin (spawn the command: 'npm -install -g plugin-name'). The console inherit the the spawned process running so you can check.
434
+ - [frontend]: Added shutdown button.
435
+ - [frontend]: Added login with password (default no password). Change the password in the Settings page of frontend.
436
+ - [frontend]: Frontend got updated to 0.8.5.
437
+ - [Matterbridge]: Added configuration and guidelines in the readme to run Matterbridge like a daemon with systemctl on Linux machine.
438
+
439
+ ## [1.2.4] - 2024-04-01
440
+
441
+ ### Changed
442
+
443
+ - [matter.js]: Updated the code to matter.js release 0.80.0.
444
+
445
+ ### Added
446
+
447
+ - [MatterbridgeDevice]: Added DoorLock and Thermostat clusters.
448
+
449
+ ## [1.2.3] - 2024-03-28
450
+
451
+ ### Added
452
+
453
+ - [Matterbridge]: Enable plugin now start the plugin (no need to restart in bridge mode).
454
+ - [Matterbridge]: Disable plugin now shutdown the plugin (no need to restart).
455
+
456
+ ## [1.2.2] - 2024-03-26
457
+
458
+ ### Added
459
+
460
+ - [MatterbridgeDevice]: Added Cluster DoorLock and command handler.
461
+
462
+ ## [1.2.1] - 2024-03-25
463
+
464
+ ### Added
465
+
466
+ - [frontend]: Remove plugin from frontend.
467
+ - [frontend]: Add plugin from frontend.
468
+ - [workflow]: All packages now have a workflow on GitHub.
469
+ - [frontend]: Frontend got updated to 0.8.4.
470
+
471
+ ### Fixed
472
+
473
+ - [frontend]: Fixed the restart needed message.
474
+ - [matterbridge]: Fixed the delay of loading from the cli.
475
+ - [matterbridge]: Fixed the count of devices removed.
476
+
477
+ ## [1.2.0] - 2024-03-23
478
+
479
+ ### Breaking change on plugin default entry point and platform constructor!
480
+
481
+ - [plugin default entry point]: export default function initializePlugin(matterbridge: Matterbridge, log: AnsiLogger, config: PlatformConfig)
482
+ - [platform constructor]: constructor(matterbridge: Matterbridge, log: AnsiLogger, config: PlatformConfig)
483
+
484
+ ### Added
485
+
486
+ - [platform]: Added async loadPluginConfig() and async savePluginConfig() to store plugin config.
487
+ - [platform]: Added: config: PlatformConfig (JSON) property to platforms to store plugin config.
488
+
489
+ ### Changed
490
+
491
+ - [dependencies]: Updated dependencies.
492
+
493
+ ## [1.1.11] - 2024-03-19
494
+
495
+ ### Added
496
+
497
+ - [frontend]: Frontend got updated to 0.8.3.
498
+
499
+ ## [1.1.10] - 2024-03-17
500
+
501
+ ### Added
502
+
503
+ - [matterbridge]: added unregisterAllDevices() to the platforms
504
+ - [matterbridge]: added unregisterDevice(device: MatterbridgeDevice) to the platforms
505
+ - [frontend]: Enable and disable plugin are now available. Restart Matteerbridge after.
506
+ - [frontend]: Frontend got updated to 0.8.2.
507
+
508
+ ## [1.1.9] - 2024-03-16
509
+
510
+ ### Added
511
+
512
+ - [frontend]: Selecting a plugin in the home page show the corresponding QR code.
513
+ - [frontend]: Settings page now controll the global logger level.
514
+ - [frontend]: Restart from the header is available.
515
+ - [frontend]: Frontend got updated to 0.8.1.
516
+
517
+ ## [1.1.8] - 2024-03-15
518
+
519
+ ### Added
520
+
521
+ - [cli]: Resolve the plugin name from absolute or relative path or from globally installed modules (see the help).
522
+ - [frontend]: Added some fancy stuff still not visible.
523
+
524
+ ### Fixed
525
+
526
+ - [install]: Fixed the error caused when the controllers disconnect and connect again.
527
+
528
+ ## [1.1.7] - 2024-03-14
529
+
530
+ ### Fixed
531
+
532
+ - [install]: Fixed the install error (thanks https://github.com/khaidakin).
533
+
534
+ ## [1.1.6] - 2024-03-14
535
+
536
+ ### Added
537
+
538
+ - [async]: Plugins are loaded started configured fully asyncronously.
539
+ - [frontend]: Added configured button.
540
+
541
+ ## [1.1.5] - 2024-03-12
542
+
543
+ ### Added
544
+
545
+ - [debug]: Added public property enableDebug to Matterbridge.
546
+ - [debug]: Added parameter -debug to the command line.
547
+
548
+ ### Fixed
549
+
550
+ - [plugin]: Fixed the plugin.paired and plugin.commissioned in bridge mode.
551
+ - [routes]: Fixed the plugin devices route.
552
+ - [bridge]: Fixed the BasicInformationCluster in bridge mode.
553
+
554
+ ## [1.1.4] - 2024-03-10
555
+
556
+ ### Changed
557
+
558
+ - [cli]: Updated the loading from cli.
559
+
560
+ ## [1.1.3] - 2024-03-10
561
+
562
+ ### Added
563
+
564
+ - [onMatterStarted]: onMatterStarted() is called after matter server started.
565
+ - [onConfigure]: onConfigure() is called after the platform controller is commissioned.
566
+
567
+ ### Changed
568
+
569
+ - [dependencies]: Updated dependencies.
570
+
571
+ ### Fixed
572
+
573
+ - [Plugin route]: Fixed the plugin device route in frontend.
574
+
575
+ ## [1.1.2] - 2024-03-08
576
+
577
+ ### Added
578
+
579
+ - [async]: All code is asyncronous where it makes sense.
580
+ - [JSDoc]: Added JSDoc to the code.
581
+
582
+ ### Removed
583
+
584
+ - [event]: Removed all event code.
585
+
586
+ <!-- Commented out section
587
+ ## [1.1.2] - 2024-03-08
588
+
589
+ ### Added
590
+
591
+ - [Feature 1]: Description of the feature.
592
+ - [Feature 2]: Description of the feature.
593
+
594
+ ### Changed
595
+
596
+ - [Feature 3]: Description of the change.
597
+ - [Feature 4]: Description of the change.
598
+
599
+ ### Deprecated
600
+
601
+ - [Feature 5]: Description of the deprecation.
602
+
603
+ ### Removed
604
+
605
+ - [Feature 6]: Description of the removal.
606
+
607
+ ### Fixed
608
+
609
+ - [Bug 1]: Description of the bug fix.
610
+ - [Bug 2]: Description of the bug fix.
611
+
612
+ ### Security
613
+
614
+ - [Security 1]: Description of the security improvement.
615
+ -->