Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# CHANGELOG

## 3.0.0
CHANGED:
- (breaking) Updated OSRM to 6.0.0
- Dockerfile now uses Node 24.12 on debian trixie
- Valhalla source now uses JS binding instead of child process

UPDATED:
- Updated all package.json dependencies to last versions (08/01/2026)
- Updated default docker image and the associated doc
- Updated the sample docker config to have empty dirs
- Enforced resource files to end with .resource and source files to end with .source

FIXED:
- Link to openApi in simple api was redirecting to osrm Api

REMOVED:
- All references to Smartrouting and Smartpgr

## 2.3.1
FIXED:
- invalid isochrone geometries
Expand Down
Empty file.
10 changes: 0 additions & 10 deletions docker/config/service.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,6 @@
"https": "false",
"host": "0.0.0.0",
"port": "8080"
},
{
"id": "externalServer",
"https": "true",
"host": "0.0.0.0",
"port": "443",
"options": {
"key": "/run/secrets/key",
"cert": "/run/secrets/cert"
}
}
],
"cors": {
Expand Down
Empty file added docker/config/sources/.gitkeep
Empty file.
7 changes: 2 additions & 5 deletions docker/distributions/debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
### TODO : Supprimer la compilation et l'installation de Valhalla dès que l'on aura un binding NodeJS pour lui et donc repasser sur une image node
FROM ghcr.io/valhalla/valhalla@sha256:6fb108a960bdc63c12b1c92ab04517a0c56a019ef45c9b9c8cf847d8de9db72b
FROM node:24.12-trixie-slim

### Mise à jour des
### Mise à jour des paquets
RUN apt-get update && apt-get upgrade -y
RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && \
apt-get install -y nodejs

### Dossier contenant la configuration de Road2
WORKDIR /home/docker/config
Expand Down
12 changes: 2 additions & 10 deletions documentation/apis/simple/1.0.0/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,8 @@
},
"servers": [
{
"url": "https://wxs.ign.fr/calcul/geoportail/itineraire/rest/1.0.0/",
"description": "Serveur de test IGN pour l'itinéraire"
},
{
"url": "https://wxs.ign.fr/calcul/geoportail/isochrone/rest/1.0.0/",
"description": "Serveur de test IGN pour l'isochrone"
},
{
"url": "http://localhost:8080/simple/1.0.0/",
"description": "Serveur de test local"
"url": "https://data.geopf.fr/navigation",
"description": "Géoplateforme"
}
],
"tags": [
Expand Down
Loading
Loading