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

git at osgeo.org git at osgeo.org
Tue Aug 16 19:51:20 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  e3ee0c5db79402e46db67030287177a6602dfec9 (commit)
      from  52aae6201b1c07a7b11bc3a8b41d2d0b0f4e4304 (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 e3ee0c5db79402e46db67030287177a6602dfec9
Author: Regina Obe <lr at pcorp.us>
Date:   Tue Aug 16 22:51:13 2022 -0400

    Update instructions and latst stable version

diff --git a/config/_default/params.toml b/config/_default/params.toml
index 4175726..315e27d 100644
--- a/config/_default/params.toml
+++ b/config/_default/params.toml
@@ -125,7 +125,7 @@ matomoDomain = "matomo.example.com" # Set to Matomo domain
 matomoSiteID = "1" # Default is set to 1, change this to the siteid being tracked
 
 [postgis]
-version = "3.2.1"
+version = "3.2.2"
 release_docs =  "https://download.osgeo.org/postgis/docs"
 release_source = "https://download.osgeo.org/postgis/source"
 release_notes = "https://git.osgeo.org/gitea/postgis/postgis/raw/tag"
diff --git a/content/pages/install.md b/content/pages/install.md
index fd06a4e..f1b443b 100644
--- a/content/pages/install.md
+++ b/content/pages/install.md
@@ -102,32 +102,33 @@ CREATE EXTENSION postgis_tiger_geocoder;
 ```
 
 ## Upgrading PostGIS
-To upgrade PostGIS, you first have to install the latest binaries and then upgrade each database you have PostGIS installed in
+To upgrade PostGIS, you first have to install the latest binaries and then upgrade each database you have PostGIS installed in.
 
-For example connect to database you want to upgrade and if you just installed binaries for 2.1.3
-You can upgrade from 2.0 to 2.1, 2.2 et.c using this approach. To go from 1.* to 2.* you need to do a hard upgrade.
+For example connect to database you want to upgrade and if you just installed binaries for 2.5.
+You can upgrade from 2.5 to 3.1, 3.3 etc using this approach. To go from 1.* to 2.* or 1.* to 3.* you need to do a hard upgrade.
 Refer to  [PostGIS install](/docs/postgis_installation.html#install_short_version)  for more extensive instructions.
-Note: that as of PostGIS 2.1.3 and PostGIS 2.0.6, you need to set [environment variables](/posts/2014/05/19/postgis-2.0.6_and_2.1.3) to get full features.
+Note: that as of PostGIS 2.1.3 and PostGIS 2.0.6, you need to set [environment variables or GUCS](/2014/05/19/postgis-2.0.6_and_2.1.3) to get full features.
 
+For PostGIS 3+
 ```postgres
--- Upgrade PostGIS (includes raster) to latest version
+-- Upgrades postgis and other installed postgis packaged extensions
+SELECT postgis_extensions_upgrade();
+```
+
+For PostGIS 2.5 and below
+```postgres
+-- Upgrade PostGIS and postgis packaged extensions
 ALTER EXTENSION postgis UPDATE;
-ALTER EXTENSION postgis_topology UPDATE;
+SELECT postgis_extensions_upgrade();
+SELECT postgis_extensions_upgrade();
 ```
 
 or to a specific version
 
 ```postgres
--- Upgrade PostGIS (includes raster)
+-- Upgrade PostGIS (repeat for each PostGIS packaged extension you have installed)
 ALTER EXTENSION postgis
  UPDATE TO "{{< loc postgis.version>}}";
--- Upgrade Topology
-ALTER EXTENSION postgis_topology
- UPDATE TO "{{< loc "postgis.version">}}";
-
--- Upgrade US Tiger Geocoder
-ALTER EXTENSION postgis_tiger_geocoder
- UPDATE TO "{{< loc "postgis.version">}}";
 ```
 
 
diff --git a/content/post/2014/05-19_postgis-2.0.6_and_2.1.3.md b/content/post/2014/05-19_postgis-2.0.6_and_2.1.3.md
index 5059320..41ae820 100644
--- a/content/post/2014/05-19_postgis-2.0.6_and_2.1.3.md
+++ b/content/post/2014/05-19_postgis-2.0.6_and_2.1.3.md
@@ -1,5 +1,6 @@
 ---
 title: Security releases 2.0.6 and 2.1.3
+slug: "postgis-2.0.6_and_2.1.3"
 layout: post
 category: news
 tags: [release, 2.1, 2.0]

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

Summary of changes:
 config/_default/params.toml                        |  2 +-
 content/pages/install.md                           | 29 +++++++++++-----------
 content/post/2014/05-19_postgis-2.0.6_and_2.1.3.md |  1 +
 3 files changed, 17 insertions(+), 15 deletions(-)


hooks/post-receive
-- 
postgis.net


More information about the postgis-tickets mailing list