Changelog

v5.8.0

New features

Demo App

Vastly improved demo app:

Other changes

v5.7.2

v5.7.1

v5.7.0

Warning: There are Breaking Changes

Breaking changes

New features

Other changes

v5.6.2

v5.6.1

v5.6.0

v5.5.1

v5.5.0

v5.4.0

v5.3.3

v5.3.2

v5.3.1

v5.3.0

SdkConfig(
  domain: "my-reachfive-url",
  clientId: "my-reachfive-client-id",
  scheme: "my-reachfive-scheme"
)

v5.2.2

v5.2.1

v5.2.0

Breaking changes

v5.1.2

v5.1.1

v5.1.0

Breaking changes

v5.0.0

Breaking changes

We use Future instead callbacks, you need to transform yours callbacks into the Future

AppDelegate.reachfive()
  .loginWithPassword(username: email, password: password)
  .onSuccess { authToken in
    // Handle success
  }
  .onFailure { error in
    // Handle error
  }

instead of

AppDelegate.reachfive()
  .loginWithPassword(
    username: email,
    password: password,
    callback: { response in
        switch response {
          case .success(let authToken):
            // Handle success
          case .failure(let error):
            // handle error
          }
    }
)

v4.0.0-beta.15

Use SFSafariViewController instead of WKWebView

v4.0.0-beta.13

Fix UserConsent

v4.0.0-beta.12

Add getProfile

v4.0.0

9th July 2019

Changes

New modular version of the Identity SDK iOS: