This section contains release notes for the Driver SDK for iOS.
v2.1.0 (October 10, 2022)
Changed
- Bug fixes and documentation updates.
v2.0.0 (July 26, 2022)
Changed
Removed the Terminal Point Service, which includes:
GMTSTerminalPoint
GMTSTerminalPointAccessPoint
GMTSTerminalPointTravelMode
GMTSTerminalPointsVehicleSearchPreference
GMTSTravelModeETA
Support for iOS 12 is now frozen. The minimum iOS version is now 13.0.
Announcement
We are freezing support (deprecating) for iOS 13 in the 2023 major version updates for Driver iOS SDK. The minimum iOS version supported will be iOS 14, starting in June 2023. Customers should prepare by changing the minimum version support flag in their code before they update.
v1.1.0 (April 28, 2022)
Internal improvements.v1.0.5 (March 28, 2022)
Internal bug fixes.
v1.0 (November 29, 2021)
The minimum supported iOS version for this release is 12.0.
API updates
Cleaned up DriverAPI interfaces
Removed Objective-C public initializer from
GMTDDriverAPI
.
Authentication API changes
- Removed unnecessary properties from the
GMTDAuthorizationContext
interface.
GMTDAuthorizationContext
interface.
GMTSServiceType
has been deprecated. You now only need to get claims for the
vehicle ID in GMTDAuthorizationContext
.
(void) fetchAuthTokenForServiceType:(GMTSServiceType)serviceType
authorizationContext:(nullable GMTSAuthorizationContext *)authorizationContext
completion:(GMTSAuthTokenFetchCompletionHandler)completion
is now
(void)fetchTokenWithContext:(nullable GMTDAuthorizationContext *)authorizationContext
completion:(GMTDAuthTokenFetchCompletionHandler)completion;
Replaced GMTSAuthorizationContext
with
GMTDAuthorizationContext
.
Changed AuthorizationContext
to a class with properties, and removed
serviceType
.
Crash reporting
Added crash detection during SDK initialization. There is also an option to opt
out by using the setAbnormalTerminationReportingEnabled:
API on
GMTDServices
.
Freezing support for iOS 12 - Oct 18, 2021
In response to changes in our internal dependencies, we are freezing support for iOS 12 in an upcoming major version of Driver SDK for iOS.
Driver SDK for iOS v2.0 or higher will only support devices running a minimum of iOS 13. Earlier SDK versions will continue to support iOS 12.
If your dependencies in CocoaPods or Carthage do not specify a version number, Xcode will load the newest version and new builds of your app will not support iOS 12.
Be sure to specify a version in your application's build dependencies in order to control when you raise the minimum supported OS for new versions of your app. See examples of specifying a version in Maps SDK for iOS documentation. See the guidance on app maintenance best practices.
v0.3.0 Beta (August 30th, 2021)
API changes
- GMTSServiceType now represents the tokens needed for vehicle or task operations instead of Fleet Engine services.
- GMTDRidesharingDriverAPI is now initalized with a GMTDDriverContext object.
v0.2.0 Beta (July 9th, 2021)
API changes
- Replaced GRDFleetEngine with GMTDVehicleReporter.
- Added GMTDRidesharingDriverAPI.
- Renamed GRDServices to GMTDServices and removed it from public headers.
- Updated class prefix from GRD to GMTD.
- Updated class prefix from GRS to GMTS.