[SCM] PostGIS branch stable-3.6 updated. 3.6.1-4-gc615e151d
git at osgeo.org
git at osgeo.org
Sat Nov 15 11:51:33 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 c615e151d0f02f6f0d469255188d35cf09fb4689 (commit)
from 6eb81a1c1648fd64269738b52402c8ae9e5492e0 (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 c615e151d0f02f6f0d469255188d35cf09fb4689
Author: Regina Obe <lr at pcorp.us>
Date: Sat Nov 15 14:49:52 2025 -0500
Remove generated files in distclean target
Author: Bas Couwenberg
References #6019 for PostGIS 3.6.2
diff --git a/NEWS b/NEWS
index 76662826a..9ec818ffe 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,19 @@
+PostGIS 3.6.2
+2025/xx/xx
+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.
+To take advantage of all SFCGAL features, SFCGAL 2.2+ is needed.
+
+If you are upgrading postgis_topology from a version before 3.6.1 and have topogeometry columns, make sure to run
+after the upgrade to fix topogeometry corruption:
+
+SELECT topology.FixCorruptTopoGeometryColumn(schema_name, table_name, feature_column)
+ FROM topology.layer;
+
+* Fixes *
+
+- #6019, make clean does not remove cunit generated files
+ (Bas Couwenberg)
PostGIS 3.6.1
2025/11/13
diff --git a/postgis/Makefile.in b/postgis/Makefile.in
index 67feb698d..03955ba39 100644
--- a/postgis/Makefile.in
+++ b/postgis/Makefile.in
@@ -268,6 +268,7 @@ uninstall_legacy.sql: legacy.sql ../utils/create_uninstall.pl
distclean: clean
rm -f Makefile
rm -f sqldefines.h
+ if [ -e "cunit/Makefile" ]; then make -C cunit distclean; fi
check-unit:
-----------------------------------------------------------------------
Summary of changes:
NEWS | 16 ++++++++++++++++
postgis/Makefile.in | 1 +
2 files changed, 17 insertions(+)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list