matterbridge 1.3.4 → 1.3.5

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