fix(ignore): update zigbee-herdsman-converters to 25.99.0 (#30481)

Co-authored-by: burmistrzak <61958704+burmistrzak@users.noreply.github.com>
This commit is contained in:
Koen Kanters
2026-01-04 18:51:31 +00:00
committed by GitHub
co-authored by burmistrzak
parent 1147cf16dd
commit 3adf7d5d8e
3 changed files with 12 additions and 9 deletions
+1 -1
View File
@@ -63,7 +63,7 @@
"winston-transport": "^4.9.0",
"ws": "^8.18.1",
"zigbee-herdsman": "8.0.2",
"zigbee-herdsman-converters": "25.98.0",
"zigbee-herdsman-converters": "25.99.0",
"zigbee2mqtt-frontend": "0.9.21",
"zigbee2mqtt-windfront": "2.6.2"
},
+5 -5
View File
@@ -75,8 +75,8 @@ importers:
specifier: 8.0.2
version: 8.0.2
zigbee-herdsman-converters:
specifier: 25.98.0
version: 25.98.0
specifier: 25.99.0
version: 25.99.0
zigbee2mqtt-frontend:
specifier: 0.9.21
version: 0.9.21
@@ -1467,8 +1467,8 @@ packages:
utf-8-validate:
optional: true
zigbee-herdsman-converters@25.98.0:
resolution: {integrity: sha512-GBLmtRnxAvWRxb6fnAGjq3OmZq1mnO3XfH5HgL5apy1iirTzvshVkPdZ3YwNbK2KYRNrmQEtYjugDNMj5IOopw==}
zigbee-herdsman-converters@25.99.0:
resolution: {integrity: sha512-tg9sj9HlUpd/fB21EqjfD9E5JTjURL8BBtnicNGN9u+d6pQN6AvJCRKYp3bneZ4boDfQ8eTLqkKILb+WXU0oiw==}
engines: {node: '>=20.15.0'}
zigbee-herdsman@8.0.2:
@@ -2748,7 +2748,7 @@ snapshots:
ws@8.18.3: {}
zigbee-herdsman-converters@25.98.0:
zigbee-herdsman-converters@25.99.0:
dependencies:
iconv-lite: 0.7.1
semver: 7.7.3
+6 -3
View File
@@ -1218,10 +1218,13 @@ describe("Extension: HomeAssistant", () => {
},
max_temp: "30",
min_temp: "5",
mode_command_topic: "zigbee2mqtt/bosch_rm230z/set/system_mode",
mode_state_template: "{{ value_json.system_mode }}",
mode_command_topic: "zigbee2mqtt/bosch_rm230z/set",
mode_state_template:
"{% set values = {'schedule':'auto','manual':'heat','pause':'off'} %}{% set value = value_json.operating_mode %}{% if value == \"manual\" %}{{ value_json.system_mode }}{% else %}{{ values[value] if value in values.keys() else 'off' }}{% endif %}",
mode_command_template:
"{% set values = { 'auto':'schedule','heat':'manual','cool':'manual','off':'pause'} %}{% if value == \"heat\" or value == \"cool\" %}{\"operating_mode\": \"manual\", \"system_mode\": \"{{ value }}\"}{% else %}{\"operating_mode\": \"{{ values[value] if value in values.keys() else 'pause' }}\"}{% endif %}",
mode_state_topic: "zigbee2mqtt/bosch_rm230z",
modes: ["off", "heat", "cool"],
modes: ["off", "heat", "cool", "auto"],
name: null,
object_id: "bosch_rm230z",
origin,