Skip to content

Commit

Permalink
Dependency update (#4550)
Browse files Browse the repository at this point in the history
* vk/release-2.17.0-beta.1: bumped NN to v158; CHANGELOG updated
  • Loading branch information
Udumft authored Sep 22, 2023
1 parent b92d1b7 commit 003f2ea
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 18 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## v2.17.0

### Packaging

* MapboxCoreNavigation now requires [MapboxNavigationNative v158._x_](https://github.com/mapbox/mapbox-navigation-native-ios/releases/tag/158.0.0). ([#4550](https://github.com/mapbox/mapbox-navigation-ios/pull/4550))

### CarPlay

* Fixed behavior when completion was not called in case of an error in CarPlayManager. ([#4548](https://github.com/mapbox/mapbox-navigation-ios/pull/4548))
Expand Down
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon.json" == 23.8.0
binary "https://api.mapbox.com/downloads/v2/carthage/mobile-navigation-native/MapboxNavigationNative.xcframework.json" ~> 157.0.0
binary "https://api.mapbox.com/downloads/v2/carthage/mobile-navigation-native/MapboxNavigationNative.xcframework.json" ~> 158.0.0
github "mapbox/mapbox-directions-swift" ~> 2.11.1
github "mapbox/mapbox-events-ios" ~> 1.0.0
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon.json" "23.8.0"
binary "https://api.mapbox.com/downloads/v2/carthage/mobile-navigation-native/MapboxNavigationNative.xcframework.json" "157.0.0"
binary "https://api.mapbox.com/downloads/v2/carthage/mobile-navigation-native/MapboxNavigationNative.xcframework.json" "158.0.0"
github "mapbox/mapbox-directions-swift" "v2.11.1"
github "mapbox/mapbox-events-ios" "v1.0.10"
github "mapbox/turf-swift" "v2.7.0"
Expand Down
2 changes: 1 addition & 1 deletion MapboxCoreNavigation.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Pod::Spec.new do |s|
s.requires_arc = true
s.module_name = "MapboxCoreNavigation"

s.dependency "MapboxNavigationNative", "~> 157.0.0"
s.dependency "MapboxNavigationNative", "~> 158.0.0"
s.dependency "MapboxDirections", "~> 2.11.1"
s.dependency "MapboxMobileEvents", "~> 1.0"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@
"repositoryURL": "https://github.com/mapbox/mapbox-navigation-native-ios.git",
"state": {
"branch": null,
"revision": "28c54bb4002ca16d60004c1abad2850240a4d149",
"version": "157.0.0"
"revision": "a90b05d31a1fda9f4d3079f1358bd711a7717ffb",
"version": "158.0.0"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ let package = Package(
dependencies: [
.package(name: "MapboxDirections", url: "https://github.com/mapbox/mapbox-directions-swift.git", from: "2.11.1"),
.package(name: "MapboxMobileEvents", url: "https://github.com/mapbox/mapbox-events-ios.git", from: "1.0.0"),
.package(name: "MapboxNavigationNative", url: "https://github.com/mapbox/mapbox-navigation-native-ios.git", from: "157.0.0"),
.package(name: "MapboxNavigationNative", url: "https://github.com/mapbox/mapbox-navigation-native-ios.git", from: "158.0.0"),
.package(name: "MapboxMaps", url: "https://github.com/mapbox/mapbox-maps-ios.git", from: "10.16.0"),
.package(name: "Solar", url: "https://github.com/ceeK/Solar.git", from: "3.0.0"),
.package(name: "MapboxSpeech", url: "https://github.com/mapbox/mapbox-speech-swift.git", from: "2.0.0"),
Expand Down
2 changes: 0 additions & 2 deletions Sources/MapboxCoreNavigation/NativeHandlersFactory.swift
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,6 @@ class NativeHandlersFactory {
tileStore: tileStore,
inMemoryTileCache: nil,
onDiskTileCache: nil,
mapMatchingSpatialCache: nil,
threadsCount: nil,
endpointConfig: endpointConfig)
}()

Expand Down
4 changes: 0 additions & 4 deletions Sources/TestHelper/CoreNavigatorSpy.swift
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,6 @@ class GraphAccessorSpy: GraphAccessor {
tileStore: nil,
inMemoryTileCache: nil,
onDiskTileCache: nil,
mapMatchingSpatialCache: nil,
threadsCount: nil,
endpointConfig: nil)
let cache = CacheFactory.build(for: tileConfig, config: configHandle, historyRecorder: nil)
super.init(cache: cache)
Expand All @@ -171,8 +169,6 @@ class RoadObjectMatcherSpy: MapboxNavigationNative.RoadObjectMatcher {
tileStore: nil,
inMemoryTileCache: nil,
onDiskTileCache: nil,
mapMatchingSpatialCache: nil,
threadsCount: nil,
endpointConfig: nil)
let cache = CacheFactory.build(for: tileConfig, config: configHandle, historyRecorder: nil)
super.init(cache: cache)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public final class TestNavigationStatusProvider {
upcomingRouteAlertUpdates: upcomingRouteAlertUpdates,
nextWaypointIndex: 0,
layer: nil,
isSyntheticLocation: false)
isSyntheticLocation: false,
correctedLocationData: nil)
}
}
8 changes: 4 additions & 4 deletions Tests/CocoaPodsTest/PodInstall/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PODS:
- MapboxCoreNavigation (2.16.0):
- MapboxDirections (~> 2.11.1)
- MapboxMobileEvents (~> 1.0)
- MapboxNavigationNative (~> 157.0.0)
- MapboxNavigationNative (~> 158.0.0)
- MapboxDirections (2.11.1):
- Polyline (~> 5.0)
- Turf (~> 2.6.1)
Expand All @@ -21,7 +21,7 @@ PODS:
- MapboxMobileEvents (~> 1.0)
- MapboxSpeech (~> 2.0)
- Solar-dev (~> 3.0)
- MapboxNavigationNative (157.0.0):
- MapboxNavigationNative (158.0.0):
- MapboxCommon (~> 23.8)
- MapboxSpeech (2.1.1)
- Polyline (5.1.0)
Expand Down Expand Up @@ -54,12 +54,12 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
MapboxCommon: 8592a003eae487508461d452d62cfc5906a9682a
MapboxCoreMaps: faa14a797417dc32088c98019a3ce72e46cda5cd
MapboxCoreNavigation: 9414a9ba6681070f1186cca16c14d65d5663d700
MapboxCoreNavigation: c3cf6d3a8f6991f59833cfa133258b48f8bf2340
MapboxDirections: 31d61b8369d5dde6f6828f72905ab9a7e054cd2c
MapboxMaps: f10aecadbfb7cf96368852ca313101eb4171da53
MapboxMobileEvents: de50b3a4de180dd129c326e09cd12c8adaaa46d6
MapboxNavigation: e781ce4c3b987180a0eb46145e3118c465eb8e92
MapboxNavigationNative: 2953310e4e05fcc3b335bdbeee861347272ac38f
MapboxNavigationNative: 93ca2ddd50188ea190c2ef95a719bbb9c27596f3
MapboxSpeech: cd25ef99c3a3d2e0da72620ff558276ea5991a77
Polyline: 2a1f29f87f8d9b7de868940f4f76deb8c678a5b1
Solar-dev: 4612dc9878b9fed2667d23b327f1d4e54e16e8d0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,8 @@ class RouteProgressTests: TestCase {
upcomingRouteAlertUpdates: [],
nextWaypointIndex: 0,
layer: nil,
isSyntheticLocation: false
isSyntheticLocation: false,
correctedLocationData: nil
)
}

Expand Down

0 comments on commit 003f2ea

Please sign in to comment.