[SCM] PostGIS branch stable-3.3 updated. 3.3.9-5-ge64883525

git at osgeo.org git at osgeo.org
Thu Mar 12 12:06:13 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.3 has been updated
       via  e648835255fc4de9e838bb1a4a0fe97423ad1269 (commit)
      from  9562c2020b0ecac01cec2d7877666425b41e81a8 (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 e648835255fc4de9e838bb1a4a0fe97423ad1269
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Thu Mar 12 12:03:36 2026 -0700

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

diff --git a/NEWS b/NEWS
index 95563125a..f3cfc3eb3 100644
--- a/NEWS
+++ b/NEWS
@@ -6,7 +6,8 @@ PostGIS 3.3.10
  - #5998, [tiger_geododer] Do not create tiger_data as part
           of postgis_tiger_geocoder extension, create/update (Regina Obe)
  - #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.3.9
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                       | 3 ++-
 utils/create_unpackaged.pl | 4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list