matterbridge-zigbee2mqtt 3.0.7 → 3.0.8-dev-20260226-7d45501
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 +12 -0
- package/dist/entity.js +5 -5
- package/dist/module.js +2 -2
- package/dist/zigbee2mqtt.js +3 -3
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -26,6 +26,18 @@ If you like this project and find it useful, please consider giving it a star on
|
|
|
26
26
|
|
|
27
27
|
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="120"></a>
|
|
28
28
|
|
|
29
|
+
## [3.0.8] - Dev branch
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
|
|
33
|
+
- [package]: Update dependencies.
|
|
34
|
+
- [package]: Bump package to `automator` v.3.1.0.
|
|
35
|
+
- [package]: Bump `eslint` to v.10.0.2.
|
|
36
|
+
- [package]: Bump `typescript-eslint` to v.8.56.1.
|
|
37
|
+
- [package]: Replace `eslint-plugin-import` with `eslint-plugin-simple-import-sort`.
|
|
38
|
+
|
|
39
|
+
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
40
|
+
|
|
29
41
|
## [3.0.7] - 2026-02-20
|
|
30
42
|
|
|
31
43
|
### Added
|
package/dist/entity.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import EventEmitter from 'node:events';
|
|
2
2
|
import fs from 'node:fs';
|
|
3
3
|
import path from 'node:path';
|
|
4
|
-
import { airQualitySensor,
|
|
5
|
-
import { AnsiLogger,
|
|
4
|
+
import { airQualitySensor, bridgedNode, colorTemperatureLight, colorTemperatureSwitch, contactSensor, coverDevice, dimmableLight, dimmableOutlet, dimmableSwitch, doorLockDevice, electricalSensor, extendedColorLight, genericSwitch, humiditySensor, lightSensor, MatterbridgeEndpoint, occupancySensor, onOffLight, onOffOutlet, onOffSwitch, powerSource, pressureSensor, rainSensor, smokeCoAlarm, temperatureSensor, thermostatDevice, waterLeakDetector, } from 'matterbridge';
|
|
5
|
+
import { AnsiLogger, CYAN, db, debugStringify, dn, er, gn, hk, idn, ign, nf, or, rs, YELLOW, zb } from 'matterbridge/logger';
|
|
6
|
+
import { NumberTag, SwitchesTag } from 'matterbridge/matter';
|
|
7
|
+
import { AirQuality, BooleanState, BridgedDeviceBasicInformation, CarbonDioxideConcentrationMeasurement, CarbonMonoxideConcentrationMeasurement, ColorControl, ColorControlCluster, DoorLock, DoorLockCluster, ElectricalEnergyMeasurement, ElectricalPowerMeasurement, FormaldehydeConcentrationMeasurement, Identify, IlluminanceMeasurement, LevelControl, OccupancySensing, OnOff, Pm1ConcentrationMeasurement, Pm10ConcentrationMeasurement, Pm25ConcentrationMeasurement, PowerSource, PressureMeasurement, RelativeHumidityMeasurement, SmokeCoAlarm, TemperatureMeasurement, Thermostat, ThermostatCluster, TotalVolatileOrganicCompoundsConcentrationMeasurement, WindowCovering, WindowCoveringCluster, } from 'matterbridge/matter/clusters';
|
|
8
|
+
import { ClusterId, getClusterNameById } from 'matterbridge/matter/types';
|
|
6
9
|
import { deepCopy, deepEqual, isValidArray, isValidNumber, isValidObject, kelvinToRGB, miredToKelvin } from 'matterbridge/utils';
|
|
7
10
|
import * as color from 'matterbridge/utils';
|
|
8
|
-
import { SwitchesTag, NumberTag } from 'matterbridge/matter';
|
|
9
|
-
import { getClusterNameById, ClusterId } from 'matterbridge/matter/types';
|
|
10
|
-
import { ElectricalEnergyMeasurement, ElectricalPowerMeasurement, WindowCoveringCluster, DoorLockCluster, BridgedDeviceBasicInformation, OnOff, Identify, LevelControl, ColorControl, ColorControlCluster, TemperatureMeasurement, BooleanState, RelativeHumidityMeasurement, PressureMeasurement, OccupancySensing, IlluminanceMeasurement, PowerSource, WindowCovering, DoorLock, ThermostatCluster, Thermostat, AirQuality, TotalVolatileOrganicCompoundsConcentrationMeasurement, CarbonDioxideConcentrationMeasurement, CarbonMonoxideConcentrationMeasurement, FormaldehydeConcentrationMeasurement, Pm1ConcentrationMeasurement, Pm25ConcentrationMeasurement, Pm10ConcentrationMeasurement, SmokeCoAlarm, } from 'matterbridge/matter/clusters';
|
|
11
11
|
export class ZigbeeEntity extends EventEmitter {
|
|
12
12
|
log;
|
|
13
13
|
serial = '';
|
package/dist/module.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import path from 'node:path';
|
|
2
2
|
import { MatterbridgeDynamicPlatform } from 'matterbridge';
|
|
3
|
-
import {
|
|
4
|
-
import { isValidNumber, isValidString, waiter } from 'matterbridge/utils';
|
|
3
|
+
import { CYAN, db, debugStringify, dn, er, gn, nf, payloadStringify, rs, wr, zb } from 'matterbridge/logger';
|
|
5
4
|
import { BridgedDeviceBasicInformation, DoorLock } from 'matterbridge/matter/clusters';
|
|
5
|
+
import { isValidNumber, isValidString, waiter } from 'matterbridge/utils';
|
|
6
6
|
import { ZigbeeDevice, ZigbeeGroup } from './entity.js';
|
|
7
7
|
import { Zigbee2MQTT } from './zigbee2mqtt.js';
|
|
8
8
|
export default function initializePlugin(matterbridge, log, config) {
|
package/dist/zigbee2mqtt.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import fs from 'node:fs';
|
|
2
|
-
import path from 'node:path';
|
|
3
1
|
import crypto from 'node:crypto';
|
|
4
2
|
import { EventEmitter } from 'node:events';
|
|
3
|
+
import fs from 'node:fs';
|
|
4
|
+
import path from 'node:path';
|
|
5
5
|
import { connectAsync } from 'mqtt';
|
|
6
|
-
import { AnsiLogger,
|
|
6
|
+
import { AnsiLogger, db, dn, er, gn, hk, id, idn, ign, REVERSE, REVERSEOFF, rs, zb } from 'node-ansi-logger';
|
|
7
7
|
export class Zigbee2MQTT extends EventEmitter {
|
|
8
8
|
log;
|
|
9
9
|
mqttHost;
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-zigbee2mqtt",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.8-dev-20260226-7d45501",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge-zigbee2mqtt",
|
|
9
|
-
"version": "3.0.
|
|
9
|
+
"version": "3.0.8-dev-20260226-7d45501",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"moment": "2.30.1",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-zigbee2mqtt",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.8-dev-20260226-7d45501",
|
|
4
4
|
"description": "Matterbridge zigbee2mqtt plugin",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"node-persist-manager": "2.0.1"
|
|
72
72
|
},
|
|
73
73
|
"overrides": {
|
|
74
|
-
"eslint": "10.0.
|
|
74
|
+
"eslint": "10.0.2",
|
|
75
75
|
"@eslint/js": "10.0.1"
|
|
76
76
|
}
|
|
77
77
|
}
|