update osmose service:

* change API requests to use `.geojson` ending
* drop issue type 8360-1, which doesn't seem top be supported anymore

fixes #9208
This commit is contained in:
Martin Raifer
2022-07-21 11:31:10 +02:00
parent 4b40ec81c6
commit 1efdcb60ba
3 changed files with 3 additions and 2 deletions
+2
View File
@@ -61,6 +61,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
* Fix missing styling when rendering of proposed footway/cycleway/path bridges ([#9172], thanks [@k-yle])
* Fix some boundary lines (and preset) not hidden by the map features filter ([#9171], thanks [@k-yle])
* Fix iD using invalid user selected imagery ([#8732], thanks [@renancleyson-dev])
* Make osmose QA service work again by upgrading API calls to the newest API version ([#9208])
#### :rocket: Presets
* Disable taginfo suggestions for the `via` field ([#9140], thanks [@k-yle])
* Treat `surface=chipseal` as a paved surface ([#9139], thanks [@k-yle])
@@ -91,6 +92,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
[#9169]: https://github.com/openstreetmap/iD/issues/9169
[#9171]: https://github.com/openstreetmap/iD/pull/9171
[#9172]: https://github.com/openstreetmap/iD/pull/9172
[#9208]: https://github.com/openstreetmap/iD/issues/9208
[@furkanmutlu]: https://github.com/furkanmutlu
[@JackNUMBER]: https://github.com/JackNUMBER
[@aaditya0000]: https://github.com/aaditya0000
-1
View File
@@ -118,7 +118,6 @@
"8300-118": "fas-tachometer-alt",
"8300-119": "fas-tachometer-alt",
"8300-120": "fas-tachometer-alt",
"8360-1": "temaki-bench",
"8360-2": "maki-bicycle",
"8360-3": "temaki-security_camera",
"8360-4": "temaki-fire_hydrant",
+1 -1
View File
@@ -123,7 +123,7 @@ export default {
if (_cache.loadedTile[tile.id] || _cache.inflightTile[tile.id]) return;
let [ x, y, z ] = tile.xyz;
let url = `${_osmoseUrlRoot}/issues/${z}/${x}/${y}.json?` + utilQsString(params);
let url = `${_osmoseUrlRoot}/issues/${z}/${x}/${y}.geojson?` + utilQsString(params);
let controller = new AbortController();
_cache.inflightTile[tile.id] = controller;