Skip to content

Commit d9221f6

Browse files
authored
Merge pull request #707 from jasonacox/v4.8.6
V4.8.6
2 parents 054c37b + b57f0ea commit d9221f6

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

RELEASE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# RELEASE NOTES
22

3+
## v4.8.6 - InfluxDB File Limits and Configuration Updates
4+
5+
* Add ulimits configuration to InfluxDB service to resolve "too many open files" errors by setting soft and hard limits to 65536 by @cwagz in https://github.com/jasonacox/Powerwall-Dashboard/issues/705
6+
* Add enhanced timezone validation with interactive browse feature (`?` at prompt) supporting filters and multi-level IANA zones (e.g., `America/Argentina/Buenos_Aires`) and POSIX TZ strings (e.g., `GMT+5`).
7+
* Add `timezone-test.sh` standalone test script for timezone validation with interactive and non-interactive modes.
8+
* Minor configuration file changes by @BuongiornoTexas in https://github.com/jasonacox/Powerwall-Dashboard/pull/706
9+
* Quote GF_INSTALL_PLUGINS value in grafana.env.sample by @rlerdorf in https://github.com/jasonacox/Powerwall-Dashboard/pull/703
10+
311
## v4.8.5 - Setup and Verify
412

513
* Add enhanced log display options to `verify.sh`: supports `--logs` and `--no-logs` flags to control log output, and interactive prompt for log viewing. Log output is now cleaner and only shown when requested.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.8.5
1+
4.8.6

powerwall.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ services:
44
container_name: influxdb
55
hostname: influxdb
66
restart: unless-stopped
7+
ulimits:
8+
nofile:
9+
soft: 65536
10+
hard: 65536
711
volumes:
812
- type: bind
913
source: ./influxdb.conf

upgrade.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
set -e
77

88
# Set Globals
9-
VERSION="4.8.5"
9+
VERSION="4.8.6"
1010
CURRENT="Unknown"
1111
COMPOSE_ENV_FILE="compose.env"
1212
INFLUXDB_ENV_FILE="influxdb.env"

0 commit comments

Comments
 (0)