Skip to content

Commit b617f1c

Browse files
committed
update for 8.6.4 release [build_translations] (#1086)
1 parent 18c1fa8 commit b617f1c

16 files changed

Lines changed: 102 additions & 36 deletions

File tree

conf.py

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def __getattr__(cls, name):
9494
# The short X.Y version.
9595
version = '8.6'
9696
# The full version, including alpha/beta/rc tags.
97-
release = '8.6.3'
97+
release = '8.6.4'
9898
# The language for content autogenerated by Sphinx. Refer to documentation
9999
# for a list of supported languages.
100100
#language = None
@@ -246,6 +246,24 @@ def __getattr__(cls, name):
246246
# this can be set as a sphinx-build option using `-A BRANCH=main`
247247
html_context = {'branch': release}
248248

249+
# linkcheck options
250+
# -----------------
251+
252+
linkcheck_exclude_documents = [
253+
r'.*/changelog/.*',
254+
r'.*/rfc/.*',
255+
r'.*/announce/.*',
256+
r'.*/announcements/.*'
257+
]
258+
259+
linkcheck_ignore = [
260+
r'https?://localhost(?:\:\d+)?(?:/.*)?$',
261+
r'https?://127\.0\.0\.1(?:\:\d+)?(?:/.*)?$',
262+
r'https?://myserver(?:\:\d+)?(?:/.*)?$',
263+
r'https?://server(?:\:\d+)?(?:/.*)?$',
264+
r'https?://example.com(?:\:\d+)?(?:/.*)?$'
265+
]
266+
249267
# Options for LaTeX output
250268
# ------------------------
251269

en/MIGRATION_GUIDE.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ MapServer Migration Guide
2222
MapServer 8.4 to 8.6 Migration
2323
==============================
2424

25+
- The 8.6.4 release includes fixes for two vulnerabilities, see the advisories:
26+
27+
- `OpenLayers viewer with WMS <https://github.com/MapServer/MapServer/security/advisories/GHSA-xqj6-vjqr-33vv>`__ advisory
28+
- `PostGIS support <https://github.com/MapServer/MapServer/security/advisories/GHSA-xp29-8wp5-wc3p>`__ advisory
29+
2530
- The 8.6.3 release includes a fix for a vulnerability in the SLD parser
2631
(see MapServer's `Security Advisory <https://github.com/MapServer/MapServer/security/advisories/GHSA-4h8g-378q-r75m>`__)
2732

en/announcements/announcements_archive.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@
44
MapServer Announcement Archives
55
*****************************************************************************
66

7+
**2026-06-01 - MapServer 8.6.4 is released**
8+
9+
.. important::
10+
Security release available
11+
12+
The security release of MapServer 8.6.4 has been issued in order to fix
13+
two vulnerabilities. See the :ref:`changelog <changelog-8-6-4>`
14+
for the list of changes.
15+
You may also review the security advisories for this release:
16+
17+
1. `OpenLayers viewer with WMS <https://github.com/MapServer/MapServer/security/advisories/GHSA-xqj6-vjqr-33vv>`__ advisory
18+
2. `PostGIS support <https://github.com/MapServer/MapServer/security/advisories/GHSA-xp29-8wp5-wc3p>`__ advisory
19+
20+
You may also review MapServer's `Security Policy <https://github.com/MapServer/MapServer/blob/main/SECURITY.md>`__.
21+
As security for the 7.6 branch has ended, and branches 8.4, 8.2 & 8.0 are not supported,
22+
all users are strongly encouraged to upgrade to the MapServer 8.6.4 release (see the
23+
:ref:`Migration Guide <migration>`).
24+
25+
Head to :ref:`download` to obtain a copy.
26+
727
**2026-05-07 - MapServer 8.6.3 is released**
828

929
.. important::

en/development/changelog/changelog-8-6.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@
77
The summary of major changes for this release can be found in the `HISTORY.md <https://github.com/MapServer/MapServer/blob/branch-8-6/HISTORY.md>`__
88
file from the source directory.
99

10+
.. _changelog-8-6-4:
11+
12+
Changes from 8.6.3 to 8.6.4
13+
===========================
14+
15+
* PostGIS: make sure identifier value is numeric when the declared type is numeric too ( `#7519 <https://github.com/MapServer/MapServer/issues/7519>`__ ) (Even Rouault) : `65f1b53 <https://github.com/MapServer/MapServer/commit/65f1b53c258df2abdf6ce1f437c29e75e9976247>`__
16+
* WMS OpenLayers output: properly escape mapserv_onlineresource ( `#7518 <https://github.com/MapServer/MapServer/issues/7518>`__ ) (Even Rouault) : `ff17ef1 <https://github.com/MapServer/MapServer/commit/ff17ef190caaeaa9002ac3d1c7969ec5315c345e>`__
17+
* cgiutil: fix handling of malformed percent-encoding ( `#7515 <https://github.com/MapServer/MapServer/issues/7515>`__ ) (Stefan Gloor) : `6364c71 <https://github.com/MapServer/MapServer/commit/6364c71bff48d669fd62866ad52e2b1292f23da9>`__
18+
* PostGIS: fix wfs_use_default_extent_for_getfeature=false and PROCESSING=NATIVE_FILTER ( `#7514 <https://github.com/MapServer/MapServer/issues/7514>`__ ) (Even Rouault) : `6bb14b2 <https://github.com/MapServer/MapServer/commit/6bb14b222fc17ac5d6e322faff85010e81104288>`__
19+
* Fix incorrect JSON error message output on Index Pages ( `#7513 <https://github.com/MapServer/MapServer/issues/7513>`__ ) (Seth Girvin) : `7f18840 <https://github.com/MapServer/MapServer/commit/7f188405d7a46291206911d853189cb4c09cb38f>`__
20+
1021
.. _changelog-8-6-3:
1122

1223
Changes from 8.6.2 to 8.6.3

en/development/documentation.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:Contact: hobu.inc at gmail.com
99
:Author: Jeff McKenna
1010
:Contact: jmckenna at gatewaygeomatics.com
11-
:Last Updated: 2026-03-29
11+
:Last Updated: 2026-06-02
1212

1313
.. contents:: Table of Contents
1414
:depth: 4

en/development/tests/autotest.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:Contact: warmerdam at pobox.com
99
:Author: Jeff McKenna
1010
:Contact: jmckenna at gatewaygeomatics.com
11-
:Last Updated: 2026-03-28
11+
:Last Updated: 2026-06-02
1212

1313
.. contents:: Table of Contents
1414
:depth: 2
@@ -226,7 +226,7 @@ that fails, for image files, there is an attempt to compare the image checksums
226226
using the GDAL Python bindings. If the GDAL Python bindings are not available
227227
this step is quietly skipped.
228228

229-
If you install the PerceptualDiff program (http://pdiff.sourceforge.net/) and
229+
If you install the PerceptualDiff program (https://pdiff.sourceforge.net/) and
230230
it is in the path, then msautotest will attempt to use it as a last fallback
231231
when comparing images. If images are found to be "perceptually" the same the
232232
test will pass with the message "result images perceptually match, though

en/development/translation.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Starting with Transifex
5454
Subscribe to Transifex
5555
-----------------------
5656

57-
You need to subscribe to Transifex before translating. Go to `Transifex subscribing page <https://www.transifex.com/signup/contributor/>`_ and create a new account.
57+
You need a Transifex account before translating. Go to `Open Source Transifex account page <https://app.transifex.com/signup/open-source/>`_ and create a new account.
5858

5959
.. image:: ../images/documentation/tr_newaccount.png
6060

@@ -64,9 +64,9 @@ Find the project
6464
----------------
6565
There are several OSGeo projects hosted on Transifex, here are some of them:
6666

67-
* `MapServer <https://www.transifex.com/organization/mapserver/dashboard>`_
68-
* `PostGIS <https://www.transifex.com/organization/postgis/dashboard>`_
69-
* `QGIS <https://www.transifex.com/organization/qgis/dashboard>`_
67+
* `MapServer <https://explore.transifex.com/mapserver/mapserver-doc/>`_
68+
* `GeoNetwork <https://explore.transifex.com/geonetwork/core-geonetwork/>`_
69+
* `QGIS <https://explore.transifex.com/qgis/QGIS/>`_
7070

7171
You can find more in the Transifex website.
7272

en/include/announcements.inc

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
**2026-06-01 - MapServer 8.6.4 is released**
2+
3+
.. important::
4+
Security release available
5+
6+
The security release of MapServer 8.6.4 has been issued in order to fix
7+
two vulnerabilities. See the :ref:`changelog <changelog-8-6-4>`
8+
for the list of changes.
9+
You may also review the security advisories for this release:
10+
11+
1. `OpenLayers viewer with WMS <https://github.com/MapServer/MapServer/security/advisories/GHSA-xqj6-vjqr-33vv>`__ advisory
12+
2. `PostGIS support <https://github.com/MapServer/MapServer/security/advisories/GHSA-xp29-8wp5-wc3p>`__ advisory
13+
14+
You may also review MapServer's `Security Policy <https://github.com/MapServer/MapServer/blob/main/SECURITY.md>`__.
15+
As security for the 7.6 branch has ended, and branches 8.4, 8.2 & 8.0 are not supported,
16+
all users are strongly encouraged to upgrade to the MapServer 8.6.4 release (see the
17+
:ref:`Migration Guide <migration>`).
18+
19+
Head to :ref:`download` to obtain a copy.
20+
121
**2026-05-07 - MapServer 8.6.3 is released**
222

323
.. important::

en/input/vector/ogr.txt

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ OGR Vector Layers Through MapServer
99

1010
:Author: Jeff McKenna
1111
:Contact: jmckenna at gatewaygeomatics.com
12-
:Last Updated: 2026-03-29
12+
:Last Updated: 2026-06-02
1313

1414
.. contents:: Table of Contents
1515
:depth: 3
@@ -75,11 +75,10 @@ Here is a list of some of the popular vector formats that are supported:
7575
- `ArcInfo E00 Coverages`_
7676
- Atlas BNA (see GDAL `extra-drivers <https://github.com/OSGeo/gdal-extra-drivers>`__)
7777
- `Comma Separated Value (.csv)`_
78-
- `DODS/OPeNDAP`_
78+
- DODS/OPeNDAP (see GDAL `extra-drivers <https://github.com/OSGeo/gdal-extra-drivers>`__)
7979
- `ESRI Personal GeoDatabase`_
8080
- `ESRI Shapefiles`_
81-
- `FMEObjects Gateway`_
82-
- `Géoconcept Export`_
81+
- FME (see GDAL `extra-drivers <https://github.com/OSGeo/gdal-extra-drivers>`__)
8382
- `GeoJSON`_
8483
- `GeoPackage`_
8584
- `GeoRSS`_
@@ -88,18 +87,16 @@ Here is a list of some of the popular vector formats that are supported:
8887
- `GRASS`_
8988
- `GPX`_
9089
- `Informix DataBlade`_
91-
- `INGRES`_
90+
- INGRES (see GDAL `extra-drivers <https://github.com/OSGeo/gdal-extra-drivers>`__)
9291
- `INTERLIS`_
9392
- `KML`_
9493
- `MapInfo files`_
9594
- `Memory`_
9695
- `Microstation DGN files`_
9796
- `MySQL`_
9897
- `ODBC`_
99-
- `OGDI Vectors`_
10098
- `Oracle Spatial`_
10199
- `PostgreSQL`_
102-
- `SDTS`_
103100
- `SQLite`_
104101
- `UK.NTF (National Transfer Format)`_
105102
- `US Census TIGER/Line`_
@@ -1017,33 +1014,27 @@ SISTEMA INFORMATIVO TERRITORIALE ED AMBIENTALE ( http://www.geografia.toscana.it
10171014
.. _`ArcInfo Binary Coverages`: https://gdal.org/drivers/vector/avcbin.html
10181015
.. _`ArcInfo E00 Coverages`: https://gdal.org/drivers/vector/avce00.html
10191016
.. _`Comma Separated Value (.csv)`: https://gdal.org/drivers/vector/csv.html
1020-
.. _`DODS/OPeNDAP`: https://gdal.org/drivers/vector/dods.html
10211017
.. _`DWG`: https://gdal.org/drivers/vector/dwg.html
10221018
.. _`DXF`: https://gdal.org/drivers/vector/dxf.html
10231019
.. _`ESRI Personal GeoDatabase`: https://gdal.org/drivers/vector/pgeo.html
10241020
.. _`ESRI Shapefiles`: https://gdal.org/drivers/vector/shapefile.html
1025-
.. _`FMEObjects Gateway`: https://gdal.org/drivers/vector/fme.html
10261021
.. _`GML`: https://gdal.org/drivers/vector/gml.html
10271022
.. _`GMT`: https://gdal.org/drivers/vector/gmt.html
1028-
.. _`Géoconcept Export`: https://gdal.org/drivers/vector/geoconcept.html
10291023
.. _`GeoJSON`: https://gdal.org/drivers/vector/geojson.html
10301024
.. _`GeoPackage`: https://gdal.org/drivers/vector/gpkg.html
10311025
.. _`GeoRSS`: https://gdal.org/drivers/vector/georss.html
10321026
.. _`GPX`: https://gdal.org/drivers/vector/gpx.html
10331027
.. _`GRASS`: https://gdal.org/drivers/vector/grass.html
10341028
.. _`Informix DataBlade`: https://gdal.org/drivers/vector/idb.html
1035-
.. _`INGRES`: https://gdal.org/drivers/vector/ingres.html
10361029
.. _`INTERLIS`: https://gdal.org/drivers/vector/ili.html
10371030
.. _`KML`: https://gdal.org/drivers/vector/kml.html
10381031
.. _`MapInfo files`: https://gdal.org/drivers/vector/mitab.html
10391032
.. _`Memory`: https://gdal.org/drivers/vector/memory.html
10401033
.. _`Microstation DGN files`: https://gdal.org/drivers/vector/dgn.html
10411034
.. _`MySQL`: https://gdal.org/drivers/vector/mysql.html
1042-
.. _`OGDI Vectors`: https://gdal.org/drivers/vector/ogdi.html
10431035
.. _`ODBC`: https://gdal.org/en/stable/drivers/vector/odbc.html
10441036
.. _`Oracle Spatial`: https://gdal.org/en/stable/drivers/vector/oci.html
10451037
.. _`PostgreSQL`: https://gdal.org/drivers/vector/pg.html
1046-
.. _`SDTS`: https://gdal.org/drivers/vector/sdts.html
10471038
.. _`SQLite`: https://gdal.org/drivers/vector/sqlite.html
10481039
.. _`UK.NTF (National Transfer Format)`: https://gdal.org/drivers/vector/ntf.html
10491040
.. _`US Census TIGER/Line`: https://gdal.org/drivers/vector/tiger.html

en/input/vector/postgis.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
:Author: Jeff McKenna
88
:Contact: jmckenna at gatewaygeomatics.com
9-
:Last Updated: 2022-04-25
9+
:Last Updated: 2026-06-02
1010

1111
.. contents:: Table of Contents
1212
:depth: 3
@@ -422,7 +422,7 @@ Support for SQL/MM Curves
422422
PostGIS is able to store circular interpolated curves, as part of the
423423
SQL Multimedia Applications Spatial specification (read about the
424424
`SQL/MM specification
425-
<http://subs.emis.de/LNI/Proceedings/Proceedings26/GI-Proceedings.26-17.pdf>`__).
425+
<https://www.researchgate.net/publication/221323544_SQLMM_Spatial_-_The_Standard_to_Manage_Spatial_Data_in_a_Relational_Database_System>`__).
426426

427427
For more information about PostGIS' support, see the *SQL-MM Part 3*
428428
section in the PostGIS documentation, such as `here

0 commit comments

Comments
 (0)