From e7e6c5a8f95ca3760a992cd33854673adb3fb050 Mon Sep 17 00:00:00 2001 From: Amandus Butzer Date: Wed, 15 Nov 2023 17:42:34 +0100 Subject: [PATCH 1/2] refactor!: adjust ors hosts in config to contain default path /ors/v2 BREAKING-CHANGE: this adjusts to the removal of the hard-coded ors base path in vroom see https://github.com/VROOM-Project/vroom/pull/1037 --- config.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/config.yml b/config.yml index 75a51bb..ace954e 100644 --- a/config.yml +++ b/config.yml @@ -27,28 +27,28 @@ routingServers: port: '5002' ors: driving-car: - host: '0.0.0.0' + host: '0.0.0.0/ors/v2' port: '8080' driving-hgv: - host: '0.0.0.0' + host: '0.0.0.0/ors/v2' port: '8080' cycling-regular: - host: '0.0.0.0' + host: '0.0.0.0/ors/v2' port: '8080' cycling-mountain: - host: '0.0.0.0' + host: '0.0.0.0/ors/v2' port: '8080' cycling-road: - host: '0.0.0.0' + host: '0.0.0.0/ors/v2' port: '8080' cycling-electric: - host: '0.0.0.0' + host: '0.0.0.0/ors/v2' port: '8080' foot-walking: - host: '0.0.0.0' + host: '0.0.0.0/ors/v2' port: '8080' foot-hiking: - host: '0.0.0.0' + host: '0.0.0.0/ors/v2' port: '8080' valhalla: auto: From d81f5b5f6a44a9ebed5d9a1353388a1d5900ba3d Mon Sep 17 00:00:00 2001 From: Amandus Butzer Date: Wed, 15 Nov 2023 19:06:30 +0100 Subject: [PATCH 2/2] docs: add changelog entry for ors hosts adjustment --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6eeea5..8b1eb78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +### Changed + +- ors hosts in config to contain default base path /ors/v2 ([#99](https://github.com/VROOM-Project/vroom-express/pull/99)) + ## [v0.11.0] - 2022-06-11 ### Added