Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update postgres major version to 16 #62

Merged
merged 10 commits into from
Apr 29, 2024
3 changes: 2 additions & 1 deletion bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,14 @@ BUILDPACK_DIR="$(dirname $(dirname $0))"

# config
S3_BUCKET="ci-database-binary"
POSTGRESQL_MAJOR_VERSION=15
POSTGRESQL_MAJOR_VERSION=16
if [ -f "$ENV_DIR/POSTGRESQL_VERSION" ]
then
POSTGRESQL_MAJOR_VERSION="$(cat $ENV_DIR/POSTGRESQL_VERSION)"
fi

case "$POSTGRESQL_MAJOR_VERSION" in
16) POSTGRESQL_VERSION="16.1";;
valeriecodes marked this conversation as resolved.
Show resolved Hide resolved
15) POSTGRESQL_VERSION="15.2";;
14) POSTGRESQL_VERSION="14.5";;
13) POSTGRESQL_VERSION="13.8";;
Expand Down
2 changes: 1 addition & 1 deletion support/pg_versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.6.24;10.22;11.17;12.12;13.8;14.5;15.2
9.6.24;10.22;11.17;12.12;13.8;14.5;15.2;16.1
Loading