Changelog

v7.0.0

Breaking changes

Change all your import from

import IdentitySdkFacebook

to

import Reach5Facebook

New features

v6.2.0

Dependencies

v6.0.0

Warning: There are Breaking Changes

Breaking changes

Dependencies

v5.7.0

Warning: There are Breaking Changes

Breaking changes

New features

Other changes

v5.5.0

v5.2.0

Breaking changes

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

9th July 2019

Changes

New modular version of the Identity SDK iOS: