diff --git a/eufy-ha-mqtt-bridge/CHANGELOG.md b/eufy-ha-mqtt-bridge/CHANGELOG.md index 1da2ac5..03225df 100644 --- a/eufy-ha-mqtt-bridge/CHANGELOG.md +++ b/eufy-ha-mqtt-bridge/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [1.9.0] - 2021-02-05 +- Update `eufy-ha-mqtt-bridge` to `0.2.10` [Changelog](https://github.com/matijse/eufy-ha-mqtt-bridge/releases) +- Add new configration option `mqtt.keepalive` + ## [1.8.0] - 2021-01-28 - Update `eufy-ha-mqtt-bridge` to `0.2.9` [Changelog](https://github.com/matijse/eufy-ha-mqtt-bridge/releases) diff --git a/eufy-ha-mqtt-bridge/Dockerfile b/eufy-ha-mqtt-bridge/Dockerfile index c68f67d..ed44afe 100644 --- a/eufy-ha-mqtt-bridge/Dockerfile +++ b/eufy-ha-mqtt-bridge/Dockerfile @@ -1,3 +1,3 @@ # sneaky trick to get around the requirement of {arch}-variabe based docker repositories -FROM maxwinterstein/homeassistant-addon-eufy-ha-mqtt-bridge:1.8.0 \ No newline at end of file +FROM maxwinterstein/homeassistant-addon-eufy-ha-mqtt-bridge:1.9.0 \ No newline at end of file diff --git a/eufy-ha-mqtt-bridge/Dockerfile-real b/eufy-ha-mqtt-bridge/Dockerfile-real index 8f35e6b..70f5701 100644 --- a/eufy-ha-mqtt-bridge/Dockerfile-real +++ b/eufy-ha-mqtt-bridge/Dockerfile-real @@ -1,7 +1,7 @@ FROM hassioaddons/debian-base ENV LANG C.UTF-8 -ARG VERSION=0.2.9 +ARG VERSION=0.2.10 # install node and build tools (needed by node-pre-gy) RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt install -y nodejs g++ make python diff --git a/eufy-ha-mqtt-bridge/config.json b/eufy-ha-mqtt-bridge/config.json index 55c9178..6b5973a 100644 --- a/eufy-ha-mqtt-bridge/config.json +++ b/eufy-ha-mqtt-bridge/config.json @@ -1,6 +1,6 @@ { "name": "Eufy Home Assistant MQTT Bridge", - "version": "1.8.0", + "version": "1.9.0", "slug": "eufy-ha-mqtt-bridge", "description": "Publish events as MQTT messages", "arch": [ @@ -19,7 +19,8 @@ "mqtt": { "url": "mqtt://192.168.x.x:1883", "username": "homeassistant", - "password": "homeassistant" + "password": "homeassistant", + "keepalive": 60 }, "log_level": "info" }, @@ -31,7 +32,9 @@ "mqtt": { "url": "str", "username": "str?", - "password": "str?" + "password": "str?", + "keepalive": "int?" + }, "log_level": "list(error|warn|info|http|verbose|debug|silly)" },