[SCM] PostGIS branch stable-3.2 updated. 3.2.7-64-g773847871
git at osgeo.org
git at osgeo.org
Sat Feb 7 02:50:26 PST 2026
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, stable-3.2 has been updated
via 773847871a9edcb021432a3bcb1f7f8b5b975c89 (commit)
via 14aab0b4fb3bdc0af5b1fdfeb5a3ea62b52920d7 (commit)
from d19a022dfbf9f32ef8095b19dc4036892ecc3683 (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 773847871a9edcb021432a3bcb1f7f8b5b975c89
Author: Regina Obe <lr at pcorp.us>
Date: Sat Feb 7 05:50:17 2026 -0500
Prep for 3.2.9 release
diff --git a/NEWS b/NEWS
index e1b54c1e7..7793acada 100644
--- a/NEWS
+++ b/NEWS
@@ -29,6 +29,7 @@ Proj 4.9+ required.
- #5998, [tiger_geocoder] [security] CVE-2022-2625, make sure tables required
by extension are owned by extension
authored: Andrey Borodin (Yandex), reported by Sergey Bobrov (Kaspersky)
+ - #5985, Fix configure issue with Debian 12 and 13 (Regina Obe, Sandro Santilli)
PostGIS 3.2.8
2024/12/22
diff --git a/Version.config b/Version.config
index 3bd8a71e9..52de94db6 100644
--- a/Version.config
+++ b/Version.config
@@ -5,7 +5,7 @@
POSTGIS_MAJOR_VERSION=3
POSTGIS_MINOR_VERSION=2
-POSTGIS_MICRO_VERSION=9dev
+POSTGIS_MICRO_VERSION=9
# Liblwgeom interface versioning, reset to 0:0:0 (cur:age:rev)
# when changing POSTGIS_MINOR_VERSION
diff --git a/doc/release_notes.xml b/doc/release_notes.xml
index 81cb2d2ba..5cbc4aa88 100644
--- a/doc/release_notes.xml
+++ b/doc/release_notes.xml
@@ -2,6 +2,39 @@
<appendix id="release_notes">
<title>Appendix</title>
<subtitle>Release Notes</subtitle>
+
+ <sect1>
+ <title>PostGIS 3.2.9</title>
+ <para>2026/02/07</para>
+ <para>PostgreSQL 9.6-15 required. GEOS 3.6+ required but GEOS 3.9+ to take advantage of all features. Proj 4.9+ required.</para>
+ <simplesect>
+ <title>Bug Fixes</title>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/6023">6023</ulink>, Fix robustness issue in ptarray_contains_point (Sandro Santilli)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5951">5951</ulink>, [topology] Fix crash in ST_GetFaceEdges with corrupted topology (Sandro Santilli)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5947">5947</ulink>, [topology] Fix crash in ST_ModEdgeHeal (Sandro Santilli)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5925">5925</ulink>, #5946, [topology] Have GetFaceContainingPoint survive EMPTY edges (Sandro Santilli)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5922">5922</ulink>, [topology] Fix crash in TopoGeo_AddLinestring with EMPTY input (Sandro Santilli)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5908">5908</ulink>, [topology] Fix crash in GetFaceContainingPoint (Sandro Santilli)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5907">5907</ulink>, [topology] Fix crash in TopoGeo_AddPolygon with EMPTY input (Sandro Santilli)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5876">5876</ulink>, Fix ST_AddPoint with empty point argument (Paul Ramsey)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5818">5818</ulink>, GT-244 Fix CG_IsSolid function (Loïc Bartoletti)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5885">5885</ulink>, Fix documentation about grid-based overlay operations (Sandro Santilli)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5921">5921</ulink>, Crash freeing uninitialized pointer (Arsenii Mukhin)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5912">5912</ulink>, Crash on GML with xlink and no prefix (Paul Ramsey)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5905">5905</ulink>, Crash on deeply nested geometries (Paul Ramsey)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5909">5909</ulink>, ST_ValueCount crashes on empty table (Paul Ramsey)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5917">5917</ulink>, ST_Relate becomes unresponsive (Paul Ramsey)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5991">5991</ulink>, CircularString distance error (Paul Ramsey)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5962">5962</ulink>, Consistent clipping of MULTI/POINT (Paul Ramsey)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5989">5989</ulink>, CurvePolygon distance error (Paul Ramsey)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/6028">6028</ulink>, Crash indexing malformed empty polygon (Paul Ramsey</para>)
+ <para><ulink url="https://github.com/postgis/postgis/pull/841">GH-841</ulink>, small memory leak in address_standardizer (Maxim Korotkov)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5998">5998</ulink>, [tiger_geocoder] [security] CVE-2022-2625, make sure tables required
+ by extension are owned by extension
+ authored: Andrey Borodin (Yandex), reported by Sergey Bobrov (Kaspersky)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5985">5985</ulink>, Fix configure issue with Debian 12 and 13 (Regina Obe, Sandro Santilli)</para>
+ </simplesect>
+ </sect1>
<sect1>
<title>PostGIS 3.2.8</title>
<para>2024/12/22</para>
commit 14aab0b4fb3bdc0af5b1fdfeb5a3ea62b52920d7
Author: Regina Obe <lr at pcorp.us>
Date: Sat Feb 7 05:47:51 2026 -0500
Fix support for Debian's libtool version
Version string is:
libtoolize (GNU libtool) 2.5.4 Debian-2.5.4-4
Closes #5985 for PostGIS 3.2.9
diff --git a/autogen.sh b/autogen.sh
index 107720845..c295435a2 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -62,8 +62,12 @@ if [ ! ${LIBTOOLIZE} ]; then
echo "Missing libtoolize!"
exit 1
fi
-LIBTOOLIZE_VER=`${LIBTOOLIZE} --version | ${GREP} -E "^.*[0-9]\.[0-9]" | ${SED} 's/^.* //'`
+# Debian12: libtoolize (GNU libtool) 2.4.7
+# Debian13: libtoolize (GNU libtool) 2.5.4 Debian-2.5.4-4
+LIBTOOLIZE_VER=`${LIBTOOLIZE} --version | ${GREP} -E "^.*[0-9]\.[0-9]" | ${SED} 's/^[^0-9]*//;s/ .*//'`
+echo "LIBTOOLIZE_VER=${LIBTOOLIZE_VER}"
LIBTOOLIZE_MAJOR_VER=`echo ${LIBTOOLIZE_VER} | cut -f1 -d'.'`
+echo "LIBTOOLIZE_MAJOR_VER=${LIBTOOLIZE_MAJOR_VER}"
# TODO: Check libtool version and add --install option only for 1.9b+
LTOPTS="--force --copy"
-----------------------------------------------------------------------
Summary of changes:
NEWS | 1 +
Version.config | 2 +-
autogen.sh | 6 +++++-
doc/release_notes.xml | 33 +++++++++++++++++++++++++++++++++
4 files changed, 40 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list