-
Notifications
You must be signed in to change notification settings - Fork 293
Expand file tree
/
Copy pathCHANGES.txt
More file actions
1435 lines (1005 loc) · 40.8 KB
/
CHANGES.txt
File metadata and controls
1435 lines (1005 loc) · 40.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
6.1.0 2026-06-03
~~~~~~~~~~~~~~~~
Maintenance:
- Add static typing
- Update action versions
- Post coverage report in PRs
- Update pillow versions in actions
- Replace tox.ini with pyproject.toml
- Update docs
- Add architecture diagrams
- Update various dependencies
- Refactored code to clarify and use types
- Refactored ImageSource to ImageResult
- Split loader.py into multiple files
- Remove support for python 3.9 (EOL)
- Fixed shapely deprecation warnings
Improvements:
- Add json GFI format
- Improve configuration validation
- Improvements for reverse proxy setups
- Improve multi processing in tests
- XML / HMTL errors in GFI requests are handled in a more lenient way now. Instead of raising exceptions on bad input, the code now logs warnings and returns safe empty defaults.
- Feature: Update OpenLayers and use OGCMapTile source in OGC-API demo pages
- Use environment variables in yaml-files for storing sensitve data
Fixes:
- Bug fixes in OGC APIs
- Fix seeding worker crash on incomplete HTTP responses
- Catch sqlite3.DatabaseErrors for all cursor actions
- Wrap IOError as LockError in LockFile.__init__ to enable retry on race condition
6.0.1 2025-10-29
~~~~~~~~~~~~~~~~
Maintenance:
- Removed code to be able to start up MapProxy without PIL.
Fixes:
- Add python-dateutil dependency to avoid errors on startup.
- Add ogcapi to config-schema.json to avoid warnings on startup.
6.0.0 2025-10-22
~~~~~~~~~~~~~~~~
Breaking:
- The extension for mbtiles used in MapProxy was wrong. It used `.mbtile` instead of `.mbtiles`. Existing files in
caches have to be renamed! Here is a small script to change all files in a directory recursively:
`find . -type f -name "*.mbtile" -exec sh -c 'mv "$1" "${1%.mbtile}.mbtiles"' _ {} \;`
- lxml was updated. The new version is much stricter in its inputs and administrators might have to adjust
featureinfo services to output valid HTML.
Improvements:
- New source types `ogcapitiles` and `ogcapimaps` are now available! See docs for further information.
- New util `gridconf-from-ogcapitilematrixset` to fetch grids from an OGC API compliant web service was added.
See docs for further information.
- MapProxy now offers an OGCAPI compliant service for OGC API Maps and OGC API Tiles. Including landing page and
preview maps! See docs for further information.
- The `SERVICE` parameter for WMS `GetMap` requests is no longer mandatory as according to spec.
- Added test pipeline for the documentation.
- The GitHub actions now have better fitting permissions, improving the security.
- WMTS capabilities now include `OperationsMetadata` for restful mode.
- TMS capabilities now include metadata similar to WMS and WMTS.
Maintenance:
- Some fixes in the documentation.
- As shapely is no longer optional, code to check for its existence has been removed.
Fixes:
- An error regarding unicode strings in the featureinfo parsing was fixed.
- An error in the debug logging of configurations was fixed
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
~~~~~~~~~~~~~~~~
Improvements:
- Added `query_layers` option to `wms_opts` to be able to configure the `QUERY_LAYERS` of the wms request
- Added workflow to republish docker images if the base image changed, i.e. for security updates
Maintenance:
- Fixed some spelling and debug output
- Updated various dependencies
Fixes:
- Fixes some errors in the json schema regarding `use_direct_level_from` and `use_direct_res_from`
- Fixes an error with merging resolutions of grids
5.0.0 2025-06-18
~~~~~~~~~~~~~~~~
Breaking:
- The dependencies lxml, shapely, pyproj, gdal and PyYAML are no longer optional
Maintenance:
- By default lxml, shapely, pyproj, Pillow and PyYAML are now installed via pip and are not recommended to be installed
as apt packages anymore
Fixes:
- The alpine image uses the python3 plugin for uwsgi correctly
- An lxml encoding error is fixed
4.1.2 2025-05-27
~~~~~~~~~~~~~~~~
Maintenance:
- Set Pillow versions in setup.py to actually supported versions
- Using PIL instead of Pillow was not working since Python 2, so it is removed from setup.py
- Using a higher pyproj version for Python 3.13 is necessary
- Added a test for an older Pillow version with Python 3.9
4.1.1 2025-04-30
~~~~~~~~~~~~~~~~
Improvements:
- The scale denominator in the WMTS capabilites is now rounded to 10 digits after the decimal place.
4.1.0 2025-04-29
~~~~~~~~~~~~~~~~
Improvements:
- It is now possible to integrate the grid name into paths for AWS buckets. This allows storage of tiles for multiple
grids in the same bucket.
- We are returning a 404 http status code instead of a 500 if no legend graphic is found for a service.
- We are using utf-8 in GetFeatureInfo requests now.
Maintenance:
- Updated some dependencies.
- Updated the GitHub runner versions.
- Refactored the grid.py file into multiple files.
- Removed the implementation of odict in favour of the builtin OrderedDict class.
- Added support for python 3.13.
- Skipping permissions tests if tests are run with root user. This is necessary to build and test MapProxy in a chroot
environment which is used to package MapProxy for Debian. Normal testing is not affected.
Fixes:
- Fixed deprecation warnings for utctime, sqlite, ImageMath.eval, mock_s3.
- Fix entrypoint.sh to create default MapProxy configurations if none are found.
- Allowed the trivy security scan workflow to write the results to the GitHub security tab.
- We are not allowing the deprecated TLS Versions 1.1 or lower for connections to servers anymore.
4.0.2 2025-04-10
~~~~~~~~~~~~~~~~
Fixes:
- Security fix to prevent XSS injections in demo pages
- Security fix to prevent reading file urls
4.0.1 2025-03-25
~~~~~~~~~~~~~~~~
Improvements:
- Added docs regarding OGC API support
Fixes:
- WMTS Demo now works if kvp is disabled
4.0.0 2025-03-21
~~~~~~~~~~~~~~~~
Breaking:
- Removed legacy seed configuration.
- Removed Python 3.8 support.
- Removed riak support as the client library is not maintained anymore. If you rely on the riak support you have to
continue to use version 3.1.3 with Python 3.8.
Improvements:
- The tile removal and refresh code is improved by simplifying the usage of `remove_timestamp` and `before_timestamp`
and complementing them by new `remove_all` and `refresh_all` parameters.
- Add a default logging config to the docker images.
- Add environment variables to the docker images to enable and configure multiapp support.
- Added a docker compose file to make it easy to run & build docker images and to use as reference.
- Updated and improved the documentation about usage of the docker images.
Maintenance:
- Use python build instead of invoking setup.py.
- Removal of the six library.
- Removed array initializers in function signatures.
Fixes:
- Added `AdminstrativeArea` to WMTS serviceprovider metadata.
- Fixed spelling & grammar in seed.rst.
- Fixed problem with combined usage of `coverage` and the `remove_all` cache config parameters.
- Fixed missing dimension parameters in the `remove_tile` functions of various caches.
3.1.3 2024-11-26
~~~~~~~~~~~~~~~~
Maintenance:
- Several dependencies for the tests and GitHub actions have been updated
- Spelling and grammar mistakes in the documentation corrected
Fixes:
- The chmod to update file permissions is now only called if the file was freshly created
- A bug with clipping polygons that become multi polygons due to the clipping is now fixed
3.1.2 2024-11-20
~~~~~~~~~~~~~~~~
Maintenance:
- Several dependencies for the tests and github actions have been updated
Fixes:
- Metadata URLs are now required to have a `url`, `type` and `format`
- The layers of a wms `req` are now correctly splitted at `,` for validation
- The validation for seeding configs is fixed
- Single color tiles are now created with configured file_permissions
3.1.1 2024-11-15
~~~~~~~~~~~~~~~~
Maintenance:
- Werkzeug version is no longer pinned and can be chosen freely.
Fixes:
- The permission handling for file locks now also sets permissions on the files not just on the directories.
3.1.0 2024-10-22
~~~~~~~~~~~~~~~~
Improvements:
- Add new config parameters `file_permissions` and `directory_permissions` to set file and directory
permissions on newly created cache files and directories.
Maintenance:
- Dependency updates
Fixes:
- Fix transparency in TMS demo page.
3.0.1 2024-08-27
~~~~~~~~~~~~~~~~
Fixes:
- Fix capabilities links in demo page and config template
- Trivy report format
3.0.0 2024-08-27
~~~~~~~~~~~~~~~~
Breaking:
- Add proper XML Exception when service parameter disabled / invalid or missing
In the past MapProxy returned WMS Capabilities when no explicit service parameter was given in
GetCapabilities requests. With this change, an OGC exception will be returned instead.
Invalid service types now also return a proper exception instead of an `internal error`.
Besides, the status code of exception responses now have a 400 or 500 code instead of 200
for better conformity.
Maintenance:
- Add test for seeding sqlite cache
- Documentation updates and clarifications
- Dependency updates
Fixes:
- Fix gh-pages workflow
2.2.0 2024-07-24
~~~~~~~~~~~~~~~~
Improvements:
- Add timeout to SQLite connect for geopackages. This helps against locking exceptions
- Improvement of documentation, typos, wrong cli commands, old python2 stuff
- The WMTS capabilites will now advertise the WMS GetLegendGraphic as a LegendURL if both services are active
- It is possible now to configure LegendURLs that should be shown in the WMTS capabilities
- A new method for plugins to intercept and modify requests made to MapProxy was added.
Maintenance:
- Removal of debian package information
- Fix docs workflow
Fixes:
- Remove import of the packaging library that does not appear in the `install_requires`
- Only install and use `importlib_resources` in python 3.8
2.1.1 2024-07-16
~~~~~~~~~~~~~~~~
Fixes:
- Fix version of jsonschema in setup.py
- Fix alpine docker build
- Fix doc generation workflow
2.1.0 2024-07-16
~~~~~~~~~~~~~~~~
Improvements:
- Configuration files can no be splitted into multiple files
- Added jsonschema to validate configuration files
- New theme for documentation, overall improvement of the documentation and github workflow for automatic creation
- Improved docker images with better entrypoint and workflow to build docker images with a builder image
- Added release workflow for automatic publishing on pypi and github
Maintenance:
- Dependency updates
- Remove python 2 compatibility functions
- Added flake8 linting
- setup.py contains now required libraries
- Remove depracated `pkg_resources` in favor of `importlib_resources`
- Addressed shapely deprecations
Fixes:
- Ensure make_app always returns MapProxyApp instance
- Allow feature info responses of combined sources to be empty
- Fix broken TMS demo
- Fix problem with dimensions in load_tile_metadata
- Fix GeoTIFF Headers
2.0.2 2024-01-10
~~~~~~~~~~~~~~~~
Fixes:
- Revert PR "Fix mixed image format for file, S3 and azureblob caches"
2.0.1 2024-01-05
~~~~~~~~~~~~~~~~~
Improvements:
- Alpine based docker images have been added
- Added parameter to change background map source in layer preview
- Dependency updates
Fixes:
- Rendering issue: Check for existing tile coordinates before using them
- Fix mixed image format for file, S3 and azureblob caches
2.0.0 2023-12-19
~~~~~~~~~~~~~~~~~
Breaking:
- Removal of old unsupported python versions 3.7
- Tested python version range is now 3.8 to 3.11
- Lots of dependency updates
Improvements:
- Add S3 performance option to request via urllib2
- Allow md5 calls to work in FIPS environments
- Several Redis Cache enhancements
- Coverage support for caches
Fixes:
- Configure image options for caches (fixes erratically white tiles when requesting multiple cached layers)
- Fix for Legends in JSON Format
- Some more minor fixups
1.16.0 2023-04-13
~~~~~~~~~~~~~~~~~
Breaking:
- Removal of old unsupported python versions 2.7 and 3.6
- Tested python version range is now 3.7 to 3.11
- Lots of dependency updates
Improvements:
- New cache: Azure Blob storage
- Lots of dependency updates
- Support for JSON legends
- Updated layer preview to use latest openlayers
- Official docker images released, documentation updated
Fixes:
- Fixed issues with sqlite cache (#629 and #625)
- Dependency correction
- library detection difficulties on some operating systems
- encoding issues with umlauts in featureinfo
- Several minor bugfixes
- mapproxy-util export - derive image format from cache config
1.15.1 2022-06-14
~~~~~~~~~~~~~~~~~
Fixes:
- Fixup release on PyPI
1.15.0 2022-06-14
~~~~~~~~~~~~~~~~~
Improvements:
- WMS Dimension caching (#449)
- Add a mechanism to define plugins (#578)
- Support of non-EPSG SRS authorities (#572)
- Support for python 3.10 (#582)
Fixes:
- Several minor bugfixes
1.14.0 2021-11-24
~~~~~~~~~~~~~~~~~
Improvements:
- Refresh while serving (#518).
- Enabled commandline option `skip uncached` (#515)
- Several dependencies updated
- Support for python 3.5 has been dropped because of its EOL, 3.9 has been added
Fixes:
- Several minor bugfixes
- Security fix to avoid potential web cache poisoning.
1.13.2 2021-07-14
~~~~~~~~~~~~~~~~~
Fixes:
- Hotfix: Fixup demo service (#528).
1.13.1 2021-07-13
~~~~~~~~~~~~~~~~~
Improvements:
- Support cookie management for HTTP sources.
Fixes:
- Security fix for local file disclosure (#526).
1.13.0 2020-11-18
~~~~~~~~~~~~~~~~~
Improvements:
- Proj: Support for PROJ>=5 via pyproj.
- Services: New hide_exception_url option to hide source URLs.
- Tile sources: Support '@' in URL path (e.g. /0/0/0@2x.png)
Fixes:
- Various fixes for Python 3.8 compatibility.
- WMS: Always query WMS server in supported SRS.
- Fix warnings for tagged layer sources in layers.
- Demo: Fix capabilites "as HTML" when running behind a proxy
1.12.0 2019-08-30
~~~~~~~~~~~~~~~~~
Improvements:
- Cache: Rescale tiles existing tiles with new upscale_tiles/downscale_tiles option.
- Cache: Finer control for reprojection sources with preferred_src_proj option.
- WMS: Add georeference to TIFF images (GeoTIFF).
- WMS: Support for compressed TIFF images (LZW/JPEG).
- WMS: Advertise MaxWidth/MaxHeight.
- WMTS: Support for FeatureInfo requests.
- WMS/ArcGIS: Add on_error handler (similar to on_error handling for tile sources).
- WMS/WMTS: Add keyword_list to capabilities.
- S3: Support for custom S3 server and ACL.
- autoconfig: Support for username/password in URL.
Fixes:
- Various fixes for Python 3.6 and 3.7 compatibility.
- Set explicit permissions for write_atomic on Windows.
Other:
- WMS: Respond with highest supported WMS version (1.3.0 by default).
- Test: Now uses pytest instead of nosetest for all unit and system tests.
- YAML: Always use load_safe to support PyYAML >3 without warnings.
- Paster and eventlet specific code removed.
1.11.1 2019-08-06
~~~~~~~~~~~~~~~~~
Fixes:
- Fix Cross Site Scripting (XSS) issue in demo service. Fix for #322 did not
properly escaped input used in JavaScript examples. Found by Janek Vind.
A targeted attack could be used for information disclosure. For
example: Session cookies of a third party application running on
the same domain.
1.11.0 2017-11-20
~~~~~~~~~~~~~~~~~
Improvements:
- Improve reprojection performance and accuracy.
- ArcGIS compact cache: Support for version 2.
- ArcGIS compact cache: Improve performance for version 1.
- ArcGIS compact cache: Add ``mapproxy-util defrag`` to reduce bundle size
after tiles were removed/updated.
- ArcGIS REST source: Support opts.map and seed_only.
- Use systems CA certs by default and fix ssl_no_cert_checks
for Python >=2.7.9 and >=3.4
- WMS: Improve Bounding Boxes in Capabilities.
- Mapserver: Find mapserv binary in PATH environment.
Fixes:
- Seed: Always show last log line (100%).
- Fix saving transparent PNGs for some versions of Pillow
(workaround for Pillow bug #2633)
- SQLite: Fix possible errors on first request after start.
- Demo: Fix demo client with `use_grid_names`.
- serve-develop: Fix header encoding for Python 3.
- Seed: Fix --interactive for Python 3.
- Support tagged layers for sources with colons in name.
- Support # character in Basis Authentication password.
- Fix import error with shapely>=1.6
- Fix duplicate level caches when using WMTS KVP with MBtile/SQLite/CouchDB.
Other:
- Remove support for Python 2.6
1.10.4 2017-08-17
~~~~~~~~~~~~~~~~~
Fixes:
- Fix Cross Site Scripting (XSS) issue in demo service (#322).
A targeted attack could be used for information disclosure. For
example: Session cookies of a third party application running on
the same domain.
1.10.3 2017-07-07
~~~~~~~~~~~~~~~~~
Fixes:
- Fix crash during clipping
- Fix bilinear/bicubic resampling from cropped source
- Fix loading empty coverages
1.10.2 2017-06-21
~~~~~~~~~~~~~~~~~
Fixes:
- Fix coverage clipping for caches with a single source
1.10.1 2017-06-06
~~~~~~~~~~~~~~~~~
Fixes:
- Fix mapproxy-util serve-develop for Python 3.6 on Windows
- Fix OGR coverages on Windows with Python 3 and official OGR Python bindings
- Fix --repeat option of mapproxy-util scales
1.10.0 2017-05-18
~~~~~~~~~~~~~~~~~
Improvements:
- Support for S3 cache.
- Support for the ArcGIS Compact Cache format version 1.
- Support for GeoPackage files.
- Support for Redis cache.
- Support meta_tiles for tiles sources with bulk_meta_tiles option.
- mbtiles/sqlite cache: Store multiple tiles in one transaction.
- mbtiles/sqlite cache: Make timeout and WAL configurable.
- ArcGIS REST source: Improve handling for ImageServer endpoints.
- ArcGIS REST source: Support FeatureInfo requests.
- ArcGIS REST source: Support min_res and max_res.
- Support merging of RGB images with fixed transparency.
- Coverages: Clip source requests at coverage boundaries.
- Coverages: Build the difference, union or intersection of multiple coverages.
- Coverages: Create coverages from webmercator tile coordinates like 05/182/123
with expire tiles files.
- Coverages: Add native support for GeoJSON (no OGR/GDAL required).
- mapproxy-seed: Add --duration, -reseed-file and -reseed-interval options.
Fixes:
- Fix level selection for grids with small res_factor.
- mapproxy-util scales: Fix for Python 3.
- WMS: Fix FeatureInfo precision for transformed requests.
- Auth-API: Fix FeatureInfo for layers with limitto.
- Fixes subpixel transformation deviations with Pillow 3.4 or higher.
- mapproxy-seed: Reduce log output, especially in --quiet mode.
- mapproxy-seed: Improve tile counter for tile grids with custom resolutions.
- mapproxy-seed: Improve saving of the seed progress for --continue.
- Fix band-merging when not all sources return an image.
Other:
- Python 2.6 is no longer supported.
1.9.1 2017-01-18
~~~~~~~~~~~~~~~~
Fixes:
- serve-develop: fixed reloader for Windows installations made
with recent pip version (#279)
1.9.0 2016-07-22
~~~~~~~~~~~~~~~~
Improvements:
- New band merge feature. Allows to create false-color or grayscale
images on the fly.
- Support for ArcGIS REST sources.
- Support multiple tilesets for each WMTS layer with the new
tile_sources option.
- Allow to build WMS images from SQLite cache with more then 330 tiles.
- New `arcgis` cache layout. Compatible to ArcGIS exploded caches.
- New `mp` cache layout. Reduces number of nested directories.
- Prevent unneeded quantizing/re-encoding of images.
- Demo client: Support custom tile_size.
Fixes:
- Fix quantization error for some image modes
(e.g. grayscale image with transparency)
- Support custom Proj4/EPSG files in mapproxy-util grid.
- Convert paletted images to RGB(A) to avoid NEAREST resampling.
- Fix quantizing with FASTOCTREE for paletted images with alpha channel.
- Keep configured layer order in WMTS capabilities.
- Fix coverage loading with Python 3.
Other:
- Make the output of various utils more clear.
- wms.md.title is no longer required, default to "MapProxy WMS".
1.8.2 2016-01-22
~~~~~~~~~~~~~~~~
Fixes:
- serve-develop: fixed reloader for Windows installations made
with recent pip version
1.8.1 2015-09-22
~~~~~~~~~~~~~~~~
Improvements:
- WMS 1.3.0: support for metadata required by INSPIRE View Services
- WMS: OnlineResource defaults to service URL
Fixes:
- mapproxy-seed: fix race-condition which prevented termination at the
end of the seeding process
- autoconfig: parse capabilities without ContactInformation
- SQLite cache: close files after seeding
- sqlite/mbtiles: fix tile lock location
- WMS 1.0.0: fix image format for source requests
- WMS: allow floats for X/Y in GetFeatureInfo requests
- CouchDB: fix for Python 3
Other:
- mapproxy-seed: seeding a cache with disable_storage: true returns
an error
- all changes are now tested against Python 2.7, 3.3, 3.4 and 3.5
1.8.0 2015-05-18
~~~~~~~~~~~~~~~~
Features:
- Support for Python 3.3 or newer
Improvements:
- WMS is now available at /service, /ows and /wms
- WMTS KVP is now available at /service and /ows, RESTful service at /wmts
- allow tiled access to layers with multiple map:false sources
- add Access-control-allow-origin header to HTTP responses
- list KVP and RESTful capabilities on demo page
- disable verbose seed output if stdout is not a tty
- add globals.cache.link_single_color_images option
- support scale_factor for Mapnik sources
Fixes:
- handle EPSG axis order in WMTS capabilities
- pass through legends/featureinfo for recursive caches
- accept PNG/JPEG style image_format for WMS 1.0.0
- fix TMS capabilities in demo for TMS with use_grid_names
- fix ctrl+c behaviour in mapproxy-seed
- fix BBOX parsing in autoconf for WMS 1.3.0 services
Other:
- 1.8.0 is expected to work with Python 2.6, but it is no longer officially supported
- MapProxy will now issue warnings about configurations that will change with 2.0.
doc/mapproxy_2.rst lists some of the planed incompatible changes
1.7.1 2014-07-08
~~~~~~~~~~~~~~~~
Fixes:
- fix startup of mapproxy-util when libgdal/geos is missing
1.7.0 2014-07-07
~~~~~~~~~~~~~~~~
Features:
- new `mapproxy-util autoconf` tool
- new versions option to limit supported WMS versions
- set different max extents for each SRS with bbox_srs
Improvements:
- display list of MultiMapProxy projects sorted by name
- check included files (base) for changes in reloader and serve-develop
- improve combining of multiple cascaded sources
- respect order of --seed/--cleanup tasks
- catch and log sqlite3.OperationalError when storing tiles
- do not open cascaded responses when image format matches
- mapproxy-seed: retry longer if source fails (100 instead of 10)
- mapproxy-seed: give more details if source request fails
- mapproxy-seed: do not hang nor print traceback if seed ends
after permanent source errors
- mapproxy-seed: skip seeds/cleanups with empty coverages
- keep order of image_formats in WMS capabilities
Fixes:
- handle errors when loading to many tiles from mbtile/sqlite in
one batch
- reduce memory when handling large images
- allow remove_all for mbtiles cleanups
- use extent from layer metadata in WMTS capabilities
- handle threshold_res higher than first resolution
- fix exception handling in Mapnik source
- only init libproj when requested
Other:
- 1.7.x is the last release with support for Python 2.5
- depend on Pillow if PIL is not installed
1.6.0 2013-09-12
~~~~~~~~~~~~~~~~
Improvements:
- Riak cache supports multiple nodes
Fixes:
- handle SSL verification when using HTTP proxy
- ignore errors during single color symlinking
Other:
- --debug option for serve-multiapp-develop
- Riak cache requires Riak-Client >=2.0
1.6.0rc1 2013-08-15
~~~~~~~~~~~~~~~~~~~
Features:
- new `sqlite` cache with timestamps and one DB for each zoom level
- new `riak` cache
- first dimension support for WMTS (cascaded only)
- support HTTP Digest Authentication for source requests
- remove_all option for seed cleanups
- use real alpha composite for merging layers with transparent
backgrounds
- new tile_lock_dir option to write tile locks outside of the cache dir
- new decorate image API
- new GLOBAL_WEBMERCATOR grid with origin:nw and EPSG:3857
Improvements:
- speed up configuration loading with tagged sources
- speed up seeding with sparse coverages and limited levels
(e.g. only level 17-20)
- add required params to WMS URL in mapproxy-util wms-capabilities
- support for `@` and `:` in HTTP username and password
- try to load pyproj before using libproj.dll on Windows
- support for GDAL python module (osgeo.ogr) besides using gdal.so/dll
directly
- files are now written atomical to support concurrent access
to the same tile cache from different servers (e.g. via NFS)
- support for WMS 1.3.0 in mapproxy-util wms-capabilities
- support layer merge for 8bit PNGs
- support for OGR/GDAL 1.10
- show TMS root resource at /tms
Fixes:
- support requests>=1.0 for CouchDB cache
- HTTP_X_FORWARDED_HOST can be a list of hosts
- fixed KML for caches with origin: nw
- fixed 'I/O operation on closed file' errors
- fixed memory leak when reloading large configurations
- improve handling of mixed grids/formats when using caches as
cache sources
- threading related crashes in coverage handling
- close OGR sources
- catch IOErrors when PIL/Pillow can't identify image file
Other:
- update example configuration (base-config)
- update deployment documentation
- update OpenLayers version in demo service
- use restful_template URL in WMTS demo
- update MANIFEST.in to prevent unnecessary warnings during installation
- accept Pillow as depencendy instead of PIL when already installed
- deprecate use_mapnik2 option
1.5.0 2012-12-05
~~~~~~~~~~~~~~~~
Features:
- read remove_before/refresh_before timestamp from file
- add --concurrency option to mapproxy-utils export
Fixes:
- fixed where option for coverages (renamed from ogr_where)
- only write seed progess with --continue or --progress-file option
Other:
- add EPSG:3857 to WMS default SRSs and remove UTM/GK
- remove import error warning for shapely
- create metadata table in MBTiles caches
1.5.0rc1 2012-11-19
~~~~~~~~~~~~~~~~~~~
Features:
- clipping of tile request to polygon geometries in security API
- WMTS support in security API
- mixed_image mode that automatically chooses between PNG/JPEG
- use caches as source for other caches
- `mapproxy-util grids` tool to analyze grid configurations
- `mapproxy-util wms-capabilities` tool
- `mapproxy-util export` tool
- use_grid_names option to access Tiles/TMS/KML layers by grid
name instead of EPSGXXXX
- origin option for TMS to change default origin of the /tiles service
- continue stopped/interrupted seed processes
- support min_res/max_res for tile sources
Improvements:
- do not show layers with incompatible grids in WMTS/TMS demo
- make 0/0/0.kml optional for the initial KML file
- use BBOX of coverage for capabilities in seed_only layers
- ignore debug layer when loading tile layers
- simplified coverage configuration
- add reloader option to make_wsgi_app()
- add MetadataURL to WMS 1.1.1 capabilities
- improved WMTS services with custom grids (origin)
- use in_image exceptions in WMS demo client
- larger map in demo client
- always request with transparent=true in WMS demo client
- use in_image exceptions in WMS demo client
Fixes:
- fixed reloading of multiapps in threaded servers
- fixed BBOX check for single tile requests
- fixed TMS for caches with watermarks
- fixed limited_to clipping for single layer requests with service-wide
clipping geometries
- fixed WMTS RESTful template
Other:
- deprecated `origin` option for tile sources was removed
- empty tiles are now returned as PNG even if requested as .jpeg
1.4.0 2012-05-15
~~~~~~~~~~~~~~~~~
Fixes:
- fix TypeError exception when auth callback returns {authorized:'full'}
- use MAPPROXY_LIB_PATH on platforms other that win32 and darwin
- raise config error for mapnik sources when mapnik could not be imported
1.4.0rc1 2012-05-02
~~~~~~~~~~~~~~~~~~~
Features:
- support clipping of requests to polygon geometries in security API
- support for WMS 1.3.0 extended layer capabilities
- on_error handling for tile sources. fallback to empty/transparent
tiles when the source returns HTTP codes like 404 or 204
- add HTTP Cache-Control header to WMS-C responses
Improvements:
- WMS source requests and requests to cached tiles are now clipped
to the extent. this should prevent projection errors when requesting
large bbox (e.g. over 180/90 in EPSG:4326)
- improved lock timeouts in mapproxy-seed
- the debug source does not overwrite the layer extent anymore.
makes it more usable in demo/wms clients
- support for multiple files and recursion in base option
- mapproxy-seed ETA output is now more responsive to changes in seed speed
- improved demo service