[SCM] PostGIS branch stable-3.6 updated. 3.6.2-3-g6d032d7f2

git at osgeo.org git at osgeo.org
Thu Mar 12 12:05:11 PDT 2026


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  6d032d7f203aca9e77badfcc26e9c84968cd3655 (commit)
      from  20e9ab6572a45f5264b033fc1414646a7c0d5190 (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 6d032d7f203aca9e77badfcc26e9c84968cd3655
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Thu Mar 12 11:59:35 2026 -0700

    Remove priv escalation scenario.
    Reported by Daniel Bakker
    References #6054

diff --git a/NEWS b/NEWS
index 701e08eeb..ab8ac0c4e 100644
--- a/NEWS
+++ b/NEWS
@@ -16,7 +16,8 @@ topogeometry corruption:
 * Fixes *
 
 - #6055, Remove rare extension priv escalation case.
-         Reported by Sven Klemm (Tiger Data) and Allistair Ishmael Hakim (allistair.sh)
+         Reported by Sven Klemm (Tiger Data), Allistair Ishmael Hakim (allistair.sh)
+         and Daniel Bakker
 
 
 PostGIS 3.6.2
diff --git a/utils/create_unpackaged.pl b/utils/create_unpackaged.pl
index e7021d87a..e3cc4ba7f 100755
--- a/utils/create_unpackaged.pl
+++ b/utils/create_unpackaged.pl
@@ -186,10 +186,10 @@ AS \$\$
 DECLARE
 	sql text;
 	proc regproc;
-	obj text := format('%s %s', type, sig);
+	obj text := pg_catalog.format('%s %s', type, sig);
 BEGIN
 
-	sql := format('ALTER EXTENSION ${extname} ADD %s', obj);
+	sql := pg_catalog.format('ALTER EXTENSION ${extname} ADD %s', obj);
 	EXECUTE sql;
 	RAISE NOTICE 'newly registered %', obj;
 
@@ -359,7 +359,7 @@ BEGIN
 					'Changing ownership of function % from % to % to match ext',
 					rec.oid::regprocedure, rec.proowner::regrole,
 					rec.extowner::regrole;
-			sql := format(
+			sql := pg_catalog.format(
 				'ALTER FUNCTION %s OWNER TO %I',
 				rec.oid::regprocedure,
 				rec.extowner::regrole

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

Summary of changes:
 NEWS                       | 3 ++-
 utils/create_unpackaged.pl | 6 +++---
 2 files changed, 5 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list