[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0beta1-26-g375224ac6
git at osgeo.org
git at osgeo.org
Tue Jul 12 00:45:29 PDT 2022
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, master has been updated
via 375224ac689a928aeac35533daffb4f6f3fe20e6 (commit)
from b1d2c5f3b9ec1dd7648daa1adb89379cf65b35c6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 375224ac689a928aeac35533daffb4f6f3fe20e6
Author: Sandro Santilli <strk at kbt.io>
Date: Tue Jul 12 07:46:30 2022 +0200
check_all_upgrades: add support for PostgreSQL 15 and prereleases
diff --git a/utils/check_all_upgrades.sh b/utils/check_all_upgrades.sh
index ace5ad351..d416979fe 100755
--- a/utils/check_all_upgrades.sh
+++ b/utils/check_all_upgrades.sh
@@ -5,7 +5,7 @@ EXTDIR=`pg_config --sharedir`/extension/
CTBDIR=`pg_config --sharedir`/contrib/
TMPDIR=/tmp/check_all_upgrades-$$-tmp
PGVER=`pg_config --version | awk '{print $2}'`
-PGVER_MAJOR=$(echo "${PGVER}" | sed 's/\.[^\.]*//')
+PGVER_MAJOR=$(echo "${PGVER}" | sed 's/\.[^\.]*//' | sed 's/\(alpha\|beta\|rc\).*//' )
echo "INFO: PostgreSQL version: ${PGVER} [${PGVER_MAJOR}]"
BUILDDIR=$PWD # TODO: allow override ?
@@ -87,6 +87,7 @@ minimum_postgis_version_for_postgresql_major_version()
12:2.5
13:3.0
14:3.1
+15:3.2
EOF
fi
-----------------------------------------------------------------------
Summary of changes:
utils/check_all_upgrades.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list