use api.osm.org also for map calls, release as v2.27.3

This commit is contained in:
Martin Raifer
2023-11-08 12:29:59 +01:00
parent b95fb78ce5
commit accbdf35d2
4 changed files with 11 additions and 5 deletions
+6
View File
@@ -35,6 +35,12 @@ _Breaking developer changes, which may affect downstream projects or sites that
[@xxxx]: https://github.com/xxxx
-->
# 2.27.3
##### 2023-Nov-08
* Use `api.openstreetmap.org` domain also for _map_ API calls
# 2.27.2
##### 2023-Nov-08
+2 -2
View File
@@ -673,10 +673,10 @@ export default {
return oauth.xhr({
method: 'GET',
prefix: false,
path: urlroot + path
path: apiUrlroot + path
}, done);
} else {
var url = urlroot + path;
var url = apiUrlroot + path;
var controller = new AbortController();
var fn;
if (path.indexOf('.json') !== -1) {
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "iD",
"version": "2.27.2",
"version": "2.27.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "iD",
"version": "2.27.2",
"version": "2.27.3",
"license": "ISC",
"dependencies": {
"@mapbox/geojson-area": "^0.2.2",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "iD",
"version": "2.27.2",
"version": "2.27.3",
"description": "A friendly editor for OpenStreetMap",
"main": "dist/iD.min.js",
"repository": "github:openstreetmap/iD",