You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(): upgrade to pg18 and upgrade to latest others (#296)
* feat(): upgrade to pg18 and upgrade to latest others
* chore: remove pg 18 due repmgr compatbility
* Revert "chore: remove pg 18 due repmgr compatbility"
This reverts commit 42bc9ee.
* feat: upgrade haproxy to latest
* chore: fix conflicts
* chore: upgrade minors
* chore: revert back to 2.8 haproxy
* fix: align timescale dockerfile
* Conditional push for Docker images on non-PR events
* Update Go version in Dockerfile to 1.26
* lint: remove extra spaces
Removed unnecessary blank lines and ensured proper formatting in the CI workflow.
* fix: replace deprecated apt-key with gpg --dearmor for TimescaleDB repos
apt-key was removed in Debian 12+/Ubuntu 22.04+. Updated all TimescaleDB
Dockerfiles to use modern signed-by keyring approach instead.
Fixes build error:
/bin/sh: 1: apt-key: not found
* chore: update PostgreSQL to latest minor versions (Feb 2026)
- pg15: 15.15 → 15.17
- pg16: 16.11 → 16.13
- pg17: 17.7 → 17.9
- pg18: 18.1 → 18.3
Latest release: February 26, 2026
* fix(pg15): remove haproxy from initial install to prevent downgrade
Haproxy was installed twice - once from default repos and again from
haproxy.debian.net. This caused a downgrade error. Now only installed
from the specific versioned repo.
* fix(pg18): update Go builder from 1.23 to 1.26
Project go.mod requires Go 1.26 but Dockerfile was using golang:1.23.
This caused build failure: 'go.mod requires go >= 1.26'
---------
Co-authored-by: Daniel Graña <dangra@gmail.com>
# make the "en_US.UTF-8" locale so postgres will be utf-8 enabled by default
44
+
RUN set -eux; \
45
+
if [ -f /etc/dpkg/dpkg.cfg.d/docker ]; then \
46
+
# if this file exists, we're likely in "debian:xxx-slim", and locales are thus being excluded so we need to remove that exclusion (since we need locales)
0 commit comments