Releases: stormpath/stormpath-sdk-ios
Releases · stormpath/stormpath-sdk-ios
3.0.1
Stormpath iOS SDK (v3)
The Stormpath iOS SDK v3 is out!
This release of the Stormpath SDK now uses the Stormpath Client API to perform authentication, instead of the framework integrations in the previous releases.
In addition, this release implements Stormpath-handled social login, which allows you to easily login with Facebook, Google, GitHub, and Linkedin in your app.
Since this is a breaking release, the following updates were also made:
- For Objective-C users, all public interfaces are now prefixed with
SPH - For Swift users, all public interfaces now have a leading parameter name to fit with Swift 3, so
stormpath.login("edward@stormpath.com", password: "TestTest1")is nowstormpath.login(username: "edward@stormpath.com", password: "TestTest1")and so on.
2.0.1
Xcode 8 / Swift 3
- Swift 3 / Xcode 8 compatibility.
- API largely backwards-compatible with v1, so only minor code changes required where Foundation has changed, or in the case of enums (they're all lowercase in Swift 3, so
.googleinstead of.Google)
For Swift 2.3, use branch swift2.3
For Swift 2.2, use version 1.2.
Stormpath iOS SDK
- Updated docs
- Added LinkedIn / GitHub support for advanced users