[postgis-tickets] [SCM] postgis.net branch website updated. cdc746a2b29c2d6bf0f6cf07fdc4a88986d2e9a5

git at osgeo.org git at osgeo.org
Sat Jul 23 09:55:38 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.net".

The branch, website has been updated
       via  cdc746a2b29c2d6bf0f6cf07fdc4a88986d2e9a5 (commit)
      from  fa1d48da64e59044615ee40dc579385838ea03ac (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 cdc746a2b29c2d6bf0f6cf07fdc4a88986d2e9a5
Author: Regina Obe <lr at pcorp.us>
Date:   Sat Jul 23 12:55:31 2022 -0400

    PostGIS 3.2.2 release

diff --git a/config/_default/params.toml b/config/_default/params.toml
index 167f571..2f6aab2 100644
--- a/config/_default/params.toml
+++ b/config/_default/params.toml
@@ -141,8 +141,8 @@ dev_download = "/stuff"
     is_dev = true
   [postgis.releases.32]
     minor = "3.2"
-    dev = "3.2.2dev"
-    tag = "3.2.1"
+    dev = "3.2.3dev"
+    tag = "3.2.2"
   [postgis.releases.31]
     minor = "3.1"
     dev = "3.1.7dev"
diff --git a/content/post/2022/07-23_postgis-3.2.2.md b/content/post/2022/07-23_postgis-3.2.2.md
new file mode 100644
index 0000000..46cb94f
--- /dev/null
+++ b/content/post/2022/07-23_postgis-3.2.2.md
@@ -0,0 +1,76 @@
+---
+title: PostGIS 3.2.2
+layout: post
+category: news
+tags: [release, 3.2]
+author: Regina Obe
+thumbnail:
+date: "2022-07-23"
+---
+
+The PostGIS Team is pleased to release PostGIS 3.2.2!
+This release works for PostgreSQL 9.6-15.
+
+**3.2.2**
+
+* [source download]({{< loc "postgis.release_source">}}/postgis-3.2.2.tar.gz) [md5]({{< loc "postgis.dev_download">}}/postgis-3.2.2.tar.gz.md5)
+* [NEWS](https://git.osgeo.org/gitea/postgis/postgis/raw/tag/3.2.2/NEWS)
+* [PDF docs en]({{< loc "postgis.release_docs">}}/postgis-3.2.2.pdf)
+
+
+This release is a bug fix release, addressing issues found in the previous 3.2 releases.
+
+<!--more-->
+
+**Bug Fixes**
+
+  - [#5182](https://trac.osgeo.org/postgis/ticket/5182), Fix loading topology.sql in new database (Sandro Santilli)
+  - [#4835](https://trac.osgeo.org/postgis/ticket/4835), Occasional distance errors in polar area (Paul Ramsey)
+  - [#5124](https://trac.osgeo.org/postgis/ticket/5124), GRANT USAGE on topology schema to PUBLIC (Sandro Santilli)
+  - [#5120](https://trac.osgeo.org/postgis/ticket/5120), Fix not-null result from ST_EstimatedExtent against
+           truncated tables with spatial index (Sandro Santilli)
+  - [#5115](https://trac.osgeo.org/postgis/ticket/5115), Allow dropping topologies with pending constraints
+           (Sandro Santilli)
+  - [#5105](https://trac.osgeo.org/postgis/ticket/5105), Fix false invalidity report from ValidateTopology
+           (Sandro Santilli)
+  - [#5039](https://trac.osgeo.org/postgis/ticket/5039), postgis_tiger_geocoder: Support for TIGER 2021 (Regina Obe)
+  - [#5097](https://trac.osgeo.org/postgis/ticket/5097), Ensure spatial index is used during topology population
+           at the getClosestEdge step (Sandro Santilli)
+  - [#5091](https://trac.osgeo.org/postgis/ticket/5091), Fix --without-protobuf builds (Tobias Bussmann)
+  - [#5100](https://trac.osgeo.org/postgis/ticket/5100), Don't use pg_atoi (removed in PG15) (Laurenz Albe)
+  - [#5114](https://trac.osgeo.org/postgis/ticket/5114), Crash with long column names pgsql2shp (Paul Ramsey)
+  - [#5123](https://trac.osgeo.org/postgis/ticket/5123), Support for PG15 (JSON funcs exposed) (Regina Obe)
+  - [#5125](https://trac.osgeo.org/postgis/ticket/5125), Fix search path function (Sandro Santilli)
+  - [#5150](https://trac.osgeo.org/postgis/ticket/5150), Change signature of AddToSearchPath (Regina Obe)
+  - [#5151](https://trac.osgeo.org/postgis/ticket/5151), ST_SetPoint with empty geometries (Regina Obe)
+  - [#5152](https://trac.osgeo.org/postgis/ticket/5152), Fix infinite loop with ST_Split (Sandro Santilli)
+  - [#5173](https://trac.osgeo.org/postgis/ticket/5173), Crash creating flatgeobuf on row without geometry (Julien Rouhaud)
+  - [#4541](https://trac.osgeo.org/postgis/ticket/4541), ST_ConcaveHull returns a "geometrycollection" type
+        instead of the expected "polygon" (Regina Obe)
+  - [#5154](https://trac.osgeo.org/postgis/ticket/5154), raster ST_Value is undercosted (Regina Obe)
+
+**Upgrading**
+
+After installing the binaries or after running pg_upgrade:
+
+For PostGIS 3.2, 3.1, 3.0
+do below which will upgrade all your postgis extensions.
+```postgres
+SELECT postgis_extensions_upgrade();
+```
+
+
+For PostGIS 2.5 and below do:
+
+```postgres
+ALTER EXTENSION postgis UPDATE;
+SELECT postgis_extensions_upgrade();
+SELECT postgis_extensions_upgrade();
+```
+
+If you come across any issues, feel free to report via our [ticket tracker](https://trac.osgeo.org/postgis)
+or [mailing list](https://lists.osgeo.org/listinfo/postgis-users) with details
+
+View all [tickets for 3.2.2 milestone][1].
+
+[1]: https://trac.osgeo.org/postgis/query?status=assigned&status=closed&milestone=PostGIS+3.2.2&milestone=PostGIS+3.1.6&milestone=PostGIS+3.0.6

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

Summary of changes:
 config/_default/params.toml              |  4 +-
 content/post/2022/07-23_postgis-3.2.2.md | 76 ++++++++++++++++++++++++++++++++
 2 files changed, 78 insertions(+), 2 deletions(-)
 create mode 100644 content/post/2022/07-23_postgis-3.2.2.md


hooks/post-receive
-- 
postgis.net


More information about the postgis-tickets mailing list