[postgis-tickets] [SCM] PostGIS branch stable-3.2 updated. 3.2.4-31-gbc9de9099
git at osgeo.org
git at osgeo.org
Sun May 28 22:26:40 PDT 2023
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 bc9de90993ae69e6f45f39fbbbb45dc237deb310 (commit)
from 4a97397ea5d0b9a77b13f58f69c7b2d3b3961ba4 (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 bc9de90993ae69e6f45f39fbbbb45dc237deb310
Author: Regina Obe <lr at pcorp.us>
Date: Mon May 29 01:26:32 2023 -0400
Prep for 3.2.5 release
diff --git a/NEWS b/NEWS
index d9dad1a66..a7f00d108 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,5 @@
-PostGIS 3.2.5dev
-2023/MM/DD
+PostGIS 3.2.5
+2023/05/28
This version requires PostgreSQL 9.6-15, GEOS 3.6 or higher, and Proj 4.9+
Additional features are enabled if you are running GEOS 3.9+
diff --git a/README.postgis b/README.postgis
index a97a5cddd..8b499642f 100644
--- a/README.postgis
+++ b/README.postgis
@@ -1,8 +1,8 @@
PostGIS - Geographic Information Systems Extensions to PostgreSQL
=================================================================
-:Version: 3.2.4
-:Date: 2022-11-12
+:Version: 3.2.5
+:Date: 2023-05-29
:Website: https://postgis.net
This distribution contains a module which implements GIS simple features, ties
diff --git a/Version.config b/Version.config
index bb3fd2dfb..893dd170a 100644
--- a/Version.config
+++ b/Version.config
@@ -5,7 +5,7 @@
POSTGIS_MAJOR_VERSION=3
POSTGIS_MINOR_VERSION=2
-POSTGIS_MICRO_VERSION=5dev
+POSTGIS_MICRO_VERSION=5
# 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 e27769746..b18ac2300 100644
--- a/doc/release_notes.xml
+++ b/doc/release_notes.xml
@@ -2,6 +2,34 @@
<appendix id="release_notes">
<title>Appendix</title>
<subtitle>Release Notes</subtitle>
+ <sect1>
+ <title>PostGIS 3.2.5</title>
+ <para>2023/05/29</para>
+ <para>This version requires PostgreSQL 9.6-15, GEOS 3.6 or higher, and Proj 4.9+
+ Additional features are enabled if you are running GEOS 3.9+
+ (and ST_MakeValid enhancements with 3.10+),
+ Proj 6.1+, and PostgreSQL 14+.</para>
+ <simplesect>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5384">5384</ulink>, Fix crash in ST_AsGML when given id is longer than given prefix
+ (Sandro Santilli</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5380">5380</ulink>, Fix 2.5 upgrades with views using geography based ST_Distance
+ (Sandro Santilli)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5106">5106</ulink>, Fix segfault in ST_RemEdgeNewFace/ST_RemEdgeModFace
+ when no edge side-faces are found (Sandro Santilli)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5313">5313</ulink>, Fix memory access issue in ST_InterpolateRaster (Paul Ramsey)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5338">5338</ulink>, Dump/Restore of raster table fails on
+ enforce_coverage_tile_rast constraint (Regina Obe)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5315">5315</ulink>, #5318, #5319, #5320, #5342 crashes on infinite coordinates
+ (Regina Obe, Paul Ramsey)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5344">5344</ulink>, Include topology id sequence state in dumps (Sandro Santilli)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5288">5288</ulink>, ST_LineCrossingDirection multi-cross error (Paul Ramsey)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5347">5347</ulink>, _ST_BestSRID crashes on ARM with infinite geometries (Regina Obe)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5363">5363</ulink>, Make ST_ClusterDBScan interruptable (Paul Ramsey)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5378">5378</ulink>, ST_Buffer(geography) drops SRID (Paul Ramsey)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5331">5331</ulink>, [postgis_tiger_geocoder] reverse_geocode, prefer addressable ranges
+ (Regina Obe, Locance)</para>
+ </simplesect>
+ </sect1>
<sect1>
<title>PostGIS 3.2.4</title>
<para>2022/11/12</para>
diff --git a/extensions/upgradeable_versions.mk b/extensions/upgradeable_versions.mk
index 66fb0e50b..5033b4ba4 100644
--- a/extensions/upgradeable_versions.mk
+++ b/extensions/upgradeable_versions.mk
@@ -68,6 +68,7 @@ UPGRADEABLE_VERSIONS = \
3.0.6 \
3.0.7 \
3.0.8 \
+ 3.0.9 \
3.1.0 \
3.1.1 \
3.1.2 \
@@ -77,6 +78,7 @@ UPGRADEABLE_VERSIONS = \
3.1.6 \
3.1.7 \
3.1.8 \
+ 3.1.9 \
3.2.0 \
3.2.1 \
3.2.2 \
-----------------------------------------------------------------------
Summary of changes:
NEWS | 4 ++--
README.postgis | 4 ++--
Version.config | 2 +-
doc/release_notes.xml | 28 ++++++++++++++++++++++++++++
extensions/upgradeable_versions.mk | 2 ++
5 files changed, 35 insertions(+), 5 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list