[postgis-tickets] [SCM] PostGIS branch stable-3.0 updated. 3.0.6-32-g33a8d5cd9

git at osgeo.org git at osgeo.org
Wed Aug 17 21:58:04 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.0 has been updated
       via  33a8d5cd98fd10746fab1f4c7f21b66e8d5ecd8b (commit)
       via  8aed9b269c90309666e0cfc19cf97e22e2b659b8 (commit)
      from  35c31865f210be96371ca03a838be347fee94859 (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 33a8d5cd98fd10746fab1f4c7f21b66e8d5ecd8b
Author: Regina Obe <lr at pcorp.us>
Date:   Thu Aug 18 00:03:33 2022 -0400

    Prep for 3.0.7 release

diff --git a/Version.config b/Version.config
index c4a2b21e5..4a4e0c554 100644
--- a/Version.config
+++ b/Version.config
@@ -5,7 +5,7 @@
 
 POSTGIS_MAJOR_VERSION=3
 POSTGIS_MINOR_VERSION=0
-POSTGIS_MICRO_VERSION=7dev
+POSTGIS_MICRO_VERSION=7
 
 # 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 83783f41b..8992793f0 100644
--- a/ci/winnie/package_postgis.sh
+++ b/ci/winnie/package_postgis.sh
@@ -85,15 +85,6 @@ export PROJSO=libproj-9.dll
 export POSTGIS_MINOR_VER=${POSTGIS_MAJOR_VERSION}.${POSTGIS_MINOR_VERSION}
 export POSTGIS_MICRO_VER=${POSTGIS_MAJOR_VERSION}.${POSTGIS_MINOR_VERSION}.${POSTGIS_MICRO_VERSION}
 
-if [[ "$POSTGIS_MICRO_VERSION"  == *SVN* || "$POSTGIS_MICRO_VERSION"  == *dev* ]] ; then
-	export POSTGIS_SRC=${PROJECTS}/postgis/branches/${POSTGIS_MINOR_VER}
-	export svnurl="https://svn.osgeo.org/postgis/branches/${POSTGIS_MINOR_VER}"
-else
-	#tagged version -- official release
-	export POSTGIS_SRC=${PROJECTS}/postgis/tags/${POSTGIS_MINOR_VER}.${POSTGIS_MICRO_VERSION}
-	export svnurl="https://svn.osgeo.org/postgis/tags/${POSTGIS_MINOR_VER}.${POSTGIS_MICRO_VERSION}"
-fi;
-
 if [ -n "$SOURCE_FOLDER" ]; then
   export POSTGIS_SRC=${PROJECTS}/postgis/$SOURCE_FOLDER
 fi
diff --git a/doc/release_notes.xml b/doc/release_notes.xml
index cfc0c5a14..e395cff8b 100644
--- a/doc/release_notes.xml
+++ b/doc/release_notes.xml
@@ -3,6 +3,23 @@
   <title>Appendix</title>
     <subtitle>Release Notes</subtitle>
 
+    <sect1>
+        <title>Release 3.0.7</title>
+        <para>Release date: 2022/08/18</para>
+        <para>This is a bug fix / performance enhancements release. This version requires PostgreSQL 9.5+-13 and GEOS >= 3.6+
+              Additional features and enhancements enabled if you are running Proj6+, PostgreSQL 12+, and GEOS 3.8</para>
+        <simplesect>
+          <title>Bug Fixes and Enhancements</title>
+            <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/4643">4643</ulink>, Fix upgrade from unpackaged on PostgreSQL >= 13 (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>Release 3.0.6</title>
         <para>Release date: 2022/07/20</para>
diff --git a/extensions/upgradeable_versions.mk b/extensions/upgradeable_versions.mk
index 063ab4c1f..e4800d73b 100644
--- a/extensions/upgradeable_versions.mk
+++ b/extensions/upgradeable_versions.mk
@@ -56,6 +56,7 @@ UPGRADEABLE_VERSIONS = \
 	2.5.5 \
 	2.5.6 \
 	2.5.7 \
+	2.5.8 \
 	3.0.0 \
 	3.0.1 \
 	3.0.2 \

commit 8aed9b269c90309666e0cfc19cf97e22e2b659b8
Author: Regina Obe <lr at pcorp.us>
Date:   Wed Aug 17 23:12:50 2022 -0400

    Add missing item to NEWS.  Fix urls in README and put in new date and version

diff --git a/NEWS b/NEWS
index 44dde73e0..97f1c027c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,5 @@
-PostGIS 3.0.7dev
-2022/xx/xx
+PostGIS 3.0.7
+2022/08/18
 
 * Bug Fixes
   - #5202, Guard against downgrades (Sandro Santilli)
@@ -8,6 +8,7 @@ PostGIS 3.0.7dev
   - #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.0.6
 2022/07/20
diff --git a/README.postgis b/README.postgis
index f183e19f2..2c1775669 100644
--- a/README.postgis
+++ b/README.postgis
@@ -1,8 +1,8 @@
 PostGIS - Geographic Information Systems Extensions to PostgreSQL
 =================================================================
 
-:Version: 3.0.6
-:Date: 2022-07-19
+:Version: 3.0.7
+:Date: 2022-08-18
 :Website: https://postgis.net
 
 This distribution contains a module which implements GIS simple features, ties
@@ -43,7 +43,7 @@ this to work.
   The PROJ4 catographic projection library is required if you want to use the
   ST_Transform() function to reproject features within the database.
 
-    http://trac.osgeo.org/proj/
+    https://proj.org
 
 * GEOS (Required, Version 3.6 or higher)
   - 3.7+ is needed just for the ST_FrechetDistance function
@@ -52,7 +52,7 @@ this to work.
   ST_Touches(), ST_Contains(), ST_Disjoint() and spatial operations such as
   ST_Intersection(), ST_Union() and ST_Buffer().
 
-    http://trac.osgeo.org/geos/
+    https://libgeos.org
 
 * XML SUPPORT (Required, Version 2.5.0 or higher):
 
@@ -79,13 +79,13 @@ this to work.
 
 * GDAL (Optional, Version 1.8.0 or higher 1.9+ is strongly recommended)
 
-  GDAL (http://gdal.org) is *required* if you want to compile PostGIS
+  GDAL (https://gdal.org) is *required* if you want to compile PostGIS
   with raster support. To compile without raster support you
   must ``./configure --without-raster``
 
 * CGAL 4.1+ and SFCGAL 1.3.1+ (Optional) needed for advanced 3D support
 
-  https://github.com/Oslandia/SFCGAL
+  https://gitlab.com/Oslandia/SFCGAL
 
 * protobuf-c (Optional, Version 1.1.0 or higher)
 

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

Summary of changes:
 NEWS                               |  5 +++--
 README.postgis                     | 12 ++++++------
 Version.config                     |  2 +-
 ci/winnie/package_postgis.sh       |  9 ---------
 doc/release_notes.xml              | 17 +++++++++++++++++
 extensions/upgradeable_versions.mk |  1 +
 6 files changed, 28 insertions(+), 18 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list