[Git][debian-gis-team/mapproxy][upstream] New upstream version 5.1.1+dfsg
Bas Couwenberg (@sebastic)
gitlab at salsa.debian.org
Wed Oct 1 10:46:55 BST 2025
Bas Couwenberg pushed to branch upstream at Debian GIS Project / mapproxy
Commits:
259e5479 by Bas Couwenberg at 2025-10-01T11:41:56+02:00
New upstream version 5.1.1+dfsg
- - - - -
5 changed files:
- CHANGES.txt
- doc/mapproxy_util.rst
- mapproxy/config/loader.py
- mapproxy/source/tile.py
- setup.py
Changes:
=====================================
CHANGES.txt
=====================================
@@ -1,3 +1,15 @@
+5.1.1 2025-10-01
+~~~~~~~~~~~~~~~~
+
+Improvements:
+
+ - Better logging of http errors if mapproxy requests tiles
+
+Fixes:
+
+ - Fixed logger for merged configuration files
+
+
5.1.0 2025-09-30
~~~~~~~~~~~~~~~~
=====================================
doc/mapproxy_util.rst
=====================================
@@ -109,6 +109,10 @@ You need to pass the MapProxy configuration as an argument. The server will auto
The server outputs debug logging information to the console.
+.. cmdoption:: --log-config
+
+ Supply a logging config.
+
Example
-------
=====================================
mapproxy/config/loader.py
=====================================
@@ -2405,7 +2405,7 @@ def load_configuration(mapproxy_conf, seed=False, ignore_warnings=True, renderd=
try:
conf_dict = load_configuration_file([os.path.basename(mapproxy_conf)], conf_base_dir)
- log.debug('Loaded configuration file', json.dumps(conf_dict, indent=2, sort_keys=True, default=str))
+ log.debug('Loaded configuration file: %s', json.dumps(conf_dict, indent=2, sort_keys=True, default=str))
except YAMLError as ex:
raise ConfigurationError(ex)
errors, informal_only = validate_options(conf_dict)
=====================================
mapproxy/source/tile.py
=====================================
@@ -79,7 +79,7 @@ class TiledSource(MapLayer):
resp = self.error_handler.handle(e.response_code, query)
if resp:
return resp
- log.warning('could not retrieve tile: %s', e)
+ log.warning('could not retrieve tile (client: %s): %s', self.client, e, exc_info=True)
reraise_exception(SourceError(e.args[0]), sys.exc_info())
=====================================
setup.py
=====================================
@@ -41,7 +41,7 @@ def long_description(changelog_releases=10):
setup(
name='MapProxy',
- version="5.1.0",
+ version="5.1.1",
description='An accelerating proxy for tile and web map services',
long_description=long_description(7),
long_description_content_type='text/x-rst',
View it on GitLab: https://salsa.debian.org/debian-gis-team/mapproxy/-/commit/259e54791d3b5913d764fb12d624a83cc88f04a6
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/mapproxy/-/commit/259e54791d3b5913d764fb12d624a83cc88f04a6
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20251001/999f705a/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list