From 4fb0fb5eed3aaf125e1ecfd1f78742bd17650613 Mon Sep 17 00:00:00 2001 From: Pablo Guardiola Date: Wed, 27 Apr 2022 13:16:36 -0400 Subject: [PATCH] add v6.5.0-beta.3 changelog entry --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90af41b03..e679445d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,11 +3,17 @@ Mapbox welcomes participation and contributions from everyone. ### main + +### v6.5.0-beta.3 - April 27, 2022 +- Added `ignore` parameter to Map Matching API. [#1424](https://github.com/mapbox/mapbox-java/pull/1424) - Added roundtrip of unrecognized JSON properties. [#1394](https://github.com/mapbox/mapbox-java/pull/1394) - Added API to access unrecognized JSON properties. See `#getUnrecognizedProperty` and `#getUnrecognizedPropertiesNames` in each Directions API model object. [#1416](https://github.com/mapbox/mapbox-java/pull/1416) - Added `RouteOptions.Builder#unrecognizedProperties` to set custom request parameters to a URL generated by `RouteOptions#toUrl` only. The custom request parameters are not supported by `MapboxDirections` service. [#1420](https://github.com/mapbox/mapbox-java/pull/1420) - Removed experimental EV routing request/response parameters. Please use the `RouteOptions.Builder#unrecognizedProperties` to set experimental request parameters, and `#getUnrecognizedProperty` to get values from relevant response objects. EV routing parameters documentation is available [here](https://docs.mapbox.com/api/navigation/directions/#electric-vehicle-routing). [#1422](https://github.com/mapbox/mapbox-java/pull/1422) +#### Known issues +- `RouteOptions#toUrl` might still produce invalid URLs (and fail a request or later crash on `RouteOptions#fromUrl`) if query parameters contain `&` chars that do not exactly match the `&` pattern. Only this specific pattern is escaped correctly. + ### v6.4.1 - April 22, 2022 - Added correct escaping for `&` pattern in query parameters for `RouteOptions#toUrl`. [#1410](https://github.com/mapbox/mapbox-java/pull/1410).