[SCM] PostGIS branch stable-3.5 updated. 3.5.0-8-g77eddb114
git at osgeo.org
git at osgeo.org
Wed Oct 9 17:12:54 PDT 2024
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.5 has been updated
via 77eddb114e21ec0b7eba2b5caa496d7e864ef247 (commit)
from d8f633a44bab819e2454d60da65112cd6cfb696e (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 77eddb114e21ec0b7eba2b5caa496d7e864ef247
Author: Regina Obe <lr at pcorp.us>
Date: Wed Oct 9 20:11:23 2024 -0400
Add legacy stubs for
check_authorization and getTransactionID
backend functions, to allow pg_upgrade to work
otherwise can't find these functions and fails on 3.4 and lower
upgrade to 3.5
References #5791 for PostGIS 3.5.1
diff --git a/NEWS b/NEWS
index 48eab7bb8..fd090c86d 100644
--- a/NEWS
+++ b/NEWS
@@ -10,6 +10,8 @@ PostgreSQL 12-17 required. GEOS 3.8+ required. Proj 6.1+ required.
a supernumerary rast argument (Dian M Fay)
- #5787, Check that ST_ChangeEdgeGeom doesn't change winding of rings
(Sandro Santilli)
+- #5791, Add legacy stubs for old transaction functions
+ to allow pg_upgrade (Regina Obe)
* Enhancements *
diff --git a/postgis/postgis_legacy.c b/postgis/postgis_legacy.c
index 134cb2876..2ccdcf4d3 100644
--- a/postgis/postgis_legacy.c
+++ b/postgis/postgis_legacy.c
@@ -103,3 +103,8 @@ POSTGIS_DEPRECATE("3.1.0", postgis_sfcgal_noop)
POSTGIS_DEPRECATE("3.1.0", LWGEOM_locate_between_m)
POSTGIS_DEPRECATE("3.1.0", postgis_svn_version)
POSTGIS_DEPRECATE("3.3.0", pgis_geometry_union_finalfn)
+
+/**START: Removal of transactin lock feature **/
+POSTGIS_DEPRECATE("3.5.0", check_authorization)
+POSTGIS_DEPRECATE("3.5.0", getTransactionID)
+
-----------------------------------------------------------------------
Summary of changes:
NEWS | 2 ++
postgis/postgis_legacy.c | 5 +++++
2 files changed, 7 insertions(+)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list