diff --git a/Dockerfile b/Dockerfile index 062310e..715fe95 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM $BUILD_FROM ENV LANG C.UTF-8 -RUN apk add --no-cache jq nodejs=8.9.3-r0 nodejs-npm && \ +RUN apk add --no-cache jq nodejs=8.11.2-r0 nodejs-npm && \ npm set unsafe-perm true # Copy data for add-on diff --git a/README.md b/README.md index 92564a9..9d5c9d3 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,13 @@ Bridge service for communicating with Gree air conditioners using MQTT broadcast ## Requirements -- NodeJS (>=8.9.3) with NPM +- NodeJS (>=8.11.0) with NPM - An MQTT broker and Gree smart HVAC device on the same network - Docker (for building Hass.io addon) ## Running locally -Make sure you have NodeJS (>=8.9.3) installed and run the following (adjust the arguments to match your setup): +Make sure you have NodeJS (>=8.11.0) installed and run the following (adjust the arguments to match your setup): ```shell npm install @@ -108,6 +108,10 @@ echo -n "{\"psw\": \"YOUR_WIFI_PASSWORD\",\"ssid\": \"YOUR_WIFI_SSID\",\"t\": \" ## Changelog +[1.0.4] + +- Bump NodeJS version to 8.11.2 + [1.0.3] - Fix power off command diff --git a/config.json b/config.json index fac434d..8a57280 100644 --- a/config.json +++ b/config.json @@ -1,6 +1,6 @@ { "name": "Gree HVAC MQTT bridge", - "version": "1.0.3", + "version": "1.0.4", "slug": "gree_hvac_mqtt_bridge", "description": "Hass.io addon for controlling Gree air conditioners using the MQTT climate platform", "startup": "application", diff --git a/package-lock.json b/package-lock.json index 12001d5..83ec853 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "gree-hvac-mqtt-bridge", - "version": "1.0.3", + "version": "1.0.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 43b7230..feefa9c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gree-hvac-mqtt-bridge", - "version": "1.0.3", + "version": "1.0.4", "description": "MQTT Bridge for controlling Gree smart air conditioners", "main": "index.js", "scripts": { @@ -14,7 +14,7 @@ "mqtt": "^2.15.0" }, "engines": { - "node": ">=8.2.1" + "node": ">=8.11.0" }, "os": [ "darwin",