[postgis-tickets] [SCM] PostGIS branch stable-3.2 updated. 3.2.2-34-g2dac42a43

git at osgeo.org git at osgeo.org
Thu Aug 18 14:03: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, stable-3.2 has been updated
       via  2dac42a43f055a13c660fd58a5906951a2b93efb (commit)
      from  ae36c74879b69e0fa1d6f6dba8e26702db128ffa (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 2dac42a43f055a13c660fd58a5906951a2b93efb
Author: Regina Obe <lr at pcorp.us>
Date:   Thu Aug 18 17:03:24 2022 -0400

    Prep for 3.2.3 release

diff --git a/NEWS b/NEWS
index b1093fc11..6dd334dfd 100644
--- a/NEWS
+++ b/NEWS
@@ -16,6 +16,7 @@ Proj 6.1+, and PostgreSQL 14+.
   - #5032, Correctly read extent off multi-key GIST indexes (Paul Ramsey)
   - #5181, Reset proj error state after failed parse (Paul Ramsey)
   - #5171, Short circuit geodesic distance when inputs equal (Paul Ramsey)
+  - Fix potential buffer overflow in long transaction locks (Paul Ramsey)
 
 PostGIS 3.2.2
 2022/07/22
diff --git a/README.postgis b/README.postgis
index fe9e8dd23..eb4f6be3c 100644
--- a/README.postgis
+++ b/README.postgis
@@ -1,8 +1,8 @@
 PostGIS - Geographic Information Systems Extensions to PostgreSQL
 =================================================================
 
-:Version: 3.2.2
-:Date: 2022-07-22
+:Version: 3.2.3
+:Date: 2022-08-18
 :Website: https://postgis.net
 
 This distribution contains a module which implements GIS simple features, ties
@@ -102,7 +102,14 @@ this to work.
   To get packages on apt-based systems:
 
     apt-get install libprotobuf-c-dev protobuf-c-compiler
+* GTK (Optional,  Version 2 series: 2.2.0 or higher)
 
+  The GTK library is required to build the GUI version of shp2pgsql
+  loader.
+
+  To get packages on apt-based systems:
+
+    apt-get install libgtk2.0-dev
 CONFIGURATION
 -------------
 
diff --git a/Version.config b/Version.config
index 1fe8b354e..29cf22f59 100644
--- a/Version.config
+++ b/Version.config
@@ -5,7 +5,7 @@
 
 POSTGIS_MAJOR_VERSION=3
 POSTGIS_MINOR_VERSION=2
-POSTGIS_MICRO_VERSION=3dev
+POSTGIS_MICRO_VERSION=3
 
 # Liblwgeom interface versioning, reset to 0:0:0 (cur:age:rev)
 # when changing POSTGIS_MINOR_VERSION
diff --git a/ci/winnie/package_postgis.sh b/ci/winnie/package_postgis.sh
index a9d622a23..28d8dc3e0 100644
--- a/ci/winnie/package_postgis.sh
+++ b/ci/winnie/package_postgis.sh
@@ -16,10 +16,10 @@
 #otherwise use the ones jenkins passes thru
 #!/usr/bin/env bash
 if  [[ "${OVERRIDE}" == '' ]] ; then
-	export GEOS_VER=3.10.0
-	export GDAL_VER=3.3.3
+	export GEOS_VER=3.10.3
+	export GDAL_VER=3.4.3
 	export PROJ_VER=7.2.1
-	export SFCGAL_VER=1.4.0
+	export SFCGAL_VER=1.4.1
 	export CGAL_VER=5.3
 	export ICON_VER=1.16
 	export ZLIB_VER=1.2.11
@@ -198,7 +198,7 @@ fi;
 
 echo "PROTOBUF VERSION: ${PROTOBUF_VER} https://github.com/google/protobuf" >> $verfile
 echo "PROTOBUF-C VERSION: ${PROTOBUFC_VER} https://github.com/protobuf-c/protobuf-c"  >> $verfile
-echo "CURL VERSION: ${CURL_VER} https://github.com/protobuf-c/protobuf-c"  >> $verfile
+echo "CURL VERSION: ${CURL_VER} https://curl.se/download.html"  >> $verfile
 cp ${PROJECTS}/libxml/rel-libxml2-${LIBXML_VER}w${OS_BUILD}${GCC_TYPE}/bin/*.dll  $outdir/bin/
 #cp ${PGPATHEDB}/bin/libxml2-2.dll   $outdir/bin/
 
@@ -265,6 +265,7 @@ fi
 #echo "PAGC ADDRESS STANDARDIZER: http://sourceforge.net/p/pagc/code/HEAD/tree/branches/sew-refactor/postgresql " >> $verfile
 cd ${RELDIR}
 zip -r $package ${RELVERDIR}
+md5sum $package > ${package}.md5
 #scp $package robe at www.refractions.net:${DWN}/${REL_PGVER}/buildbot/${RELVERDIR}.zip
 cp $package ${PROJECTS}/postgis/win_web/download/windows/pg${REL_PGVER}/buildbot
 cd ${POSTGIS_SRC}
diff --git a/ci/winnie/regress_postgis.sh b/ci/winnie/regress_postgis.sh
index e379ad925..3797d6ae7 100644
--- a/ci/winnie/regress_postgis.sh
+++ b/ci/winnie/regress_postgis.sh
@@ -1,8 +1,8 @@
 #!/usr/bin/env bash
 set -e
 if  [[ "${OVERRIDE}" == '' ]] ; then
-	export GEOS_VER=3.10.0
-	export GDAL_VER=3.3.3
+	export GEOS_VER=3.10.3
+	export GDAL_VER=3.4.3
 	export PROJ_VER=7.2.1
 	export SFCGAL_VER=1.4.0
 	export CGAL_VER=5.3.0
diff --git a/doc/release_notes.xml b/doc/release_notes.xml
index cf856a7d6..9ece503b2 100644
--- a/doc/release_notes.xml
+++ b/doc/release_notes.xml
@@ -2,6 +2,28 @@
 <appendix id="release_notes">
   <title>Appendix</title>
    <subtitle>Release Notes</subtitle>
+   <sect1>
+        <title>PostGIS 3.2.2</title>
+        <para>2022/07/22</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/5191">5191</ulink>, Use integer instead of int4 (Regina Obe)</para>
+            <para><ulink url="https://trac.osgeo.org/postgis/ticket/5139">5139</ulink>, PostGIS causes to_jsonb to no longer be parallel safe,
+                    ST_AsGeoJSON and ST_AsGML are also parallel unsafe
+                    (Regina Obe, Paul Ramsey)</para>
+            <para><ulink url="https://trac.osgeo.org/postgis/ticket/5202">5202</ulink>, Guard against downgrades (Sandro Santilli)</para>
+            <para><ulink url="https://trac.osgeo.org/postgis/ticket/5209">5209</ulink>, <ulink url="https://trac.osgeo.org/postgis/ticket/5210">5210</ulink>, Fix upgrades with CVE-2022-2625 PostgreSQL fix</para>
+            <para><ulink url="https://trac.osgeo.org/postgis/ticket/5032">5032</ulink>, Correctly read extent off multi-key GIST indexes (Paul Ramsey)</para>
+            <para><ulink url="https://trac.osgeo.org/postgis/ticket/5181">5181</ulink>, Reset proj error state after failed parse (Paul Ramsey)</para>
+            <para><ulink url="https://trac.osgeo.org/postgis/ticket/5171">5171</ulink>, Short circuit geodesic distance when inputs equal (Paul Ramsey)</para>
+            <para>Fix potential buffer overflow in long transaction locks (Paul Ramsey)</para>
+        </simplesect>
+   </sect1>
+
    <sect1>
         <title>PostGIS 3.2.2</title>
         <para>2022/07/22</para>

-----------------------------------------------------------------------

Summary of changes:
 NEWS                         |  1 +
 README.postgis               | 11 +++++++++--
 Version.config               |  2 +-
 ci/winnie/package_postgis.sh |  9 +++++----
 ci/winnie/regress_postgis.sh |  4 ++--
 doc/release_notes.xml        | 22 ++++++++++++++++++++++
 6 files changed, 40 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list