Skip to content

Commit 1974b8c

Browse files
dmitry-novikovgithub-actions[bot]
authored andcommitted
17.0-rc.1 dependencies bump (#11338)
GitOrigin-RevId: 743298df3cb71626c8dfc403837260b9be5471c4
1 parent f58aa78 commit 1974b8c

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
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

gradle/dependencies.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ext {
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 = ""
@@ -28,7 +28,7 @@ ext {
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}",

gradle/download-schema.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
def 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
}

navigation/src/test/java/com/mapbox/navigation/core/internal/router/RouterWrapperTests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)