matterbridge-zigbee2mqtt 3.0.4-dev-20260118-e84f7bb → 3.0.4-dev-20260121-abe272f

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
@@ -6,7 +6,7 @@ If you like this project and find it useful, please consider giving it a star on
6
6
 
7
7
  <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="120"></a>
8
8
 
9
- ## [3.0.4] - Dev branch
9
+ ## [3.0.4] - 2026-01-20
10
10
 
11
11
  ### Added
12
12
 
@@ -16,6 +16,8 @@ If you like this project and find it useful, please consider giving it a star on
16
16
 
17
17
  - [package]: Updated dependencies.
18
18
  - [package]: Updated package to automator v. 3.0.0.
19
+ - [package]: Refactored Dev Container to use Matterbridge mDNS reflector.
20
+ - [package]: Requires Matterbridge v.3.5.0.
19
21
 
20
22
  <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
21
23
 
package/dist/module.js CHANGED
@@ -41,8 +41,8 @@ export class ZigbeePlatform extends MatterbridgeDynamicPlatform {
41
41
  constructor(matterbridge, log, config) {
42
42
  super(matterbridge, log, config);
43
43
  this.config = config;
44
- if (this.verifyMatterbridgeVersion === undefined || typeof this.verifyMatterbridgeVersion !== 'function' || !this.verifyMatterbridgeVersion('3.4.0')) {
45
- throw new Error(`This plugin requires Matterbridge version >= "3.4.0". Please update Matterbridge from ${this.matterbridge.matterbridgeVersion} to the latest version in the frontend."`);
44
+ if (this.verifyMatterbridgeVersion === undefined || typeof this.verifyMatterbridgeVersion !== 'function' || !this.verifyMatterbridgeVersion('3.5.0')) {
45
+ throw new Error(`This plugin requires Matterbridge version >= "3.5.0". Please update Matterbridge from ${this.matterbridge.matterbridgeVersion} to the latest version in the frontend."`);
46
46
  }
47
47
  this.shouldStart = false;
48
48
  this.shouldConfigure = false;
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge-zigbee2mqtt",
3
- "version": "3.0.4-dev-20260118-e84f7bb",
3
+ "version": "3.0.4-dev-20260121-abe272f",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge-zigbee2mqtt",
9
- "version": "3.0.4-dev-20260118-e84f7bb",
9
+ "version": "3.0.4-dev-20260121-abe272f",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "moment": "2.30.1",
@@ -278,6 +278,12 @@
278
278
  "url": "https://opencollective.com/js-sdsl"
279
279
  }
280
280
  },
281
+ "node_modules/lru-cache": {
282
+ "version": "10.4.3",
283
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
284
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
285
+ "license": "ISC"
286
+ },
281
287
  "node_modules/minimist": {
282
288
  "version": "1.2.8",
283
289
  "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
@@ -339,12 +345,6 @@
339
345
  "process-nextick-args": "^2.0.1"
340
346
  }
341
347
  },
342
- "node_modules/mqtt/node_modules/lru-cache": {
343
- "version": "10.4.3",
344
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
345
- "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
346
- "license": "ISC"
347
- },
348
348
  "node_modules/ms": {
349
349
  "version": "2.1.3",
350
350
  "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge-zigbee2mqtt",
3
- "version": "3.0.4-dev-20260118-e84f7bb",
3
+ "version": "3.0.4-dev-20260121-abe272f",
4
4
  "description": "Matterbridge zigbee2mqtt plugin",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
7
7
  "type": "module",
8
8
  "main": "dist/module.js",
9
+ "types": "dist/module.d.ts",
9
10
  "homepage": "https://www.npmjs.com/package/matterbridge-zigbee2mqtt",
10
11
  "repository": {
11
12
  "type": "git",