[SCM] PostGIS branch stable-3.3 updated. 3.3.7-51-g2a7265066
git at osgeo.org
git at osgeo.org
Tue Aug 26 03:20:01 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.3 has been updated
via 2a72650666c858e626c92afcfc4da5bc68501bbd (commit)
from 58d7d3163d86a5bbcb81537904bf00ae2bcb107b (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 2a72650666c858e626c92afcfc4da5bc68501bbd
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.3 branch (3.3.9dev)
diff --git a/NEWS b/NEWS
index 8a642a757..572696298 100644
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,7 @@ Proj 4.9+ required.
* Bug Fixes and Enhancements *
+ - #5977, Fix downgrade protection with standard conforming strings off (Sandro Santilli)
- #5951, [topology] Fix crash in ST_GetFaceEdges with corrupted topology (Sandro Santilli)
- #5947, [topology] Fix crash in ST_ModEdgeHeal (Sandro Santilli)
- #5922, [topology] Fix crash in TopoGeo_AddLinestring with EMPTY input (Sandro Santilli)
diff --git a/utils/create_upgrade.pl b/utils/create_upgrade.pl
index f3dbb74e5..d983068d0 100755
--- a/utils/create_upgrade.pl
+++ b/utils/create_upgrade.pl
@@ -762,7 +762,7 @@ BEGIN
new_ver_int := pg_catalog.string_to_array(
pg_catalog.regexp_replace(
new_scripts,
- '[^\d.].*',
+ E'[^\\d.].*',
''
),
'.'
@@ -775,7 +775,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