[SCM] PostGIS branch stable-3.2 updated. 3.2.10-75-g31612cd7b
git at osgeo.org
git at osgeo.org
Sun Jul 19 13:47:41 PDT 2026
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 31612cd7bb39311cb06eafae3348641b51b91df8 (commit)
via 084603655a0eb10bab36a046953d19fbf713cbad (commit)
via 9d052fbfffc819d939ab9fffbacef2ada94235fc (commit)
from 428c1fcc21d08671b3e69fc091d11660b1112095 (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 31612cd7bb39311cb06eafae3348641b51b91df8
Merge: 428c1fcc2 084603655
Author: Darafei Praliaskouski <komzpa at gmail.com>
Date: Sun Jul 19 13:47:39 2026 -0700
Merge pull request 'Fix stable 3.2 ST_TileEnvelope upgrade marker syntax' (!450) from Komzpa/postgis:fix/stable-3.2-upgrade-syntax into stable-3.2
Reviewed-on: https://gitea.osgeo.org/postgis/postgis/pulls/450
commit 084603655a0eb10bab36a046953d19fbf713cbad
Author: Darafei Praliaskouski <me at komzpa.net>
Date: Mon Jul 20 00:43:27 2026 +0400
utils: skip future-version downgrade probes
diff --git a/utils/check_all_upgrades.sh b/utils/check_all_upgrades.sh
index e882c9b35..92318776e 100755
--- a/utils/check_all_upgrades.sh
+++ b/utils/check_all_upgrades.sh
@@ -419,6 +419,11 @@ for EXT in ${INSTALLED_EXTENSIONS}; do #{
kept_label "${test_label}" || continue
+ if test $cmp -gt 0; then
+ echo "SKIP: ${test_label} (${to_version} is not newer than ${from_version})"
+ continue
+ fi
+
path=$( psql -XAtc "
SELECT path
FROM pg_catalog.pg_extension_update_paths('${EXT}')
commit 9d052fbfffc819d939ab9fffbacef2ada94235fc
Author: Darafei Praliaskouski <me at komzpa.net>
Date: Sun Jul 19 21:48:05 2026 +0400
Fix ST_TileEnvelope upgrade marker syntax
diff --git a/NEWS b/NEWS
index 833e39991..083a5d913 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,8 @@ PostGIS 3.2.11
- #6094, [upgrade] Avoid legacy string literal warnings in downgrade checks
with standard_conforming_strings off (Darafei Praliaskouski)
+ - [upgrade] Fix ST_TileEnvelope upgrade marker syntax
+ (Darafei Praliaskouski)
- #5899, pg_upgrade issue for non-standard geography SRID (Paul Ramsey)
- Flatgeobuf schema mismatch vulnerability (NeuroWinter)
- #5989, CurvePolygon distance corner case (Paul Ramsey)
diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in
index 10ed2a260..f3fe27772 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -1807,7 +1807,7 @@ CREATE OR REPLACE FUNCTION ST_MakeEnvelope(float8, float8, float8, float8, integ
-- Availability: 3.0.0
-- Changed: 3.1.0 - add margin=0.0 parameter
--- Replaces ST_TileEnvelope(zoom integer, x integer, y integer, bounds geometry) deprecated in 3.1.0
+-- Replaces ST_TileEnvelope(integer, integer, integer, geometry) deprecated in 3.1.0
CREATE OR REPLACE FUNCTION ST_TileEnvelope(zoom integer, x integer, y integer, bounds geometry DEFAULT 'SRID=3857;LINESTRING(-20037508.342789244 -20037508.342789244, 20037508.342789244 20037508.342789244)'::geometry, margin float8 DEFAULT 0.0)
RETURNS geometry
AS 'MODULE_PATHNAME', 'ST_TileEnvelope'
-----------------------------------------------------------------------
Summary of changes:
NEWS | 2 ++
postgis/postgis.sql.in | 2 +-
utils/check_all_upgrades.sh | 5 +++++
3 files changed, 8 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list