Minor fixes (#6655)
* Ensure required file check in osrm-routed is correctly enforced. The storage module had a stricter check. This keeps the IOConfig check in sync. * Correct HTTP docs to reflect summary output dependency on steps parameter. There is no summary parameter. * npm audit fix
This commit is contained in:
parent
62e11fd5db
commit
3bb82ce1e2
@ -25,6 +25,8 @@
|
|||||||
- CHANGED: Replace boost::string_ref with std::string_view [#6433](https://github.com/Project-OSRM/osrm-backend/pull/6433)
|
- CHANGED: Replace boost::string_ref with std::string_view [#6433](https://github.com/Project-OSRM/osrm-backend/pull/6433)
|
||||||
- ADDED: Print tracebacks for Lua runtime errors [#6564](https://github.com/Project-OSRM/osrm-backend/pull/6564)
|
- ADDED: Print tracebacks for Lua runtime errors [#6564](https://github.com/Project-OSRM/osrm-backend/pull/6564)
|
||||||
- FIXED: Added a variable to preprocessor guard in file osrm-backend/include/util/range_table.hpp to solve build error. [#6596](https://github.com/Project-OSRM/osrm-backend/pull/6596)
|
- FIXED: Added a variable to preprocessor guard in file osrm-backend/include/util/range_table.hpp to solve build error. [#6596](https://github.com/Project-OSRM/osrm-backend/pull/6596)
|
||||||
|
- FIXED: Ensure required file check in osrm-routed is correctly enforced. [#6655](https://github.com/Project-OSRM/osrm-backend/pull/6655)
|
||||||
|
- FIXED: Correct HTTP docs to reflect summary output dependency on steps parameter. [#6655](https://github.com/Project-OSRM/osrm-backend/pull/6655)
|
||||||
- Routing:
|
- Routing:
|
||||||
- FIXED: Fix adding traffic signal penalties during compression [#6419](https://github.com/Project-OSRM/osrm-backend/pull/6419)
|
- FIXED: Fix adding traffic signal penalties during compression [#6419](https://github.com/Project-OSRM/osrm-backend/pull/6419)
|
||||||
# 5.27.1
|
# 5.27.1
|
||||||
|
10
docs/http.md
10
docs/http.md
@ -648,12 +648,12 @@ Represents a route between two waypoints.
|
|||||||
- `distance`: The distance traveled by this route leg, in `float` meters.
|
- `distance`: The distance traveled by this route leg, in `float` meters.
|
||||||
- `duration`: The estimated travel time, in `float` number of seconds.
|
- `duration`: The estimated travel time, in `float` number of seconds.
|
||||||
- `weight`: The calculated weight of the route leg.
|
- `weight`: The calculated weight of the route leg.
|
||||||
- `summary`: Summary of the route taken as `string`. Depends on the `summary` parameter:
|
- `summary`: Summary of the route taken as `string`. Depends on the `steps` parameter:
|
||||||
|
|
||||||
| summary | |
|
| steps | |
|
||||||
|--------------|-----------------------------------------------------------------------|
|
|-------|-----------------------------------------------------------------------|
|
||||||
| true | Names of the two major roads used. Can be empty if the route is too short.|
|
| true | Names of the two major roads used. Can be empty if the route is too short.|
|
||||||
| false | empty `string` |
|
| false | empty `string` |
|
||||||
|
|
||||||
- `steps`: Depends on the `steps` parameter.
|
- `steps`: Depends on the `steps` parameter.
|
||||||
|
|
||||||
|
@ -48,28 +48,25 @@ struct StorageConfig final : IOConfig
|
|||||||
}
|
}
|
||||||
|
|
||||||
StorageConfig()
|
StorageConfig()
|
||||||
: IOConfig({".osrm.ramIndex",
|
: IOConfig(
|
||||||
".osrm.fileIndex",
|
{".osrm.ramIndex",
|
||||||
".osrm.edges",
|
".osrm.fileIndex",
|
||||||
".osrm.geometry",
|
".osrm.edges",
|
||||||
".osrm.turn_weight_penalties",
|
".osrm.geometry",
|
||||||
".osrm.turn_duration_penalties",
|
".osrm.turn_weight_penalties",
|
||||||
".osrm.datasource_names",
|
".osrm.turn_duration_penalties",
|
||||||
".osrm.names",
|
".osrm.datasource_names",
|
||||||
".osrm.timestamp",
|
".osrm.ebg_nodes",
|
||||||
".osrm.properties",
|
".osrm.names",
|
||||||
".osrm.icd",
|
".osrm.nbg_nodes",
|
||||||
".osrm.maneuver_overrides"},
|
".osrm.timestamp",
|
||||||
{".osrm.hsgr",
|
".osrm.tls",
|
||||||
".osrm.nbg_nodes",
|
".osrm.tld",
|
||||||
".osrm.ebg_nodes",
|
".osrm.properties",
|
||||||
".osrm.cells",
|
".osrm.icd",
|
||||||
".osrm.cell_metrics",
|
".osrm.maneuver_overrides"},
|
||||||
".osrm.mldgr",
|
{".osrm.hsgr", ".osrm.cells", ".osrm.cell_metrics", ".osrm.mldgr", ".osrm.partition"},
|
||||||
".osrm.tld",
|
{})
|
||||||
".osrm.tls",
|
|
||||||
".osrm.partition"},
|
|
||||||
{})
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
2280
package-lock.json
generated
2280
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user