matterbridge 1.2.3 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,171 +1,179 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- ## [1.2.3] - 2024-03-27
6
-
7
- ### Added
8
-
9
- - [Matterbridge]: Enable plugin now start the plugin (no need to restart in bridge mode).
10
- - [Matterbridge]: Disable plugin now shutdown the plugin (no need to restart).
11
-
12
- ## [1.2.2] - 2024-03-26
13
-
14
- ### Added
15
-
16
- - [MatterbridgeDevice]: Added Cluster DoorLock and command handler.
17
-
18
- ## [1.2.1] - 2024-03-25
19
-
20
- ### Added
21
-
22
- - [frontend]: Remove plugin from frontend.
23
- - [frontend]: Add plugin from frontend.
24
- - [workflow]: All packages now have a workflow on GitHub.
25
- - [frontend]: Frontend got updated to 0.8.4.
26
-
27
- ### Fixed
28
-
29
- - [frontend]: Fixed the restart needed message.
30
- - [matterbridge]: Fixed the delay of loading from the cli.
31
- - [matterbridge]: Fixed the count of devices removed.
32
-
33
- ## [1.2.0] - 2024-03-23
34
-
35
- ### Breaking change on plugin default entry point and platform constructor!
36
- - [plugin default entry point]: export default function initializePlugin(matterbridge: Matterbridge, log: AnsiLogger, config: PlatformConfig)
37
- - [platform constructor]: constructor(matterbridge: Matterbridge, log: AnsiLogger, config: PlatformConfig)
38
-
39
- ### Added
40
-
41
- - [platform]: Added async loadPluginConfig() and async savePluginConfig() to store plugin config.
42
- - [platform]: Added: config: PlatformConfig (JSON) property to platforms to store plugin config.
43
-
44
- ### Changed
45
-
46
- - [dependencies]: Updated dependencies.
47
-
48
- ## [1.1.11] - 2024-03-19
49
-
50
- ### Added
51
-
52
- - [frontend]: Frontend got updated to 0.8.3.
53
-
54
- ## [1.1.10] - 2024-03-17
55
-
56
- ### Added
57
-
58
- - [matterbridge]: added unregisterAllDevices() to the platforms
59
- - [matterbridge]: added unregisterDevice(device: MatterbridgeDevice) to the platforms
60
- - [frontend]: Enable and disable plugin are now available. Restart Matteerbridge after.
61
- - [frontend]: Frontend got updated to 0.8.2.
62
-
63
- ## [1.1.9] - 2024-03-16
64
-
65
- ### Added
66
-
67
- - [frontend]: Selecting a plugin in the home page show the corresponding QR code.
68
- - [frontend]: Settings page now controll the global logger level.
69
- - [frontend]: Restart from the header is available.
70
- - [frontend]: Frontend got updated to 0.8.1.
71
-
72
- ## [1.1.8] - 2024-03-15
73
-
74
- ### Added
75
-
76
- - [cli]: Resolve the plugin name from absolute or relative path or from globally installed modules (see the help).
77
- - [frontend]: Added some fancy stuff still not visible.
78
-
79
- ### Fixed
80
-
81
- - [install]: Fixed the error caused when the controllers disconnect and connect again.
82
-
83
- ## [1.1.7] - 2024-03-14
84
-
85
- ### Fixed
86
-
87
- - [install]: Fixed the install error (thanks https://github.com/khaidakin).
88
-
89
- ## [1.1.6] - 2024-03-14
90
-
91
- ### Added
92
-
93
- - [async]: Plugins are loaded started configured fully asyncronously.
94
- - [frontend]: Added configured button.
95
-
96
- ## [1.1.5] - 2024-03-12
97
-
98
- ### Added
99
-
100
- - [debug]: Added public property enableDebug to Matterbridge.
101
- - [debug]: Added parameter -debug to the command line.
102
-
103
- ### Fixed
104
-
105
- - [plugin]: Fixed the plugin.paired and plugin.commissioned in bridge mode.
106
- - [routes]: Fixed the plugin devices route.
107
- - [bridge]: Fixed the BasicInformationCluster in bridge mode.
108
-
109
- ## [1.1.4] - 2024-03-10
110
-
111
- ### Changed
112
-
113
- - [cli]: Updated the loading from cli.
114
-
115
-
116
- ## [1.1.3] - 2024-03-10
117
-
118
- ### Added
119
-
120
- - [onMatterStarted]: onMatterStarted() is called after matter server started.
121
- - [onConfigure]: onConfigure() is called after the platform controller is commissioned.
122
-
123
- ### Changed
124
-
125
- - [dependencies]: Updated dependencies.
126
-
127
- ### Fixed
128
-
129
- - [Plugin route]: Fixed the plugin device route in frontend.
130
-
131
- ## [1.1.2] - 2024-03-08
132
-
133
- ### Added
134
-
135
- - [async]: All code is asyncronous where it makes sense.
136
- - [JSDoc]: Added JSDoc to the code.
137
-
138
- ### Removed
139
-
140
- - [event]: Removed all event code.
141
-
142
- <!-- Commented out section
143
- ## [1.1.2] - 2024-03-08
144
-
145
- ### Added
146
-
147
- - [Feature 1]: Description of the feature.
148
- - [Feature 2]: Description of the feature.
149
-
150
- ### Changed
151
-
152
- - [Feature 3]: Description of the change.
153
- - [Feature 4]: Description of the change.
154
-
155
- ### Deprecated
156
-
157
- - [Feature 5]: Description of the deprecation.
158
-
159
- ### Removed
160
-
161
- - [Feature 6]: Description of the removal.
162
-
163
- ### Fixed
164
-
165
- - [Bug 1]: Description of the bug fix.
166
- - [Bug 2]: Description of the bug fix.
167
-
168
- ### Security
169
-
170
- - [Security 1]: Description of the security improvement.
171
- -->
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## [1.2.4] - 2024-04-01
6
+
7
+ ### Changed
8
+ - [matter.js]: Updated the code to matter.js release 0.80.0.
9
+
10
+ ### Added
11
+ - [MatterbridgeDevice]: Added DoorLock and Thermostat clusters.
12
+
13
+ ## [1.2.3] - 2024-03-28
14
+
15
+ ### Added
16
+
17
+ - [Matterbridge]: Enable plugin now start the plugin (no need to restart in bridge mode).
18
+ - [Matterbridge]: Disable plugin now shutdown the plugin (no need to restart).
19
+
20
+ ## [1.2.2] - 2024-03-26
21
+
22
+ ### Added
23
+
24
+ - [MatterbridgeDevice]: Added Cluster DoorLock and command handler.
25
+
26
+ ## [1.2.1] - 2024-03-25
27
+
28
+ ### Added
29
+
30
+ - [frontend]: Remove plugin from frontend.
31
+ - [frontend]: Add plugin from frontend.
32
+ - [workflow]: All packages now have a workflow on GitHub.
33
+ - [frontend]: Frontend got updated to 0.8.4.
34
+
35
+ ### Fixed
36
+
37
+ - [frontend]: Fixed the restart needed message.
38
+ - [matterbridge]: Fixed the delay of loading from the cli.
39
+ - [matterbridge]: Fixed the count of devices removed.
40
+
41
+ ## [1.2.0] - 2024-03-23
42
+
43
+ ### Breaking change on plugin default entry point and platform constructor!
44
+ - [plugin default entry point]: export default function initializePlugin(matterbridge: Matterbridge, log: AnsiLogger, config: PlatformConfig)
45
+ - [platform constructor]: constructor(matterbridge: Matterbridge, log: AnsiLogger, config: PlatformConfig)
46
+
47
+ ### Added
48
+
49
+ - [platform]: Added async loadPluginConfig() and async savePluginConfig() to store plugin config.
50
+ - [platform]: Added: config: PlatformConfig (JSON) property to platforms to store plugin config.
51
+
52
+ ### Changed
53
+
54
+ - [dependencies]: Updated dependencies.
55
+
56
+ ## [1.1.11] - 2024-03-19
57
+
58
+ ### Added
59
+
60
+ - [frontend]: Frontend got updated to 0.8.3.
61
+
62
+ ## [1.1.10] - 2024-03-17
63
+
64
+ ### Added
65
+
66
+ - [matterbridge]: added unregisterAllDevices() to the platforms
67
+ - [matterbridge]: added unregisterDevice(device: MatterbridgeDevice) to the platforms
68
+ - [frontend]: Enable and disable plugin are now available. Restart Matteerbridge after.
69
+ - [frontend]: Frontend got updated to 0.8.2.
70
+
71
+ ## [1.1.9] - 2024-03-16
72
+
73
+ ### Added
74
+
75
+ - [frontend]: Selecting a plugin in the home page show the corresponding QR code.
76
+ - [frontend]: Settings page now controll the global logger level.
77
+ - [frontend]: Restart from the header is available.
78
+ - [frontend]: Frontend got updated to 0.8.1.
79
+
80
+ ## [1.1.8] - 2024-03-15
81
+
82
+ ### Added
83
+
84
+ - [cli]: Resolve the plugin name from absolute or relative path or from globally installed modules (see the help).
85
+ - [frontend]: Added some fancy stuff still not visible.
86
+
87
+ ### Fixed
88
+
89
+ - [install]: Fixed the error caused when the controllers disconnect and connect again.
90
+
91
+ ## [1.1.7] - 2024-03-14
92
+
93
+ ### Fixed
94
+
95
+ - [install]: Fixed the install error (thanks https://github.com/khaidakin).
96
+
97
+ ## [1.1.6] - 2024-03-14
98
+
99
+ ### Added
100
+
101
+ - [async]: Plugins are loaded started configured fully asyncronously.
102
+ - [frontend]: Added configured button.
103
+
104
+ ## [1.1.5] - 2024-03-12
105
+
106
+ ### Added
107
+
108
+ - [debug]: Added public property enableDebug to Matterbridge.
109
+ - [debug]: Added parameter -debug to the command line.
110
+
111
+ ### Fixed
112
+
113
+ - [plugin]: Fixed the plugin.paired and plugin.commissioned in bridge mode.
114
+ - [routes]: Fixed the plugin devices route.
115
+ - [bridge]: Fixed the BasicInformationCluster in bridge mode.
116
+
117
+ ## [1.1.4] - 2024-03-10
118
+
119
+ ### Changed
120
+
121
+ - [cli]: Updated the loading from cli.
122
+
123
+
124
+ ## [1.1.3] - 2024-03-10
125
+
126
+ ### Added
127
+
128
+ - [onMatterStarted]: onMatterStarted() is called after matter server started.
129
+ - [onConfigure]: onConfigure() is called after the platform controller is commissioned.
130
+
131
+ ### Changed
132
+
133
+ - [dependencies]: Updated dependencies.
134
+
135
+ ### Fixed
136
+
137
+ - [Plugin route]: Fixed the plugin device route in frontend.
138
+
139
+ ## [1.1.2] - 2024-03-08
140
+
141
+ ### Added
142
+
143
+ - [async]: All code is asyncronous where it makes sense.
144
+ - [JSDoc]: Added JSDoc to the code.
145
+
146
+ ### Removed
147
+
148
+ - [event]: Removed all event code.
149
+
150
+ <!-- Commented out section
151
+ ## [1.1.2] - 2024-03-08
152
+
153
+ ### Added
154
+
155
+ - [Feature 1]: Description of the feature.
156
+ - [Feature 2]: Description of the feature.
157
+
158
+ ### Changed
159
+
160
+ - [Feature 3]: Description of the change.
161
+ - [Feature 4]: Description of the change.
162
+
163
+ ### Deprecated
164
+
165
+ - [Feature 5]: Description of the deprecation.
166
+
167
+ ### Removed
168
+
169
+ - [Feature 6]: Description of the removal.
170
+
171
+ ### Fixed
172
+
173
+ - [Bug 1]: Description of the bug fix.
174
+ - [Bug 2]: Description of the bug fix.
175
+
176
+ ### Security
177
+
178
+ - [Security 1]: Description of the security improvement.
179
+ -->