[SCM] PostGIS branch stable-3.2 updated. 3.2.9-3-g2396083a5

git at osgeo.org git at osgeo.org
Thu Mar 12 12:06:15 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.2 has been updated
       via  2396083a5445169d4db8095722f23df711e71b19 (commit)
      from  9bed75f7f186dfa4f60039d68103a73c91a69b8e (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 2396083a5445169d4db8095722f23df711e71b19
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Thu Mar 12 12:04:34 2026 -0700

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

diff --git a/NEWS b/NEWS
index 99442f6b4..04a241768 100644
--- a/NEWS
+++ b/NEWS
@@ -8,6 +8,8 @@ Proj 4.9+ required.
 
  - #5998, [tiger_geododer] Do not create tiger_data as part
              of postgis_tiger_geocoder extension, create/update (Regina Obe)
+ - #6054, Remove priv escalation scenario. Reported by Daniel Bakker
+
 
 PostGIS 3.2.9
 2026/02/08
diff --git a/utils/create_unpackaged.pl b/utils/create_unpackaged.pl
index a50725158..d505ed747 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;
 

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

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


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list