Releases: auth0/Auth0.swift
Releases · auth0/Auth0.swift
1.0.0
1.0.0-rc.4@swift-2.3
1.0.0-rc.4
This version (and future ones) requires Xcode 8 and Swift 3. For Swift 2.3 please check the branch v1@swift-2.3
Closed issues:
Changed:
1.0.0-rc.3
1.0.0-rc.2
Changed:
Breaking changes:
The function enableLogging()
was removed, so now to enable logging in the library you should enable it per-client instead of globally.
For Auth API
var auth = Auth0.authentication()
auth.logging(enabled: true)
For Users API
var users = Auth0.users(token: "token")
users.logging(enabled: true)
Also now you can provide a custom Logger to replace the default one (which just uses Swift print
). It only needs to implement the protocol Logger
let logger = MyCustomLogger()
var auth = Auth0.authentication()
auth.usingLogger(logger)
1.0.0-rc.1
1.0.0-beta.7
1.0.0-beta.6
Added:
- Unlink method in ObjC bridge #36 (sebacancinos)
- Load Auth0 credentials from plist from ObjC #37 (hzalaz)
1.0.0-beta.5
Changed:
Breaking changes:
The UserProfile
is not named Profile
(in Objective C is A0Profile
).
1.0.0-beta.4
Added:
Fixed:
- Made
start()
ofConcatRequest
public #31 (pablolvillar) - Send Authorization header was sent for Users API #33 (hzalaz)