matterbridge-zigbee2mqtt 3.0.0-dev-20251104-5694fcf → 3.0.0-dev-20251104-5e2e4cd

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
@@ -14,6 +14,7 @@ If you like this project and find it useful, please consider giving it a star on
14
14
 
15
15
  - [tvoc]: Added voc_index to the converter. Thanks Funca (https://github.com/Luligu/matterbridge-zigbee2mqtt/issues/129).
16
16
  - [cover]: Added check for reverse_direction === 'back' and reverse_direction === true (https://github.com/Luligu/matterbridge-zigbee2mqtt/issues/121 and https://github.com/Luligu/matterbridge-zigbee2mqtt/issues/131).
17
+ - [test]: Improved test coverage to 85%.
17
18
 
18
19
  ### Changed
19
20
 
package/README.md CHANGED
@@ -125,6 +125,8 @@ matterbridge
125
125
 
126
126
  # Config file
127
127
 
128
+ All configurations can (and should) be done with the frontend.
129
+
128
130
  If needed you can configure the mqtt host, port, topic, username and password.
129
131
 
130
132
  If the whiteList is defined only the devices included are exposed to Matter.
@@ -153,15 +155,16 @@ These are the default vules:
153
155
  {
154
156
  "name": "matterbridge-zigbee2mqtt",
155
157
  "type": "DynamicPlatform",
158
+ "version": "3.0.0",
156
159
  "host": "mqtt://localhost",
157
160
  "port": 1883,
158
161
  "protocolVersion": 5,
159
162
  "topic": "zigbee2mqtt",
160
163
  "username": "",
161
164
  "password": "",
162
- "ca": undefined,
163
- "cert": undefined,
164
- "key": undefined,
165
+ "ca": "",
166
+ "cert": "",
167
+ "key": "",
165
168
  "rejectUnauthorized": true,
166
169
  "whiteList": [],
167
170
  "blackList": [],
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "matterbridge-zigbee2mqtt",
3
3
  "type": "DynamicPlatform",
4
- "version": "2.9.0",
4
+ "version": "3.0.0",
5
5
  "host": "mqtt://localhost",
6
6
  "port": 1883,
7
7
  "protocolVersion": 5,
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge-zigbee2mqtt",
3
- "version": "3.0.0-dev-20251104-5694fcf",
3
+ "version": "3.0.0-dev-20251104-5e2e4cd",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge-zigbee2mqtt",
9
- "version": "3.0.0-dev-20251104-5694fcf",
9
+ "version": "3.0.0-dev-20251104-5e2e4cd",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "mqtt": "5.14.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge-zigbee2mqtt",
3
- "version": "3.0.0-dev-20251104-5694fcf",
3
+ "version": "3.0.0-dev-20251104-5e2e4cd",
4
4
  "description": "Matterbridge zigbee2mqtt plugin",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",