[SCM] PostGIS branch master updated. 3.5.0-478-gdd1335a58

git at osgeo.org git at osgeo.org
Sat Jul 19 22:18:03 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, master has been updated
       via  dd1335a58f8f3309d12cb4ac35f25c6901a83772 (commit)
      from  f987b7316de4b047c99a08a1765dd47045cf90e4 (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 dd1335a58f8f3309d12cb4ac35f25c6901a83772
Author: Regina Obe <lr at pcorp.us>
Date:   Sun Jul 20 00:31:39 2025 -0400

    More prep for PostGIS 3.6.0beta1
    
     - Update NEWS date
     - Update postgis-manual.pot
     - Make getfacebypoint regexp_replace be standard_confirming_strings agnostic

diff --git a/NEWS b/NEWS
index bbd545bfb..895ca9083 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,5 @@
 PostGIS 3.6.0beta1
-2025/07/xx
+2025/07/20
 
 This version requires PostgreSQL 12-18beta2, GEOS 3.8 or higher, and Proj 6.1+.
 To take advantage of all features, GEOS 3.14+ is needed.
diff --git a/doc/po/templates/postgis-manual.pot b/doc/po/templates/postgis-manual.pot
index 632587e34..94054b27a 100644
--- a/doc/po/templates/postgis-manual.pot
+++ b/doc/po/templates/postgis-manual.pot
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2025-05-18 00:48+0000\n"
+"POT-Creation-Date: 2025-07-20 04:11+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <kde-i18n-doc at kde.org>\n"
@@ -6362,7 +6362,7 @@ msgid ""
 "PostgreSQL &min_postgres_version; - &max_postgres_version;. A complete "
 "installation of PostgreSQL (including server headers) is required. "
 "PostgreSQL is available from <link xlink:href=\"https://www.postgresql."
-"org\"> https://www.postgresql.org </link> ."
+"org\"> https://www.postgresql.org </link>18 ."
 msgstr ""
 
 #. Tag: para
@@ -6404,7 +6404,7 @@ msgstr ""
 #. Tag: para
 #, no-c-format
 msgid ""
-"GEOS geometry library, version &min_geos_version; or greater, but GEOS 3.12+ "
+"GEOS geometry library, version &min_geos_version; or greater, but GEOS 3.14+ "
 "is required to take full advantage of all the new functions and features. "
 "GEOS is available for download from <link xlink:href=\"https://libgeos.org/"
 "\"> https://libgeos.org </link>."
@@ -8379,6 +8379,11 @@ msgstr ""
 msgid "Maxime Schoemans"
 msgstr ""
 
+#. Tag: member
+#, no-c-format
+msgid "Megan Ma"
+msgstr ""
+
 #. Tag: member
 #, no-c-format
 msgid "Michael Fuhr"
@@ -35161,15 +35166,15 @@ msgstr ""
 
 #. Tag: para
 #, no-c-format
-msgid "2025/07/xx"
+msgid "2025/07/19"
 msgstr ""
 
 #. Tag: para
 #, no-c-format
 msgid ""
-"This version requires PostgreSQL 12-18beta1, GEOS 3.8 or higher, and Proj "
-"6.1+. To take advantage of all features, GEOS 3.12+ is needed. To take "
-"advantage of all SFCGAL features, SFCGAL 2.1+ is needed."
+"This version requires PostgreSQL 12-18beta2, GEOS 3.8 or higher, and Proj "
+"6.1+. To take advantage of all features, GEOS 3.14+ is needed. To take "
+"advantage of all SFCGAL features, SFCGAL 2.2+ is needed."
 msgstr ""
 
 #. Tag: para
@@ -35217,7 +35222,7 @@ msgstr ""
 msgid ""
 "<link xlink:href=\"https://trac.osgeo.org/postgis/ticket/3373\">#3373</"
 "link>, <link xlink:href=\"https://git.osgeo.org/gitea/postgis/postgis/"
-"pulls/255\">GT-255</link> [topology] Support for upgrading domains (Ayo "
+"pulls/255\">GT-255</link>, [topology] Support for upgrading domains (Ayo "
 "Adesugba, U.S. Census Bureau)"
 msgstr ""
 
@@ -35235,10 +35240,15 @@ msgstr ""
 msgid ""
 "<link xlink:href=\"https://trac.osgeo.org/postgis/ticket/3110\">#3110</"
 "link>, <link xlink:href=\"https://git.osgeo.org/gitea/postgis/postgis/"
-"pulls/242\">GT-242</link> [topology] Support for bigint (Ayo Adesugba, U.S. "
+"pulls/242\">GT-242</link>, [topology] Support for bigint (Ayo Adesugba, U.S. "
 "Census Bureau)"
 msgstr ""
 
+#. Tag: title
+#, no-c-format
+msgid "Removed / Deprecate signatures"
+msgstr ""
+
 #. Tag: title
 #, no-c-format
 msgid "New Features"
diff --git a/topology/test/regress/getfacebypoint.sql b/topology/test/regress/getfacebypoint.sql
index b001a9afa..d2473a654 100644
--- a/topology/test/regress/getfacebypoint.sql
+++ b/topology/test/regress/getfacebypoint.sql
@@ -69,7 +69,7 @@ BEGIN
   EXCEPTION
   WHEN OTHERS THEN
     -- Strip details, we only want the first part
-    RAISE EXCEPTION '%', regexp_replace(SQLERRM, '([^:]): .*', '\1 (see #5946)');
+    RAISE EXCEPTION '%', regexp_replace(SQLERRM, E'([^:]): .*', E'\\1 (see #5946)');
   END;
 END;
 $$ LANGUAGE 'plpgsql';

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

Summary of changes:
 NEWS                                     |  2 +-
 doc/po/templates/postgis-manual.pot      | 28 +++++++++++++++++++---------
 topology/test/regress/getfacebypoint.sql |  2 +-
 3 files changed, 21 insertions(+), 11 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list