File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
changelog/unreleased/features
navigation/src/test/java/com/mapbox/navigation/core/internal/router Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1+ - Reduce map-matcher latency in urban areas with lots of small tunnels
2+ - Add a feature to override location bearing with yaw from orientation data (inactive by default)
3+ - Improve behavior on elevated highways (new ramp detection algorithm)
4+ - Improve tunnel mode behavior after tunnel exists
Original file line number Diff line number Diff line change 1111 // mapboxSdkHdFullSparseCheckout in generate_api_docs_android.sh depends on mapboxSdkVersionSuffix
1212 // Release Train depends on these two lines below
1313 // https://github.com/mapbox/release-train/blob/bd530da200d62fb45166ef91d7d892d90a453fa6/backend/model/step/navcoreandroid/PrepareChangelogNavCore.py#L122-L124
14- def mapboxSdkVersionSuffix = ' 17.0-beta.2 '
14+ def mapboxSdkVersionSuffix = ' 17.0-rc.1 '
1515 def mapboxNavigatorVersion = " 324.${ mapboxSdkVersionSuffix} "
1616
1717 def ndkVersionSuffix = " "
2828
2929 version = [
3030 mapboxMapSdk : " 11.${ mapboxSdkVersionSuffix} " ,
31- mapboxSdkServices : " 7.8 .0" ,
31+ mapboxSdkServices : " 7.9 .0" ,
3232 mapboxNavigator : mapboxNavigatorVersion,
3333 mapboxCommonNative : " 24.${ mapboxSdkVersionSuffix} " ,
3434 mapboxNavSdkCpp : " 0.${ mapboxSdkVersionSuffix} " ,
Original file line number Diff line number Diff line change 11def downloadSchema = tasks. register(" downloadSchema" ) {
2+ def targetDir = " ${ projectDir} /src/test/resources/"
23 doLast {
34 def address = ' https://mapbox.s3.amazonaws.com/mapbox-gl-native/event-schema/mobile-event-schemas.jsonl.gz'
4- def target = " ${ projectDir} /src/test/resources/"
55
6- new File (target + " ${ address.tokenize('/')[-1]} " ). withOutputStream { out ->
6+ new File (targetDir + " ${ address.tokenize('/')[-1]} " ). withOutputStream { out ->
77 new URL (address). withInputStream { from -> out << from }
88 }
99 }
Original file line number Diff line number Diff line change @@ -427,7 +427,7 @@ class RouterWrapperTests {
427427 message = " Failed to parse response" ,
428428 type = RouterFailureType .RESPONSE_PARSING_ERROR ,
429429 throwable = IllegalStateException (
430- " java.lang.IllegalStateException: Property \" routes \" has not been set " ,
430+ " java.lang.IllegalStateException: Missing required properties: routes " ,
431431 ),
432432 )
433433
You can’t perform that action at this time.
0 commit comments