Skip to content

Commit 6135437

Browse files
DzmitryFomchyngithub-actions[bot]
authored andcommitted
Dependencies bump (#9629)
* Bump dependencies; Add missing changelog * Bump Dash SDK dependencies * Rename changelog GitOrigin-RevId: ef0c225d5c19b8d16b1a9093e3f46847034b1439
1 parent cdfd291 commit 6135437

File tree

5 files changed

+10
-2
lines changed

5 files changed

+10
-2
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Added support for Android 16 KB page-size devices. To consume SDK compatible with NDK 27 you need to add `-ndk27` suffix to the artifact name, for example, `com.mapbox.navigationcore:navigation` -> `com.mapbox.navigationcore:navigation-ndk27`.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- DR improvements - more robust models for GNSS trust, road calibration, and wheel speed trust;
2+
- Improve main thread utilization by removing unintended locks (visible on systems with overloaded CPU)
3+
- Disable the defaults for collection of tunnel/bridge subgraphs in free drive. The clients will need to specify explicitly which objects to collect via AlertServiceOptions in the public SDK interface.

gradle/dependencies.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ext {
88
carMinSdkVersion : 23
99
]
1010

11-
def mapboxSdkVersionSuffix = '14.0-SNAPSHOT-06-26--10-31.git-32f22cd'
11+
def mapboxSdkVersionSuffix = '14.0-beta.1'
1212

1313
def ndkVersionSuffix = ""
1414
if (project.hasProperty("ndkMajor")) {
@@ -34,7 +34,7 @@ ext {
3434
mapboxNavigator : "${mapboxNavigatorVersion}",
3535
mapboxCommonNative : "24.${mapboxSdkVersionSuffix}",
3636
mapboxNavSdkCpp : "0.${mapboxSdkVersionSuffix}",
37-
mapboxSearch : '2.14.0-32f22cd-SNAPSHOT',
37+
mapboxSearch : '2.14.0-beta.1',
3838
mapboxBaseAndroid : '0.11.0',
3939
androidXActivity : '1.7.1',
4040
androidXActivityCompose : '1.9.2',

navigator/src/main/java/com/mapbox/navigation/navigator/internal/utils/EvUtils.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ fun Map<String, String>.toEvStateData(): EvStateData {
1010
this["energy_consumption_curve"]?.toCurveElements() ?: emptyList(),
1111
this["auxiliary_consumption"]?.toIntOrNull(),
1212
this["ev_pre_conditioning_time"]?.toIntOrNull(),
13+
this["ev_unconditioned_charging_curve"]?.toCurveElements() ?: emptyList(),
1314
)
1415
}
1516

navigator/src/test/java/com/mapbox/navigation/navigator/internal/utils/EvUtilsTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ class EvUtilsTest {
2424
listOf(CurveElement(1.0f, 2.0f), CurveElement(3.0f, 4.0f)),
2525
null,
2626
null,
27+
emptyList(),
2728
)
2829

2930
assertEquals(expected, input.toEvStateData())
@@ -36,12 +37,14 @@ class EvUtilsTest {
3637
"energy_consumption_curve" to "1.0,2.0;3.0,4.0",
3738
"auxiliary_consumption" to "5",
3839
"ev_pre_conditioning_time" to "7",
40+
"ev_unconditioned_charging_curve" to "5.0,6.0;7.0,8.0",
3941
)
4042
val expected = EvStateData(
4143
10,
4244
listOf(CurveElement(1.0f, 2.0f), CurveElement(3.0f, 4.0f)),
4345
5,
4446
7,
47+
listOf(CurveElement(5.0f, 6.0f), CurveElement(7.0f, 8.0f)),
4548
)
4649

4750
assertEquals(expected, input.toEvStateData())

0 commit comments

Comments
 (0)