Skip to content

Commit 906f53c

Browse files
author
Łukasz Paczos
committed
updated Nav Native to v119.0.0, Maps SDK to v10.9.0, and Common SDK to v23.1.1
1 parent 8273101 commit 906f53c

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Mapbox welcomes participation and contributions from everyone.
55
## Unreleased
66
#### Features
77
#### Bug fixes and improvements
8+
- Improved experience in tunnels and reduced the likelihood of losing road edge matching candidates. [#6510](https://github.com/mapbox/mapbox-navigation-android/pull/6510)
89

910
## Mapbox Navigation SDK 2.9.0-beta.3 - 21 October, 2022
1011
### Changelog

gradle/dependencies.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ ext {
1313
// version which we should use in this build
1414
def mapboxNavigatorVersion = System.getenv("FORCE_MAPBOX_NAVIGATION_NATIVE_VERSION")
1515
if (mapboxNavigatorVersion == null || mapboxNavigatorVersion == '') {
16-
mapboxNavigatorVersion = '118.0.0'
16+
mapboxNavigatorVersion = '119.0.0'
1717
}
1818
println("Navigation Native version: " + mapboxNavigatorVersion)
1919

2020
version = [
21-
mapboxMapSdk : '10.9.0-rc.1',
21+
mapboxMapSdk : '10.9.0',
2222
mapboxSdkServices : '6.9.0-beta.1',
2323
mapboxCore : '5.0.2',
2424
mapboxNavigator : "${mapboxNavigatorVersion}",
25-
mapboxCommonNative : '23.1.0-rc.2',
25+
mapboxCommonNative : '23.1.1',
2626
mapboxSearchSdk : '1.0.0-beta.38.1',
2727
mapboxCrashMonitor : '2.0.0',
2828
mapboxAnnotationPlugin : '0.8.0',

libnavigation-router/src/main/java/com/mapbox/navigation/route/internal/RouterWrapper.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ class RouterWrapper(
201201
indicesSnapshot.legIndex,
202202
RoutingProfile(routeOptions.profile().mapToRoutingMode(), routeOptions.user()),
203203
indicesSnapshot.routeGeometryIndex,
204+
hashMapOf(),
204205
)
205206

206207
return router.getRouteRefresh(

libnavigation-router/src/test/java/com/mapbox/navigation/route/internal/RouterWrapperTests.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,7 @@ class RouterWrapperTests {
359359
legIndex,
360360
RoutingProfile(routerOptions.profile().mapToRoutingMode(), routerOptions.user()),
361361
routeGeometryIndex,
362+
hashMapOf(),
362363
)
363364

364365
verify(exactly = 1) {

0 commit comments

Comments
 (0)