zigbee-herdsman 9.0.2 → 9.0.3
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,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [9.0.3](https://github.com/Koenkk/zigbee-herdsman/compare/v9.0.2...v9.0.3) (2026-02-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* ZCL cluster definition issues ([#1633](https://github.com/Koenkk/zigbee-herdsman/issues/1633)) ([4b7d9e5](https://github.com/Koenkk/zigbee-herdsman/commit/4b7d9e57f4aff10ad84e441fac1df32c314e7809))
|
|
9
|
+
|
|
3
10
|
## [9.0.2](https://github.com/Koenkk/zigbee-herdsman/compare/v9.0.1...v9.0.2) (2026-01-27)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# zigbee-herdsman
|
|
2
2
|
|
|
3
|
-

|
|
3
|
+
[](https://www.npmjs.com/package/zigbee-herdsman)
|
|
4
4
|
|
|
5
5
|
zigbee-herdsman is an open source Zigbee gateway solution with Node.js JavaScript runtime back-end.
|
|
6
6
|
|
|
@@ -12,38 +12,7 @@ For automatically generated API reference documentation, see: https://koenkk.git
|
|
|
12
12
|
|
|
13
13
|
# Changelog
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
- `sendWhenActive` has been replaced with `sendWhen: 'active'`
|
|
18
|
-
|
|
19
|
-
## 0.13.0 breaking changes
|
|
20
|
-
|
|
21
|
-
- `controller.touchlinkFactoryReset` has been renamed to `controller.touchlinkFactoryResetFirst()`
|
|
22
|
-
|
|
23
|
-
## 0.12.0 breaking changes
|
|
24
|
-
|
|
25
|
-
- options.network.extenedPanID -> options.network.extendedPanID (typo fix)
|
|
26
|
-
|
|
27
|
-
## 0.11.0 breaking changes
|
|
28
|
-
|
|
29
|
-
- endpoint.bind[].cluster will now return cluster object instead of cluster number
|
|
30
|
-
|
|
31
|
-
## 0.10.0 breaking changes
|
|
32
|
-
|
|
33
|
-
- controller.start() renamed `resetted` start result to `reset`
|
|
34
|
-
|
|
35
|
-
## 0.9.0 breaking changes
|
|
36
|
-
|
|
37
|
-
- Removed controller.softReset() -> use controller.reset('soft') now
|
|
38
|
-
- Removed group.get('groupID') -> use group.groupID now
|
|
39
|
-
|
|
40
|
-
## 0.8.0 breaking changes
|
|
41
|
-
|
|
42
|
-
- Removed device.getEndpoints() -> use device.endpoints now
|
|
43
|
-
- Removed device/endpoint.set() -> directly set properties now (e.g. device.modelID = 'newmodelid')
|
|
44
|
-
- Removed device/endpoint.get() -> directly get properties now (e.g. device.modelID)
|
|
45
|
-
- Removed group.getMembers() -> use group.members now
|
|
46
|
-
- Removed endpoint.deviceIeeeAddress -> use endpoint.getDevice().ieeeAddr
|
|
15
|
+
For complete release notes, including breaking changes, see: [CHANGELOG.md](./CHANGELOG.md)
|
|
47
16
|
|
|
48
17
|
# Related projects
|
|
49
18
|
|
|
@@ -2549,7 +2549,7 @@ exports.Clusters = {
|
|
|
2549
2549
|
physicalClosedLimit: { ID: 0x0000, type: enums_1.DataType.UINT16, min: 1, max: 0xfffe },
|
|
2550
2550
|
motorStepSize: { ID: 0x0001, type: enums_1.DataType.UINT8, max: 0xfe },
|
|
2551
2551
|
status: { ID: 0x0002, type: enums_1.DataType.BITMAP8, write: true, required: true, default: 0 },
|
|
2552
|
-
|
|
2552
|
+
closedLimit: { ID: 0x0010, type: enums_1.DataType.UINT16, write: true, required: true, min: 1, max: 0xfffe, default: 1 },
|
|
2553
2553
|
mode: { ID: 0x0011, type: enums_1.DataType.ENUM8, write: true, required: true, max: 0xfe, default: 0 },
|
|
2554
2554
|
},
|
|
2555
2555
|
commands: {},
|
|
@@ -6254,8 +6254,8 @@ exports.Clusters = {
|
|
|
6254
6254
|
customerName: { ID: 0x0005, type: enums_1.DataType.CHAR_STR, write: true, minLen: 0, maxLen: 16 },
|
|
6255
6255
|
model: { ID: 0x0006, type: enums_1.DataType.OCTET_STR, minLen: 0, maxLen: 16 },
|
|
6256
6256
|
partNumber: { ID: 0x0007, type: enums_1.DataType.OCTET_STR, minLen: 0, maxLen: 16 },
|
|
6257
|
-
productRevision: { ID: 0x0008, type: enums_1.DataType.OCTET_STR, minLen: 0, maxLen:
|
|
6258
|
-
softwareRevision: { ID: 0x000a, type: enums_1.DataType.OCTET_STR, minLen: 0, maxLen:
|
|
6257
|
+
productRevision: { ID: 0x0008, type: enums_1.DataType.OCTET_STR, minLen: 0, maxLen: 6 },
|
|
6258
|
+
softwareRevision: { ID: 0x000a, type: enums_1.DataType.OCTET_STR, minLen: 0, maxLen: 6 },
|
|
6259
6259
|
utilityName: { ID: 0x000b, type: enums_1.DataType.CHAR_STR, minLen: 0, maxLen: 16 },
|
|
6260
6260
|
pod: { ID: 0x000c, type: enums_1.DataType.CHAR_STR, required: true, minLen: 0, maxLen: 16 },
|
|
6261
6261
|
availablePower: { ID: 0x000d, type: enums_1.DataType.INT24, required: true, max: 0xffffff },
|