diff --git a/RELEASE.md b/RELEASE.md index 2d63ea4a..05be0da7 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,11 @@ # RELEASE NOTES +## 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+). +* Updated logic to disable vitals API calls for Firmware 23.44.0+ +* Added rate limit detection (429) and cooldown mode to allow Powerwall gateway time to recover. + ## v4.1.1 - Revert Change * Problems identified with older `docker-compose` versions. Revering upgrade.sh changes but pushing new plugin list in `grafana.env.sample` for new installations. diff --git a/VERSION b/VERSION index 627a3f43..4d0dcda0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.1.1 +4.1.2 diff --git a/powerwall.yml b/powerwall.yml index b47fb443..f7de7917 100644 --- a/powerwall.yml +++ b/powerwall.yml @@ -20,7 +20,7 @@ services: - influxdb.env pypowerwall: - image: jasonacox/pypowerwall:0.7.9t42 + image: jasonacox/pypowerwall:0.7.11t42 container_name: pypowerwall hostname: pypowerwall restart: unless-stopped diff --git a/upgrade.sh b/upgrade.sh index bebe31d7..10819bf4 100755 --- a/upgrade.sh +++ b/upgrade.sh @@ -6,7 +6,7 @@ set -e # Set Globals -VERSION="4.1.1" +VERSION="4.1.2" CURRENT="Unknown" COMPOSE_ENV_FILE="compose.env" INFLUXDB_ENV_FILE="influxdb.env"