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