Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump NN to 159.0.0, Common to 23.8.3, Maps to 10.16.1 #7541

Merged
merged 2 commits into from
Oct 6, 2023
Merged
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
4 changes: 4 additions & 0 deletions changelog/unreleased/bugfixes/7541.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- Improved ramp detection and reduced unexpected jumps between parallel elevated roads.
- Reduced memory consumption.
- Improved location accuracy on "walking" and "cycling" profiles.
- Fixed false-positive "exiting the tunnel" mapmatching errors.
6 changes: 3 additions & 3 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ ext {
// version which we should use in this build
def mapboxNavigatorVersion = System.getenv("FORCE_MAPBOX_NAVIGATION_NATIVE_VERSION")
if (mapboxNavigatorVersion == null || mapboxNavigatorVersion == '') {
mapboxNavigatorVersion = '158.0.0'
mapboxNavigatorVersion = '159.0.0'
}
println("Navigation Native version: " + mapboxNavigatorVersion)

version = [
mapboxMapSdk : '10.16.0',
mapboxMapSdk : '10.16.1',
mapboxSdkServices : '6.13.0',
mapboxNavigator : "${mapboxNavigatorVersion}",
mapboxCommonNative : '23.8.0',
mapboxCommonNative : '23.8.3',
mapboxCrashMonitor : '2.0.0',
mapboxAnnotationPlugin : '0.8.0',
mapboxBaseAndroid : '0.8.0',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,8 @@ internal class RouteAlternativesController constructor(
logE(
"""
|unable to parse alternative at index $index;
|failure for response: ${routeAlternative.route.responseJson}
|failure for response with uuid:
|${routeAlternative.route.responseUuid}
""".trimMargin(),
LOG_CATEGORY
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,6 @@ fun createRouteInterface(
return responseJson.toDataRef()
}

override fun getResponseJson() = responseJson

override fun getRequestUri() = requestURI

override fun getRouterOrigin() = routerOrigin
Expand All @@ -208,8 +206,6 @@ fun createRouteInterface(

override fun getWaypoints() = waypoints

override fun getWaypointsJson() = waypointsJson

override fun getExpirationTimeMs(): Long? = expirationTimeMs

override fun getLastRefreshTimestamp(): Date? = lastRefreshTimestamp
Expand Down