v0.6.1 — docker-compose fresh clone fix
Fix
-
docker-compose / libpq keyword/value connection strings:
addKeepaliveParamswas appending?keepalives=1&…to every connection string, which only works for URI-form URLs. With the docker-compose defaultDATABASE_URL=host=… sslmode=disable, the?glued onto the last keyword's value and libpq rejected startup with:libpq: failed (invalid sslmode value: "disable?keepalives=1&keepalives_idle=15&...")The helper now detects URI vs keyword/value form and joins with the right separator (
?/&vs space). The TimescaleDBoptions=…append inSystem.Configwas routed through the same helper, so a freshdocker compose upnow boots cleanly.
Full changelog: v0.6.0...v0.6.1