zigbee-herdsman-converters 20.8.1 → 20.8.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 +16 -0
- package/converters/toZigbee.js +1 -1
- package/converters/toZigbee.js.map +1 -1
- package/devices/tuya.d.ts.map +1 -1
- package/devices/tuya.js +12 -5
- package/devices/tuya.js.map +1 -1
- package/lib/ikea.d.ts.map +1 -1
- package/lib/ikea.js +3 -1
- package/lib/ikea.js.map +1 -1
- package/lib/types.d.ts +1 -1
- package/lib/types.d.ts.map +1 -1
- package/lib/utils.d.ts +3 -1
- package/lib/utils.d.ts.map +1 -1
- package/lib/utils.js +12 -10
- package/lib/utils.js.map +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [20.8.3](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v20.8.2...v20.8.3) (2024-09-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **ignore:** fix 7f73aee511c6b280aad8ffc4c032e99a9375cb6c ([f417096](https://github.com/Koenkk/zigbee-herdsman-converters/commit/f4170965765547ab1eccf51daa972fa22a70eb9d))
|
|
9
|
+
|
|
10
|
+
## [20.8.2](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v20.8.1...v20.8.2) (2024-09-01)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **ignore:** fix THE01860A ([#7923](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7923)) ([403213e](https://github.com/Koenkk/zigbee-herdsman-converters/commit/403213ef81bf0197da7dca01df1cfcca9d1d374d))
|
|
16
|
+
* **ignore:** Only set `noOffTransition=true` when firmware > 1.0.012 https://github.com/Koenkk/zigbee2mqtt/issues/22030 ([7f73aee](https://github.com/Koenkk/zigbee-herdsman-converters/commit/7f73aee511c6b280aad8ffc4c032e99a9375cb6c))
|
|
17
|
+
* **ignore:** update dependencies ([#7922](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7922)) ([70f2a29](https://github.com/Koenkk/zigbee-herdsman-converters/commit/70f2a29cebeb626b425179ac8913c4e0ea04812c))
|
|
18
|
+
|
|
3
19
|
## [20.8.1](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v20.8.0...v20.8.1) (2024-08-30)
|
|
4
20
|
|
|
5
21
|
|
package/converters/toZigbee.js
CHANGED
|
@@ -1051,7 +1051,7 @@ const converters2 = {
|
|
|
1051
1051
|
// 'MoveToLevelWithOnOff' despite not supporting the cluster; others, like the LEDVANCE SMART+
|
|
1052
1052
|
// plug, do not.)
|
|
1053
1053
|
brightness = transition.specified || brightness === 0 ? 0 : undefined;
|
|
1054
|
-
if (brightness !== undefined && utils.getMetaValue(entity, meta.mapped, 'noOffTransition',
|
|
1054
|
+
if (brightness !== undefined && utils.getMetaValue(entity, meta.mapped, 'noOffTransition', { atLeastOnce: true }, false)) {
|
|
1055
1055
|
logger_1.logger.debug(`Supressing OFF transition since entity has noOffTransition=true`, NS);
|
|
1056
1056
|
brightness = undefined;
|
|
1057
1057
|
}
|