[SCM] PostGIS branch master updated. 3.5.0-420-g26806523b
git at osgeo.org
git at osgeo.org
Thu Jul 3 09:48:54 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 26806523b3b496da267df50d7c81cfe75ef8c316 (commit)
via 404c1593e0ddeb8b32babe3934586e1fefe5eba5 (commit)
via 9d24c9def45a87fcdd5fcaa62c552e64be5ec58a (commit)
from 8acbf176099084371012c2652f993b6c840c44fd (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 26806523b3b496da267df50d7c81cfe75ef8c316
Author: Regina Obe <lr at pcorp.us>
Date: Thu Jul 3 12:48:31 2025 -0400
Add Laurențiu Nicola to credits
diff --git a/doc/introduction.xml b/doc/introduction.xml
index 65affd04b..91034b489 100644
--- a/doc/introduction.xml
+++ b/doc/introduction.xml
@@ -290,6 +290,7 @@
<member>Kashif Rasul</member>
<member>Klaus Foerster</member>
<member>Kris Jurka</member>
+ <member>Laurențiu Nicola</member>
<member>Laurenz Albe</member>
<member>Lars Roessiger</member>
<member>Leo Hsu</member>
commit 404c1593e0ddeb8b32babe3934586e1fefe5eba5
Author: Regina Obe <lr at pcorp.us>
Date: Thu Jul 3 12:46:00 2025 -0400
GHA workflow, add pg18 testing because latest is now following pg19
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 45bba0dc3..3b8ce4911 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -17,6 +17,7 @@ jobs:
matrix:
ci:
# Use the last stable releases to run more tests
+ - { tag: pg18-geosmain-gdal311-proj96, mode: tests }
- { tag: pg17-geos313-gdal39-proj94, mode: coverage }
# - { tag: pg17-geos313-gdal39-proj94, mode: garden }
- { tag: pg16-geos312-gdal37-proj921, mode: coverage }
commit 9d24c9def45a87fcdd5fcaa62c552e64be5ec58a
Author: Regina Obe <lr at pcorp.us>
Date: Thu Jul 3 12:42:52 2025 -0400
Fix geosjson building on pg19, missed some spots on last commit
diff --git a/postgis/lwgeom_out_geojson.c b/postgis/lwgeom_out_geojson.c
index e918c7565..411f7c068 100644
--- a/postgis/lwgeom_out_geojson.c
+++ b/postgis/lwgeom_out_geojson.c
@@ -69,7 +69,7 @@ static void composite_to_json(Datum composite, StringInfo result,
static void datum_to_json(Datum val, bool is_null, StringInfo result,
JsonTypeCategory tcategory, Oid outfuncoid,
bool key_scalar);
-#if POSTGIS_PGSQL_VERSION < 190
+#if POSTGIS_PGSQL_VERSION < 200
static void json_categorize_type(Oid typoid,
JsonTypeCategory *tcategory,
Oid *outfuncoid);
@@ -283,7 +283,7 @@ composite_to_geojson(FunctionCallInfo fcinfo,
* output function OID. If the returned category is JSONTYPE_CAST, we
* return the OID of the type->JSON cast function instead.
*/
-#if POSTGIS_PGSQL_VERSION < 190
+#if POSTGIS_PGSQL_VERSION < 200
static void
json_categorize_type(Oid typoid,
JsonTypeCategory *tcategory,
-----------------------------------------------------------------------
Summary of changes:
.github/workflows/ci.yml | 1 +
doc/introduction.xml | 1 +
postgis/lwgeom_out_geojson.c | 4 ++--
3 files changed, 4 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list