[postgis-tickets] [SCM] PostGIS branch stable-3.2 updated. 3.2.1-12-g874e93859
git at osgeo.org
git at osgeo.org
Thu Apr 7 08:06:39 PDT 2022
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.2 has been updated
via 874e93859fff27416b4f594a3ec4780f602e7e6a (commit)
from 6225a9a67e2bdaa749f1606389ea5af4e3b85099 (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 874e93859fff27416b4f594a3ec4780f602e7e6a
Author: Sandro Santilli <strk at kbt.io>
Date: Thu Apr 7 16:45:52 2022 +0200
GRANT USAGE ON SCHEMA topology TO PUBLIC
Closes #5124 in 3.2 branch (3.2.2dev)
diff --git a/NEWS b/NEWS
index b6d5c1ed7..fd39ee799 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,7 @@ PostGIS 3.2.2dev
2022/MM/DD
* Bug Fixes *
+ - #5124, GRANT USAGE on topology schema to PUBLIC (Sandro Santilli)
- #5120, Fix not-null result from ST_EstimatedExtent against
truncated tables with spatial index (Sandro Santilli)
- #5115, Allow dropping topologies with pending constraints
@@ -32,10 +33,9 @@ PostGIS 3.2.1
- #5090, #5091 configure --with-protobuf-lib / --with-protobufdir
, --without-protobuf broken (Tobias Bussmann)
-
-
PostGIS 3.2.0 (Olivier Courtin Edition)
2021/12/17
+
This version requires PostgreSQL 9.6 or higher, GEOS 3.6 or higher
, and Proj 4.9+.
Additional features are enabled if you are running GEOS 3.9+
diff --git a/topology/topology.sql.in b/topology/topology.sql.in
index 897d42207..191e9da6b 100644
--- a/topology/topology.sql.in
+++ b/topology/topology.sql.in
@@ -1853,5 +1853,7 @@ SELECT topology.AddToSearchPath('topology');
-- See https://trac.osgeo.org/postgis/ticket/4575
GRANT SELECT ON topology.topology TO PUBLIC;
GRANT SELECT ON topology.layer TO PUBLIC;
+-- See https://trac.osgeo.org/postgis/ticket/5124
+GRANT USAGE ON SCHEMA topology TO PUBLIC;
COMMIT;
-----------------------------------------------------------------------
Summary of changes:
NEWS | 4 ++--
topology/topology.sql.in | 2 ++
2 files changed, 4 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list