[SCM] PostGIS branch stable-3.4 updated. 3.4.4-45-g50c81a79d

git at osgeo.org git at osgeo.org
Tue Aug 26 03:17:48 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.4 has been updated
       via  50c81a79db0246152001f5fe1aeeded55f3af554 (commit)
      from  fc583448b8b82367721dda5cba364300880d5d8a (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 50c81a79db0246152001f5fe1aeeded55f3af554
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.4 branch (3.4.5dev)

diff --git a/NEWS b/NEWS
index 0d2c060d1..67a6c40b6 100644
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,7 @@ Proj 6.1+ required.
 
 * Bug Fixes *
 
+  - #5977, Fix downgrade protection with standard conforming strings off (Sandro Santilli)
   - #5947, [topology] Fix crash in ST_ModEdgeHeal (Sandro Santilli)
   - #5951, [topology] Fix crash in ST_GetFaceEdges with corrupted topology (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