[SCM] PostGIS branch stable-3.6 updated. 3.6.0-32-gf53362350

git at osgeo.org git at osgeo.org
Thu Nov 13 10:30:02 PST 2025


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.6 has been updated
       via  f533623505f73939a2d25d66ff252fb6619c4ac7 (commit)
      from  6a16232cb57a202d0e1407fedb6f59ede0a354ec (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 f533623505f73939a2d25d66ff252fb6619c4ac7
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Thu Nov 13 10:29:54 2025 -0800

    Prepare for 3.6.1 release

diff --git a/.gitignore b/.gitignore
index f9d05e3ca..f8b019f67 100644
--- a/.gitignore
+++ b/.gitignore
@@ -128,6 +128,7 @@ macros/ltversion.m4
 *.o
 postgis_config.h
 postgis/Makefile
+postgis/cunit/Makefile
 postgis/geobuf.pb-c.c
 postgis/geobuf.pb-c.h
 postgis/legacy_gist.sql
diff --git a/NEWS b/NEWS
index 2a2fd08da..76662826a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
 
 PostGIS 3.6.1
-2025/11/xx
+2025/11/13
 
 This version requires PostgreSQL 12-18, GEOS 3.8 or higher, and Proj 6.1+.
 To take advantage of all features, GEOS 3.14+ is needed.
@@ -21,14 +21,15 @@ SELECT topology.FixCorruptTopoGeometryColumn(schema_name, table_name, feature_co
   - #5998, ST_Distance error on CurvePolygon (Paul Ramsey)
   - #5962, Consistent clipping of MULTI/POINT (Paul Ramsey)
   - #5998, [tiger_geocoder] [security] CVE-2022-2625, make sure tables requires
-              by extension are owned by extension
-              authored: Andrey Borodin (Yandex), reported by Sergey Bobrov (Kaspersky)
+           by extension are owned by extension
+           authored: Andrey Borodin (Yandex), reported by Sergey Bobrov (Kaspersky)
   - #5754, ST_ForcePolygonCCW reverses lines (Paul Ramsey)
-  - #5959, #5984, Prevent histogram target overflow when analysing massive tables (Darafei Praliaskouski)
+  - #5959, #5984, Prevent histogram target overflow when analysing massive
+           tables (Darafei Praliaskouski)
   - #6012, Remove memory leak from lwcircstring_from_lwpointarray (Paul Ramsey)
   - #6013, [tiger_geocoder] Load Tiger 2025 data (Regina Obe)
   - #5983, [topology] topology.FixCorruptTopoGeometryColumn
-              to fix corruption caused by 3.6.0 upgrade (Regina Obe, Francois Bonzon)
+           to fix corruption caused by 3.6.0 upgrade (Regina Obe, Francois Bonzon)
 
 
 PostGIS 3.6.0
diff --git a/README.postgis b/README.postgis
index 009525190..bdd39454c 100644
--- a/README.postgis
+++ b/README.postgis
@@ -1,8 +1,8 @@
 PostGIS - Geographic Information Systems Extensions to PostgreSQL
 =================================================================
 
-:Version: 3.6.0
-:Date: 2025-09-01
+:Version: 3.6.1
+:Date: 2025-11-13
 :Website: https://postgis.net
 
 This distribution contains a module which implements GIS simple features, ties
diff --git a/Version.config b/Version.config
index 28fc88d89..e32cb25c4 100644
--- a/Version.config
+++ b/Version.config
@@ -5,7 +5,7 @@
 
 POSTGIS_MAJOR_VERSION=3
 POSTGIS_MINOR_VERSION=6
-POSTGIS_MICRO_VERSION=1dev
+POSTGIS_MICRO_VERSION=1
 
 # 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 68fa8bc79..bf8a795de 100644
--- a/doc/release_notes.xml
+++ b/doc/release_notes.xml
@@ -2,6 +2,30 @@
 <appendix xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://docbook.org/ns/docbook" version="5.0" xml:id="release_notes">
   <title>Appendix</title>
     <subtitle>Release Notes</subtitle>
+
+        <section>
+            <title>PostGIS 3.6.1</title>
+            <para>2025/11/13</para>
+
+            <para>If you are upgrading postgis_topology and have topogeometry columns, make sure to run after the upgrade to fix topogeometry corruption: <code>SELECT topology.FixCorruptTopoGeometryColumn(schema_name, table_name, feature_column) FROM topology.layer</code></para>
+
+            <simplesect>
+                <title>Fixes</title>
+                <para><link xlink:href="https://trac.osgeo.org/postgis/ticket/5978">#5978</link>, geometry_columns needs to still parse table constraints (Paul Ramsey)</para>
+                <para><link xlink:href="https://trac.osgeo.org/postgis/ticket/5987">#5987</link>, ST_GeometryN fails for non-collections (Paul Ramsey)</para>
+                <para><link xlink:href="https://trac.osgeo.org/postgis/ticket/5991">#5991</link>, CircularString distance error (Paul Ramsey)</para>
+                <para><link xlink:href="https://trac.osgeo.org/postgis/ticket/5994">#5994</link>, Null pointer in ST_AsGeoJsonRow (Alexander Kukushkin)</para>
+                <para><link xlink:href="https://trac.osgeo.org/postgis/ticket/5998">#5998</link>, ST_Distance error on CurvePolygon (Paul Ramsey)</para>
+                <para><link xlink:href="https://trac.osgeo.org/postgis/ticket/5962">#5962</link>, Consistent clipping of MULTI/POINT (Paul Ramsey)</para>
+                <para><link xlink:href="https://trac.osgeo.org/postgis/ticket/5998">#5998</link>, [tiger_geocoder] [security] CVE-2022-2625, make sure tables requires by extension are owned by extension authored: Andrey Borodin (Yandex), reported by Sergey Bobrov (Kaspersky)</para>
+                <para><link xlink:href="https://trac.osgeo.org/postgis/ticket/5754">#5754</link>, ST_ForcePolygonCCW reverses lines (Paul Ramsey)</para>
+                <para><link xlink:href="https://trac.osgeo.org/postgis/ticket/5959">#5959</link>, <link xlink:href="https://trac.osgeo.org/postgis/ticket/5984">#5984</link>, Prevent histogram target overflow when analysing massive tables (Darafei Praliaskouski)</para>
+                <para><link xlink:href="https://trac.osgeo.org/postgis/ticket/6012">#6012</link>, Remove memory leak from lwcircstring_from_lwpointarray (Paul Ramsey)</para>
+                <para><link xlink:href="https://trac.osgeo.org/postgis/ticket/6013">#6013</link>, [tiger_geocoder] Load Tiger 2025 data (Regina Obe)</para>
+                <para><link xlink:href="https://trac.osgeo.org/postgis/ticket/5983">#5983</link>, [topology] topology.FixCorruptTopoGeometryColumn to fix corruption caused by 3.6.0 upgrade (Regina Obe, Francois Bonzon)</para>
+            </simplesect>
+        </section>
+
         <section>
             <title>PostGIS 3.6.0</title>
             <para>2025/09/01</para>
diff --git a/extensions/upgradeable_versions.mk b/extensions/upgradeable_versions.mk
index 044c5ae78..045f94bc0 100644
--- a/extensions/upgradeable_versions.mk
+++ b/extensions/upgradeable_versions.mk
@@ -112,4 +112,5 @@ UPGRADEABLE_VERSIONS = \
 	3.5.1 \
 	3.5.2 \
 	3.5.3 \
-	3.6.0
+	3.6.0 \
+	3.6.1dev

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

Summary of changes:
 .gitignore                         |  1 +
 NEWS                               | 11 ++++++-----
 README.postgis                     |  4 ++--
 Version.config                     |  2 +-
 doc/release_notes.xml              | 24 ++++++++++++++++++++++++
 extensions/upgradeable_versions.mk |  3 ++-
 6 files changed, 36 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list