Update zigbee-herdsman-converters to 14.0.139 (#7339)

* Update zigbee-herdsman-converters to 14.0.139

* Update configure.test.js

Co-authored-by: Koenkk <Koenkk@users.noreply.github.com>
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
This commit is contained in:
github-actions[bot]
2021-05-04 22:43:04 +02:00
committed by GitHub
co-authored by Koenkk Koen Kanters
parent a77e857868
commit beacbd3496
3 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -14759,9 +14759,9 @@
}
},
"zigbee-herdsman-converters": {
"version": "14.0.138",
"resolved": "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.138.tgz",
"integrity": "sha512-gqrKG+B4E9uoOhrzTM+Wopq5ckKiqIuIs2EFOopIb7XLFHJ7U7QBNlBG/iOgxNO8bHaK5rsenESgDsSm+ibeYQ==",
"version": "14.0.139",
"resolved": "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.139.tgz",
"integrity": "sha512-JbL8fP8w3Jo8x9dhdAYlGCQJcYWhxoWpKFPIxeejGk9fqPWaa5CPoZfWReBMpMKuwEXBqdcnLr3IPC/ps7emPQ==",
"requires": {
"axios": "^0.21.1",
"buffer-crc32": "^0.2.13",
+1 -1
View File
@@ -53,7 +53,7 @@
"winston-syslog": "^2.4.4",
"ws": "^7.3.1",
"zigbee-herdsman": "0.13.93",
"zigbee-herdsman-converters": "14.0.138",
"zigbee-herdsman-converters": "14.0.139",
"zigbee2mqtt-frontend": "0.4.2"
},
"devDependencies": {
+4 -4
View File
@@ -154,11 +154,11 @@ describe('Configure', () => {
});
it('Fail to configure via MQTT when device has no configure', async () => {
await MQTT.events.message('zigbee2mqtt/bridge/request/device/configure', stringify({id: "bulb_enddevice", transaction: 20}));
await MQTT.events.message('zigbee2mqtt/bridge/request/device/configure', stringify({id: "0x90fd9ffffe4b64ax", transaction: 20}));
await flushPromises();
expect(MQTT.publish).toHaveBeenCalledWith(
'zigbee2mqtt/bridge/response/device/configure',
stringify({"data":{"id": "bulb_enddevice"},"status":"error","error": "Device 'bulb_enddevice' cannot be configured","transaction":20}),
stringify({"data":{"id": "0x90fd9ffffe4b64ax"},"status":"error","error": "Device 'ZNLDP12LM' cannot be configured","transaction":20}),
{retain: false, qos: 0}, expect.any(Function)
);
});
@@ -178,9 +178,9 @@ describe('Configure', () => {
});
it('Legacy api: Should skip reconfigure when device does not require this', async () => {
await MQTT.events.message('zigbee2mqtt/bridge/configure', '0x0017880104e45553');
await MQTT.events.message('zigbee2mqtt/bridge/configure', '0x90fd9ffffe4b64ax');
await flushPromises();
expect(logger.warn).toHaveBeenCalledWith(`Skipping configure of 'bulb_enddevice', device does not require this.`)
expect(logger.warn).toHaveBeenCalledWith(`Skipping configure of 'ZNLDP12LM', device does not require this.`)
});
it('Should not configure when interviewing', async () => {