Releases: trifork/TIM-iOS
Releases · trifork/TIM-iOS
2.9.0
This version allows the user to use a custom OIDExternalUserAgentIOS
, to not limit logins to the default integrated SFSafariViewController
.
Previously the login view is always presented with a push to a SFSafariViewController
, which was not always ideal/wanted. Now it's possible to add your own logic on how to present the OAuth view(s).
2.8.0
2.7.1
2.7.0
What's Changed
- Added additionalParameters to TIMConfig / OIDAuthorizationResponse by @tfctrifork in #20
New Contributors
- @tfctrifork made their first contribution in #20
Full Changelog: 2.6.0...2.7.0
2.6.0
2.5.0
2.4.0
2.3.1
2.3.0
- Adds a new error case:
TIMStorageError.incompleteUserDataSet
. This happens when the requested user is in an invalid state inside of the library. You should always fallback to a new OIDC login in this case (this state would result in aTIMSecureStorage.failedToLoadData
in previous versions, which was kind of misleading). - Adds a
willBeginNetworkRequests
callback for biometric requests. This callback will be invoked right after biometric validation has succeeded and right before the network requests are initiated. This callback is the perfect place to start your activity indicator.
Thanks to @tgltrifork for finding these two issues! 🥳
As always the required changes to upgrade can be seen in our Example project.