diff --git a/RELEASE.md b/RELEASE.md index 05be0da7..7889d93a 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,9 @@ # RELEASE NOTES +## v4.1.3 - Alerts & Strings + +* Updated to using pyPowerwall to v0.7.12 which brings some Alerts and String data back for systems with Firmware 23.44.0+. New library uses `/api/solar_powerwall` instead of now depreciated `/api/devices/vitals` by @DerickJohnson in https://github.com/jasonacox/pypowerwall/pull/75 and by @jasonacox in https://github.com/jasonacox/pypowerwall/pull/76. + ## v4.1.2 - Cache 404 Responses * Updated pyPowerwall to v0.7.11 to add cache and extended TTL for 404 responses from Powerwall as identified in issue jasonacox/Powerwall-Dashboard#449 by @jgleigh. This will help reduce load on Powerwall gateway that may be causing rate limiting for some users (Firmware 23.44.0+). diff --git a/VERSION b/VERSION index 4d0dcda0..de197cc3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.1.2 +4.1.3 diff --git a/powerwall.yml b/powerwall.yml index f7de7917..bbde9666 100644 --- a/powerwall.yml +++ b/powerwall.yml @@ -20,7 +20,7 @@ services: - influxdb.env pypowerwall: - image: jasonacox/pypowerwall:0.7.11t42 + image: jasonacox/pypowerwall:0.7.12t44 container_name: pypowerwall hostname: pypowerwall restart: unless-stopped diff --git a/upgrade.sh b/upgrade.sh index 10819bf4..c8d0dc00 100755 --- a/upgrade.sh +++ b/upgrade.sh @@ -6,7 +6,7 @@ set -e # Set Globals -VERSION="4.1.2" +VERSION="4.1.3" CURRENT="Unknown" COMPOSE_ENV_FILE="compose.env" INFLUXDB_ENV_FILE="influxdb.env"