Skip to content

Commit 6c4a1d8

Browse files
changelog for v2.11.0-alpha.1 (#6836)
Co-authored-by: root <root@9eebba3209b0>
1 parent 95a7221 commit 6c4a1d8

File tree

13 files changed

+44
-28
lines changed

13 files changed

+44
-28
lines changed

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,50 @@ Mapbox welcomes participation and contributions from everyone.
3131
- Fixed an issue where the first voice instruction might have been played twice. [#6766](https://github.com/mapbox/mapbox-navigation-android/pull/6766)
3232
- Changed distance formatting: now all the imperial distances down to 0.1 miles will be represented in miles, while the smaller ones - in feet. [#6775](https://github.com/mapbox/mapbox-navigation-android/pull/6775)
3333

34+
## Mapbox Navigation SDK 2.11.0-alpha.1 - 13 January, 2023
35+
### Changelog
36+
[Changes between vandroidauto-0.18.0 and v2.11.0-alpha.1](https://github.com/mapbox/mapbox-navigation-android/compare/vandroidauto-0.18.0...v2.11.0-alpha.1)
37+
38+
#### Features
39+
- Introduced `ViewStyleCustomization.infoPanelGuidelineMaxPosPercent` that allows customization of the `NavigationView` InfoPanel bottom guideline maximum position. Increased default value to 50%. [#6792](https://github.com/mapbox/mapbox-navigation-android/pull/6792)
40+
41+
#### Bug fixes and improvements
42+
- Fixed an issue where the first voice instruction might have been played twice. [#6766](https://github.com/mapbox/mapbox-navigation-android/pull/6766)
43+
- Fixed an issue with `NavigationView` that caused info panel to shrink in landscape mode with a full screen theme. [#6780](https://github.com/mapbox/mapbox-navigation-android/pull/6780)
44+
- :warning: Updated the `NavigationView` default navigation puck asset. [#6678](https://github.com/mapbox/mapbox-navigation-android/pull/6678)
45+
46+
Previous puck can be restored by injecting `LocationPuck2D` with the `bearingImage` set to `com.mapbox.navigation.ui.maps.R.drawable.mapbox_navigation_puck_icon` drawable:
47+
```kotlin
48+
navigationView.customizeViewStyles {
49+
locationPuckOptions = LocationPuckOptions.Builder(context)
50+
.defaultPuck(
51+
LocationPuck2D(
52+
bearingImage = ContextCompat.getDrawable(
53+
context,
54+
com.mapbox.navigation.ui.maps.R.drawable.mapbox_navigation_puck_icon,
55+
)
56+
)
57+
)
58+
.idlePuck(regularPuck(context))
59+
.build()
60+
}
61+
```
62+
- Improved `MapboxNavigation#startReplayTripSession` and `ReplayRouteSession` so that the previous trip session does not need to be stopped. :warning: `ReplayRouteSession#onDetached` removed the call to `stopTripSession`. [#6817](https://github.com/mapbox/mapbox-navigation-android/pull/6817)
63+
- Each newly instantiated MapboxRouteArrowView class will initialize the layers with the provided options on the first render call. Previously this would only be done if the layers hadn't already been initialized. [#6466](https://github.com/mapbox/mapbox-navigation-android/pull/6466)
64+
- Fixed standalone `MapboxManeuverView` appearance when the app also integrates Drop-In UI. [#6774](https://github.com/mapbox/mapbox-navigation-android/pull/6774)
65+
- Ensure map-matching considers HOV-only roads as auto accessible. [#6834](https://github.com/mapbox/mapbox-navigation-android/pull/6834)
66+
- Added guarantees that route progress with `RouteProgress#currentState == OFF_ROUTE` arrives earlier than `NavigationRerouteController#reroute` is called. [#6764](https://github.com/mapbox/mapbox-navigation-android/pull/6764)
67+
- Introduced `NavigationViewListener.onSpeedInfoClicked` that would be triggered when `MapboxSpeedInfoView` is clicked upon. [#6770](https://github.com/mapbox/mapbox-navigation-android/pull/6770)
68+
- Fixed a rare `java.lang.NullPointerException: Attempt to read from field 'SpeechAnnouncement PlayCallback.announcement' on a null object reference` crash in `PlayCallback.getAnnouncement`. [#6760](https://github.com/mapbox/mapbox-navigation-android/pull/6760)
69+
70+
### Mapbox dependencies
71+
This release depends on, and has been tested with, the following Mapbox dependencies:
72+
- Mapbox Maps SDK `v10.10.0` ([release notes](https://github.com/mapbox/mapbox-maps-android/releases/tag/v10.10.0))
73+
- Mapbox Navigation Native `v123.2.0`
74+
- Mapbox Core Common `v23.2.1`
75+
- Mapbox Java `v6.10.0-beta.3` ([release notes](https://github.com/mapbox/mapbox-java/releases/tag/v6.10.0-beta.3))
76+
77+
3478
## Mapbox Navigation SDK 2.10.0-rc.2 - 12 January, 2023
3579
### Changelog
3680
[Changes between v2.10.0-rc.1 and v2.10.0-rc.2](https://github.com/mapbox/mapbox-navigation-android/compare/v2.10.0-rc.1...v2.10.0-rc.2)

changelog/unreleased/CHANGELOG.md

Whitespace-only changes.

changelog/unreleased/bugfixes/6466.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/unreleased/bugfixes/6678.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

changelog/unreleased/bugfixes/6760.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/unreleased/bugfixes/6764.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/unreleased/bugfixes/6766.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/unreleased/bugfixes/6770.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/unreleased/bugfixes/6774.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/unreleased/bugfixes/6780.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)