[SCM] PostGIS branch stable-3.5 updated. 3.5.3-45-g91614bc55

git at osgeo.org git at osgeo.org
Tue Aug 26 03:13:57 PDT 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.5 has been updated
       via  91614bc55c1b2f561291780ccbea9d6a53aba509 (commit)
      from  5591de3dd3fcf839765528a277d013738f7b7eb6 (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 91614bc55c1b2f561291780ccbea9d6a53aba509
Author: Sandro Santilli <strk at kbt.io>
Date:   Mon Aug 25 18:27:14 2025 +0200

    Fix downgrade protection with standard conforming strings off
    
    References #5977 in 3.5 branch (3.5.4dev)

diff --git a/NEWS b/NEWS
index 77c600826..210fceaa8 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,7 @@ PostgreSQL 12-18 required. GEOS 3.8+ required. Proj 6.1+ required.
 
 * Bug fixes *
 
+- #5977, Fix downgrade protection with standard conforming strings off (Sandro Santilli)
 - #5951, Fix crash in ST_GetFaceEdges with corrupted topology (Sandro Santilli)
 - #5947, [topology] Fix crash in ST_ModEdgeHeal (Sandro Santilli)
 - #5925, #5946, [topology] Have GetFaceContainingPoint survive EMPTY edges (Sandro Santilli)
diff --git a/utils/create_upgrade.pl b/utils/create_upgrade.pl
index 5de18a8a1..3920ffaa4 100755
--- a/utils/create_upgrade.pl
+++ b/utils/create_upgrade.pl
@@ -695,7 +695,7 @@ BEGIN
         new_ver_int := pg_catalog.string_to_array(
             pg_catalog.regexp_replace(
                 new_scripts,
-                '[^\d.].*',
+                E'[^\\d.].*',
                 ''
             ),
             '.'
@@ -708,7 +708,7 @@ BEGIN
         old_ver_int := pg_catalog.string_to_array(
             pg_catalog.regexp_replace(
                 old_scripts,
-                '[^\d.].*',
+                E'[^\\d.].*',
                 ''
             ),
             '.'

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

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


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list