[SCM] PostGIS branch stable-3.2 updated. 3.2.5-18-g451803af5
git at osgeo.org
git at osgeo.org
Sun Nov 19 18:39:55 PST 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 451803af5506f42da2acad38c69b645d68e77fc8 (commit)
via 070e7929f1a47e5708d07f9a9e3d458b35120c43 (commit)
from eeef9f8eae4945eb3a228395484bfe8a7cb05dcb (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 451803af5506f42da2acad38c69b645d68e77fc8
Author: Regina Obe <lr at pcorp.us>
Date: Sun Nov 19 21:39:40 2023 -0500
Prep for PostGIS 3.2.6
diff --git a/README.postgis b/README.postgis
index 8b499642f..aa972d412 100644
--- a/README.postgis
+++ b/README.postgis
@@ -1,8 +1,8 @@
PostGIS - Geographic Information Systems Extensions to PostgreSQL
=================================================================
-:Version: 3.2.5
-:Date: 2023-05-29
+:Version: 3.2.6
+:Date: 2023-11-19
:Website: https://postgis.net
This distribution contains a module which implements GIS simple features, ties
diff --git a/Version.config b/Version.config
index c6a0ac668..745cd8ade 100644
--- a/Version.config
+++ b/Version.config
@@ -5,7 +5,7 @@
POSTGIS_MAJOR_VERSION=3
POSTGIS_MINOR_VERSION=2
-POSTGIS_MICRO_VERSION=6dev
+POSTGIS_MICRO_VERSION=6
# 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 1b1ac1bbb..0b54c1ea9 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.6</title>
+ <para>2023/11/19</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>
+ <title>Bug Fixes</title>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/"></ulink>5568, Improve robustness of topology face split handling (Sandro Santilli)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/"></ulink>5548, Fix box-filtered validity check of topologies with edge-less faces
+ (Sandro Santilli)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/"></ulink>5494, Fix double-upgrade with view using st_dwithin(text, ...)
+ (Sandro Santilli)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/"></ulink>5450, Fix macro expansion recursion on powerpc architectures.
+ (Bas Couwenberg)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/"></ulink>5403, [postgis_topology] Fix ValidateTopology(bbox)
+ without topology in search_path (Sandro Santilli)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/"></ulink>5410, [postgis_raster] ST_Value bilinear resample,
+ don't throw an error if Band has no NODATA value
+ (Regina Obe)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/"></ulink>5385, Postgres malloc assertion fail when
+ using pg_cancel_backend with ST_AsMVT
+ (Regina Obe, Paul Ramsey)</para>
+ <para>Fix JsonB casting issue (Paul Ramsey)</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/"></ulink>5616, Fix to find docbook on newer docbook installs (Regina Obe)</para>
+ </simplesect>
+ </sect1>
<sect1>
<title>PostGIS 3.2.5</title>
<para>2023/05/29</para>
diff --git a/extensions/upgradeable_versions.mk b/extensions/upgradeable_versions.mk
index dba18b6f9..f7f46d52e 100644
--- a/extensions/upgradeable_versions.mk
+++ b/extensions/upgradeable_versions.mk
@@ -69,6 +69,7 @@ UPGRADEABLE_VERSIONS = \
3.0.7 \
3.0.8 \
3.0.9 \
+ 3.0.10 \
3.1.0 \
3.1.1 \
3.1.2 \
@@ -79,6 +80,7 @@ UPGRADEABLE_VERSIONS = \
3.1.7 \
3.1.8 \
3.1.9 \
+ 3.1.10 \
3.2.0 \
3.2.1 \
3.2.2 \
commit 070e7929f1a47e5708d07f9a9e3d458b35120c43
Author: Regina Obe <lr at pcorp.us>
Date: Sun Nov 19 20:12:57 2023 -0500
Fix to find docbook on newer docbook installs
References #5616 for PostGIS 3.2.6
diff --git a/NEWS b/NEWS
index 330c1c9b3..99ce7a830 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,5 @@
-PostGIS 3.2.6dev
-2023/xx/xx
+PostGIS 3.2.6
+2023/11/19
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+
@@ -24,6 +24,7 @@ Proj 6.1+, and PostgreSQL 14+.
using pg_cancel_backend with ST_AsMVT
(Regina Obe, Paul Ramsey)
- Fix JsonB casting issue (Paul Ramsey)
+ - #5616, Fix to find docbook on newer docbook installs (Regina Obe)
* Breaking Changes *
diff --git a/configure.ac b/configure.ac
index 285cefcf2..cd01e167d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -226,6 +226,7 @@ if test "x$XSLBASE" = "x"; then
SEARCHPATH="
/usr/share/sgml/docbook/xsl-stylesheets
/usr/share/xml/docbook/stylesheet/docbook-xsl
+ /usr/share/xml/docbook/stylesheet/docbook-xsl-ns
/usr/share/xml/docbook/stylesheet/nwalsh
/usr/share/sgml/docbook/stylesheet/xsl/nwalsh
/opt/local/share/xsl/docbook-xsl
-----------------------------------------------------------------------
Summary of changes:
NEWS | 5 +++--
README.postgis | 4 ++--
Version.config | 2 +-
configure.ac | 1 +
doc/release_notes.xml | 28 ++++++++++++++++++++++++++++
extensions/upgradeable_versions.mk | 2 ++
6 files changed, 37 insertions(+), 5 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list