diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 2b7efb5d0..443e5c411 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -4644,9 +4644,9 @@ "dev": true }, "react-is": { - "version": "16.9.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.9.0.tgz", - "integrity": "sha512-tJBzzzIgnnRfEm046qRcURvwQnZVXmuCbscxUO5RWrGTXpon2d4c8mI0D8WE6ydVIm29JiLB6+RslkIvym9Rjw==", + "version": "16.10.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.10.0.tgz", + "integrity": "sha512-WRki2sBb7MTpYp7FtDEmSeGKX2vamYyq3rc9o7fKUG+/DHVyJu69NnvJsiSwwhh2Tt8XN40MQHkDBEXwyfxncQ==", "dev": true }, "read-pkg": { @@ -13014,9 +13014,9 @@ } }, "zigbee-herdsman-converters": { - "version": "11.1.10", - "resolved": "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-11.1.10.tgz", - "integrity": "sha512-Lt6DP6mwgeiL5YEUA60xNp3dzQWltBkf8LjlBK5DLthVVl4h2JbXX+io92ePU8TG+4aXy0bLRCcpsesxzGGVow==", + "version": "11.1.11", + "resolved": "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-11.1.11.tgz", + "integrity": "sha512-wFk1aWZHWFE45ma0v3BYEBmXyHDpwLOy2POhGFqCTBM/Td+8b6KS17clCKMRc9YAhgbf1/IIq0yDUmTfZKVacQ==", "requires": { "debounce": "^1.2.0" } diff --git a/package.json b/package.json index 4de8d46aa..43e982298 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "semver": "*", "winston": "*", "zigbee-herdsman": "0.7.2", - "zigbee-herdsman-converters": "11.1.10" + "zigbee-herdsman-converters": "11.1.11" }, "devDependencies": { "eslint": "*", diff --git a/test/entityPublish.test.js b/test/entityPublish.test.js index 4f4d67fd8..391809068 100644 --- a/test/entityPublish.test.js +++ b/test/entityPublish.test.js @@ -593,7 +593,7 @@ describe('Entity publish', () => { it('Should use transition only once when setting brightness and color temperature for TRADFRI', async () => { const device = zigbeeHerdsman.devices.bulb; const endpoint = device.getEndpoint(1); - const payload = {brightness: 20, state: 'ON', color_temp: 200, transition: 20}; + const payload = {state: 'ON', brightness: 20, color_temp: 200, transition: 20}; await MQTT.events.message('zigbee2mqtt/bulb/set', JSON.stringify(payload)); await flushPromises(); expect(endpoint.command).toHaveBeenCalledTimes(2);