[postgis-tickets] [SCM] PostGIS branch stable-3.4 updated. 3.4.0-2-g820485b16
git at osgeo.org
git at osgeo.org
Mon Aug 21 18:12:34 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, stable-3.4 has been updated
via 820485b16c46e36aac370a9a24c5efc4470e7781 (commit)
from 5d96d23359f38dd68cc0ab7e70b6b26d49b248c7 (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 820485b16c46e36aac370a9a24c5efc4470e7781
Author: Regina Obe <lr at pcorp.us>
Date: Mon Aug 21 21:11:44 2023 -0400
Don't use deprecated SRID=2163
in postgis_gdal_version() check
References #5479 for PostGIS 3.4.1
diff --git a/NEWS b/NEWS
index a9b7fe79b..dce553251 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,15 @@
+PostGIS 3.4.1
+xxxx/xx/xx
+This version requires PostgreSQL 12-16, GEOS 3.6 or higher, and Proj 6.1+.
+To take advantage of all features, GEOS 3.12+ is needed.
+To take advantage of all SFCGAL featurs, SFCGAL 1.4.1+ is needed.
+
+* Bug Fixes *
+
+ - #5479, postgis_full_version() and postgis_gdal_version() sometimes
+ warn of deprecated SRID: 2163 (Regina Obe)
+
+
PostGIS 3.4.0
2023/08/15
diff --git a/raster/rt_core/rt_util.c b/raster/rt_core/rt_util.c
index 7f39c5741..9c6a14a9b 100644
--- a/raster/rt_core/rt_util.c
+++ b/raster/rt_core/rt_util.c
@@ -329,8 +329,6 @@ int rt_util_gdal_configured(void) {
return 0;
if (!rt_util_gdal_supported_sr("EPSG:3310"))
return 0;
- if (!rt_util_gdal_supported_sr("EPSG:2163"))
- return 0;
return 1;
}
-----------------------------------------------------------------------
Summary of changes:
NEWS | 12 ++++++++++++
raster/rt_core/rt_util.c | 2 --
2 files changed, 12 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list