[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-1257-gc78b7201d

git at osgeo.org git at osgeo.org
Fri Jul 14 14:39:26 PDT 2023


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  c78b7201d2a8a13cef3d0f7f030cee19654df80b (commit)
      from  4077f518c888f08cd187096d68f6c019187dae93 (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 c78b7201d2a8a13cef3d0f7f030cee19654df80b
Author: Regina Obe <lr at pcorp.us>
Date:   Fri Jul 14 16:42:17 2023 -0400

    More Prep for release
    
     - Add in missing NEWS about ST_ClosesPoint and ST_ShortestLine
       for geography (credit MobilityDB)
       References #5266 for PostGIS 3.4.0
     - Add in missing docs and notes about ST_Project and ST_LineExtend
     - Disable PDF local translated building for now
       only build de and fr until we resolve other issues

diff --git a/NEWS b/NEWS
index 17adccca9..d73aa1d4d 100644
--- a/NEWS
+++ b/NEWS
@@ -20,8 +20,10 @@ To take advantage of all SFCGAL featurs, SFCGAL 1.4.1+ is needed.
   - Allow singleton geometry to be inserted into Geometry(Multi*) columns (Paul Ramsey)
   - GH721, New window-based ST_ClusterWithinWin and ST_ClusterIntersectingWin (Paul Ramsey)
   - #5397, [address_standardizer] debug_standardize_address function (Regina Obe)
-  - ST_LargestEmptyCircle, exposes extra semantics on circle finding (Martin Davis)
-  - ST_Project signature for geometry, and two-point signature (Paul Ramsey)
+  - #5373, ST_LargestEmptyCircle, exposes extra semantics on circle finding
+    Requires GEOS 3.9+ (Martin Davis)
+  - #5267, ST_Project signature for geometry, and two-point signature (Paul Ramsey)
+  - #5267, ST_LineExtend for extending linestrings (Paul Ramsey)
 
 * Enhancements *
   - #5194, do not update system catalogs from postgis_extensions_upgrade (Sandro Santilli)
@@ -39,6 +41,8 @@ To take advantage of all SFCGAL featurs, SFCGAL 1.4.1+ is needed.
   - ST_Project signature for geometry, and two-point signature (Paul Ramsey)
   - #4913, ST_AsSVG support for curve types CircularString, CompoundCurve, MultiCurve,
            and MultiSurface (Regina Obe)
+  - #5266, ST_ClosestPoint, ST_ShortestLine support for geography type
+           (MobilityDB, Paul Ramsey)
 
 * Breaking Changes *
   - #5229, Drop support for Proj < 6.1 and PG 11 (Regina Obe)
diff --git a/ci/debbie/postgis_release_docs.sh b/ci/debbie/postgis_release_docs.sh
index 4fd622334..200b44ff5 100644
--- a/ci/debbie/postgis_release_docs.sh
+++ b/ci/debbie/postgis_release_docs.sh
@@ -109,9 +109,13 @@ done
 make pdf-install # || : survive failure
 make epub-install # || : survive failure
 
+# build german and french pdf
+make -C doc/po/fr local-pdf-install
+make -C doc/po/de local-pdf-install
+# TODO put back after resolve issue with japan build
 # Build and install localized pdf and epub
-make pdf-install-localized # || : survive failures
-make epub-install-localized # || : survive failures
+#make pdf-install-localized # || : survive failures
+#make epub-install-localized # || : survive failures
 
 if [[ "$POSTGIS_MICRO_VERSION" == *"dev"* ]]; then
 
diff --git a/doc/reference_measure.xml b/doc/reference_measure.xml
index 0bb73fda1..a6d3168fd 100644
--- a/doc/reference_measure.xml
+++ b/doc/reference_measure.xml
@@ -324,6 +324,7 @@ SELECT degrees( ST_Angle('LINESTRING(0 0, 0.3 0.7, 1 1)', 'LINESTRING(0 0, 0.2 0
         (as computed by <xref linkend="ST_ShortestLine"/>).
 		</para>
 		<note><para>If you have a 3D Geometry, you may prefer to use <xref linkend="ST_3DClosestPoint" />.</para></note>
+        <para role="enhanced" conformance="3.4.0">Enhanced: 3.4.0 -  Support for geography added</para>
 		<para role="availability" conformance="1.5.0">Availability: 1.5.0</para>
 	  </refsection>
 
@@ -1917,6 +1918,7 @@ FROM ST_GeogFromText('MULTIPOLYGON(((-71.1044543107478 42.340674480411,-71.10445
 		The length of the line is the same as <xref linkend="ST_Distance"/> returns for g1 and g2.
 		</para>
 
+        <para role="enhanced" conformance="3.4.0">Enhanced: 3.4.0 - support for geography</para>
 		<para role="availability" conformance="1.5.0">Availability: 1.5.0</para>
 	  </refsection>
 
diff --git a/doc/release_notes.xml b/doc/release_notes.xml
index 3ff36793e..a504c60dd 100644
--- a/doc/release_notes.xml
+++ b/doc/release_notes.xml
@@ -26,8 +26,9 @@
                 <para>Allow singleton geometry to be inserted into Geometry(Multi*) columns (Paul Ramsey)</para>
                 <para><ulink url="https://github.com/postgis/postgis/pull/721">721</ulink>, New window-based ST_ClusterWithinWin and ST_ClusterIntersectingWin (Paul Ramsey)</para>
                 <para><ulink url="https://trac.osgeo.org/postgis/ticket/5397">5397</ulink>, [address_standardizer] debug_standardize_address function (Regina Obe)</para>
-                <para>ST_LargestEmptyCircle, exposes extra semantics on circle finding. Geos 3.9+ required(Martin Davis)</para>
-                <para>ST_Project signature for geometry, and two-point signature (Paul Ramsey)</para>
+                <para><ulink url="https://trac.osgeo.org/postgis/ticket/5373">5373</ulink>ST_LargestEmptyCircle, exposes extra semantics on circle finding. Geos 3.9+ required(Martin Davis)</para>
+                <para><ulink url="https://trac.osgeo.org/postgis/ticket/5267">5267</ulink>, ST_Project signature for geometry, and two-point signature (Paul Ramsey)</para>
+                <para><ulink url="https://trac.osgeo.org/postgis/ticket/5267">5267</ulink>, ST_LineExtend for extending linestrings (Paul Ramsey)</para>
             </simplesect>
 
             <simplesect>
@@ -47,6 +48,7 @@
                 <para>ST_Project signature for geometry, and two-point signature (Paul Ramsey)</para>
                 <para><ulink url="https://trac.osgeo.org/postgis/ticket/4913">4913</ulink>, ST_AsSVG support for curve types CircularString, CompoundCurve, MultiCurve,
                         and MultiSurface (Regina Obe)</para>
+                <para><ulink url="https://trac.osgeo.org/postgis/ticket/5266">5266</ulink>, ST_ClosestPoint, ST_ShortestLine support for geography type (MobilityDB, Paul Ramsey)</para>
             </simplesect>
 
             <simplesect>

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

Summary of changes:
 NEWS                              | 8 ++++++--
 ci/debbie/postgis_release_docs.sh | 8 ++++++--
 doc/reference_measure.xml         | 2 ++
 doc/release_notes.xml             | 6 ++++--
 4 files changed, 18 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list