From 6d8482f3c8ae944356d2c016254be06264416f80 Mon Sep 17 00:00:00 2001 From: Jason Cox Date: Sat, 16 Mar 2024 12:13:59 -0700 Subject: [PATCH] Cache 404 Responses #449 --- RELEASE.md | 4 ++++ VERSION | 2 +- powerwall.yml | 2 +- upgrade.sh | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 2d63ea4a..f5d61421 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,9 @@ # RELEASE NOTES +## v4.1.2 - Cache 404 Responses + +* Update pyPowerwall to v0.7.10 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+). + ## 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..f1873158 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.10t42 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"