Skip to content

Commit 84fef8e

Browse files
committed
Update Maps to v10.10.1 to fix CarPlay map view not loading issue in active navigation session (#4315)
1 parent be9916b commit 84fef8e

File tree

7 files changed

+16
-15
lines changed

7 files changed

+16
-15
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
### Packaging
1212

1313
* MapboxCoreNavigation now requires [MapboxNavigationNative v123._x_](https://github.com/mapbox/mapbox-navigation-native-ios/releases/tag/123.1.0). ([#4298](https://github.com/mapbox/mapbox-navigation-ios/pull/4298))
14-
* MapboxNavigation now requires [MapboxMaps v10.10.0](https://github.com/mapbox/mapbox-maps-ios/releases/tag/v10.10.0). ([#4298](https://github.com/mapbox/mapbox-navigation-ios/pull/4298))
14+
* MapboxNavigation now requires [MapboxMaps v10.10._x_](https://github.com/mapbox/mapbox-maps-ios/releases/tag/v10.10.1). ([#4315](https://github.com/mapbox/mapbox-navigation-ios/pull/4315))
1515
* MapboxCoreNavigation now requires [MapboxDirections v2.9.0-rc.1](https://github.com/mapbox/mapbox-directions-swift/releases/tag/v2.9.0-rc.1). ([#4300](https://github.com/mapbox/mapbox-navigation-ios/pull/4300))
1616
* Cocoapods podspec for MapboxCoreNavigation now references resources that will be copied into the application. ([#4280](https://github.com/mapbox/mapbox-navigation-ios/pull/4280))
1717

@@ -34,6 +34,7 @@
3434
* Added `CarPlayManagerDelegate.carPlayManager(_:willAdd:for:)`, `NavigationMapViewDelegate.navigationMapView(_:willAdd:)` and `NavigationViewControllerDelegate.navigationViewController(_:willAdd:)` to modify the properties of the default layer which will be added to the map view during navigation. ([#4277](https://github.com/mapbox/mapbox-navigation-ios/pull/4277))
3535
* Fixed issue where the traversed route layer doesn't share the same width with the main route casing layer after developers providing their own layer or midfying the layer properties. ([#4277](https://github.com/mapbox/mapbox-navigation-ios/pull/4277))
3636
* Added `NavigationMapView.showcase(_:routesPresentationStyle:legIndex:animated:duration:completion:)` and `NavigationMapView.show(_:layerPosition:legIndex:)` methods to draw `IndexedRouteResponse` data and populate view's `routes` and `continuousAlternatives` properties accordingly. ([#4294](https://github.com/mapbox/mapbox-navigation-ios/pull/4294))
37+
* Fixed an issue where map wouldn't be loaded in active navigation session on CarPlay. ([#4315](https://github.com/mapbox/mapbox-navigation-ios/pull/4315))
3738

3839
### Location tracking
3940

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon.json" ~> 23.2.1
2-
binary "https://api.mapbox.com/downloads/v2/carthage/mobile-navigation-native/MapboxNavigationNative.xcframework.json" ~> 123.0
2+
binary "https://api.mapbox.com/downloads/v2/carthage/mobile-navigation-native/MapboxNavigationNative.xcframework.json" ~> 123.1.0
33
github "mapbox/mapbox-directions-swift" == 2.9.0-rc.1
44
github "mapbox/mapbox-events-ios" ~> 1.0.0

MapboxCoreNavigation.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Pod::Spec.new do |s|
4444
s.requires_arc = true
4545
s.module_name = "MapboxCoreNavigation"
4646

47-
s.dependency "MapboxNavigationNative", "~> 123.0"
47+
s.dependency "MapboxNavigationNative", "~> 123.1.0"
4848
s.dependency "MapboxDirections-pre", "2.9.0-rc.1"
4949
s.dependency "MapboxMobileEvents", "~> 1.0"
5050

MapboxNavigation-SPM.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MapboxNavigation.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Pod::Spec.new do |s|
4444
s.module_name = "MapboxNavigation"
4545

4646
s.dependency "MapboxCoreNavigation", "#{s.version.to_s}"
47-
s.dependency "MapboxMaps", "~> 10.10"
47+
s.dependency "MapboxMaps", "~> 10.10.1"
4848
s.dependency "Solar-dev", "~> 3.0"
4949
s.dependency "MapboxSpeech", "~> 2.0"
5050
s.dependency "MapboxMobileEvents", "~> 1.0"

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ let package = Package(
2525
.package(name: "MapboxDirections", url: "https://github.com/mapbox/mapbox-directions-swift.git", .exact("2.9.0-rc.1")),
2626
.package(name: "MapboxMobileEvents", url: "https://github.com/mapbox/mapbox-events-ios.git", from: "1.0.0"),
2727
.package(name: "MapboxNavigationNative", url: "https://github.com/mapbox/mapbox-navigation-native-ios.git", from: "123.1.0"),
28-
.package(name: "MapboxMaps", url: "https://github.com/mapbox/mapbox-maps-ios.git", from: "10.10.0"),
28+
.package(name: "MapboxMaps", url: "https://github.com/mapbox/mapbox-maps-ios.git", from: "10.10.1"),
2929
.package(name: "Solar", url: "https://github.com/ceeK/Solar.git", from: "3.0.0"),
3030
.package(name: "MapboxSpeech", url: "https://github.com/mapbox/mapbox-speech-swift.git", from: "2.0.0"),
3131
.package(name: "CwlPreconditionTesting", url: "https://github.com/mattgallagher/CwlPreconditionTesting.git", from: "2.1.0"),

Tests/CocoaPodsTest/PodInstall/Podfile.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,23 @@ PODS:
55
- MapboxCoreNavigation (2.10.0-beta.2):
66
- MapboxDirections-pre (= 2.9.0-rc.1)
77
- MapboxMobileEvents (~> 1.0)
8-
- MapboxNavigationNative (~> 123.0)
8+
- MapboxNavigationNative (~> 123.1.0)
99
- MapboxDirections-pre (2.9.0-rc.1):
1010
- Polyline (~> 5.0)
1111
- Turf (~> 2.6.1)
12-
- MapboxMaps (10.10.0):
12+
- MapboxMaps (10.10.1):
1313
- MapboxCommon (= 23.2.1)
1414
- MapboxCoreMaps (= 10.10.0)
1515
- MapboxMobileEvents (= 1.0.10)
1616
- Turf (~> 2.0)
1717
- MapboxMobileEvents (1.0.10)
1818
- MapboxNavigation (2.10.0-beta.2):
1919
- MapboxCoreNavigation (= 2.10.0-beta.2)
20-
- MapboxMaps (~> 10.10)
20+
- MapboxMaps (~> 10.10.1)
2121
- MapboxMobileEvents (~> 1.0)
2222
- MapboxSpeech (~> 2.0)
2323
- Solar-dev (~> 3.0)
24-
- MapboxNavigationNative (123.0.0):
24+
- MapboxNavigationNative (123.1.0):
2525
- MapboxCommon (~> 23.2)
2626
- MapboxSpeech (2.1.1)
2727
- Polyline (5.1.0)
@@ -54,12 +54,12 @@ EXTERNAL SOURCES:
5454
SPEC CHECKSUMS:
5555
MapboxCommon: 235bb9c27a8985d982e17f216795b1f7ab526782
5656
MapboxCoreMaps: 4075a9e415b9b3ab6229d09623fef5f791826a5b
57-
MapboxCoreNavigation: 8af41a517fc604fe1134d8182f4fea154f721d3a
57+
MapboxCoreNavigation: daacf32d105dde0596b7a9d9e4028ec3414d6756
5858
MapboxDirections-pre: 5534e43036da7b643014e5ebf316052eede7fd6a
59-
MapboxMaps: a5ad1977764731f97ba04bb7815b6b367e56039c
59+
MapboxMaps: 0c2f7722016bc56aa27b5e6bcf72ae4df7a98670
6060
MapboxMobileEvents: de50b3a4de180dd129c326e09cd12c8adaaa46d6
61-
MapboxNavigation: 003575a8eb637a365d249299bd2faed3fb580f75
62-
MapboxNavigationNative: dcb368ffbd99dd49aa2a1d413d5db1a24d93867c
61+
MapboxNavigation: ca914b28edc4f7fa16cc5923a2105349bcca4eda
62+
MapboxNavigationNative: 1c9b92539fd74400a8efd68cf0ff0e1580c1fea1
6363
MapboxSpeech: cd25ef99c3a3d2e0da72620ff558276ea5991a77
6464
Polyline: 2a1f29f87f8d9b7de868940f4f76deb8c678a5b1
6565
Solar-dev: 4612dc9878b9fed2667d23b327f1d4e54e16e8d0

0 commit comments

Comments
 (0)