[Git][debian-gis-team/mapproxy][master] 4 commits: New upstream version 5.1.1+dfsg
Bas Couwenberg (@sebastic)
gitlab at salsa.debian.org
Wed Oct 1 10:46:51 BST 2025
Bas Couwenberg pushed to branch master 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
- - - - -
fcb6cc93 by Bas Couwenberg at 2025-10-01T11:41:59+02:00
Update upstream source from tag 'upstream/5.1.1+dfsg'
Update to upstream version '5.1.1+dfsg'
with Debian dir d46d1882873bf31ce0ca2a404b61860a6de3b2fe
- - - - -
05807aee by Bas Couwenberg at 2025-10-01T11:42:11+02:00
New upstream release.
- - - - -
4946a6da by Bas Couwenberg at 2025-10-01T11:43:04+02:00
Set distribution to unstable.
- - - - -
6 changed files:
- CHANGES.txt
- debian/changelog
- 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
~~~~~~~~~~~~~~~~
=====================================
debian/changelog
=====================================
@@ -1,8 +1,9 @@
-mapproxy (5.1.0+dfsg-2) UNRELEASED; urgency=medium
+mapproxy (5.1.1+dfsg-1) unstable; urgency=medium
+ * New upstream release.
* Drop Rules-Requires-Root: no, default since dpkg 1.22.13.
- -- Bas Couwenberg <sebastic at debian.org> Wed, 01 Oct 2025 08:44:46 +0200
+ -- Bas Couwenberg <sebastic at debian.org> Wed, 01 Oct 2025 11:42:53 +0200
mapproxy (5.1.0+dfsg-1) unstable; urgency=medium
=====================================
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/-/compare/e41354edef18fe69a47910cc56bceadf3bb548ee...4946a6dab2d4caf5080a0fb8253602bb754543e6
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/mapproxy/-/compare/e41354edef18fe69a47910cc56bceadf3bb548ee...4946a6dab2d4caf5080a0fb8253602bb754543e6
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/7078d6f5/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list