Skip to content

Commit 7e8a09d

Browse files
authored
[iOS] Update dependencies for 3.9.0-rc.1 (#8993)
1 parent 9d976f3 commit 7e8a09d

File tree

10 files changed

+20
-15
lines changed

10 files changed

+20
-15
lines changed

CHANGELOG.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changes to the Mapbox Navigation SDK for iOS
22

3-
## Unreleased
3+
## 3.9.0-rc.1
4+
5+
### Packaging
6+
7+
* Xcode 16.2 or above is now required for the SDK usage.
8+
* MapboxNavigationCore now requires [MapboxMaps v11.12.0](https://github.com/mapbox/mapbox-maps-ios/releases/tag/v11.12.0)
9+
* MapboxNavigationCore now requires [MapboxNavigationNative v324.12.0](https://github.com/mapbox/mapbox-navigation-native-ios/releases/tag/v324.12.0)
410

511
### API Deprecations
612

@@ -34,10 +40,6 @@
3440
* Fixed the fallback to the `RouteOptions.locale` for on-device speech synthesizing if the Mapbox Voice API does not support the requested language.
3541
* Fixed the delay on camera changes during heading updates with using the walking routing profile.
3642

37-
### Packaging
38-
39-
* Xcode 16.0 or above is now required for SDK usage.
40-
4143
## v3.8.0
4244

4345
### Packaging

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
import PackageDescription
55

6-
let (navNativeVersion, navNativeChecksum, navNativeRevision) = ("324.0.0", "f7c0b81c2092faf60eea32538e630e5b67bb7d032251548a2b38054d0ede90f6", "9f21ba13ed4424c374cfa6289eaaf902058098c0")
7-
let mapsVersion: Version = "11.11.0"
6+
let (navNativeVersion, navNativeChecksum, navNativeRevision) = ("324.12.0", "d0f3b1991ec96cacbc113e1f5dfec5d59feeda933556eb78ab8979102e4a476e", "930df7f71b08a643e1773056a60cc3b965deba94")
7+
let mapsVersion: Version = "11.12.0"
88

99
let package = Package(
1010
name: "MapboxNavigation",

Sources/CarPlayTestHelper/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.8.0</string>
18+
<string>3.9.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>150</string>
2121
</dict>

Sources/MapboxNavigationCore/Navigator/Internals/CoreNavigator/NavigatorStatusObserver.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ import Foundation
22
import MapboxNavigationNative
33

44
class NavigatorStatusObserver: NavigatorObserver {
5+
func onPrimaryRouteChanged(forPrimaryRoute primaryRoute: (any RouteInterface)?, reason: PrimaryRouteChangeReason) {}
6+
7+
func onAlternativeRoutesChanged(forAlternativeRoutes alternativeRoutes: [RouteAlternative]) {}
8+
59
var mostRecentNavigationStatus: NavigationStatus? = nil
610

711
func onStatus(for origin: NavigationStatusOrigin, status: NavigationStatus) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Foundation
22

33
extension Bundle {
4-
public static let mapboxNavigationVersion: String = "3.8.0"
4+
public static let mapboxNavigationVersion: String = "3.9.0-rc.1"
55
public static let mapboxNavigationUXBundleIdentifier: String = "com.mapbox.navigationUX"
66
}

Sources/MapboxNavigationUIKit/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.8.0</string>
18+
<string>3.9.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
<key>NSPrincipalClass</key>

Sources/MapboxNavigationUIKit/Resources/MBXInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.8.0</string>
18+
<string>3.9.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
<key>NSPrincipalClass</key>

Sources/TestHelper/Fixture.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import CoreLocation
22
import Foundation
33
import MapboxDirections
44
@_spi(MapboxInternal) @testable import MapboxNavigationCore
5-
import MapboxNavigationNative
65
import Turf
76
import UIKit.UIImage
87

@@ -115,7 +114,7 @@ public class Fixture: NSObject {
115114
return route
116115
}
117116

118-
public class func waypoints(from jsonFile: String, options: RouteOptions) -> [MapboxDirections.Waypoint] {
117+
public class func waypoints(from jsonFile: String, options: RouteOptions) -> [Waypoint] {
119118
let response = routeResponse(from: jsonFile, options: options)
120119
guard let waypoints = response.waypoints else {
121120
preconditionFailure("No waypoints")

Sources/TestHelper/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.8.0</string>
18+
<string>3.9.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
</dict>

Tests/MapboxNavigationPackageTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.8.0</string>
18+
<string>3.9.0</string>
1919
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
2020
<string>Location Usage Description</string>
2121
<key>NSLocationWhenInUseUsageDescription</key>

0 commit comments

Comments
 (0)