Releases: auth0/Auth0.swift
Releases · auth0/Auth0.swift
1.1.1
1.1.0
Closed issues
Added
- Credentials exposes expires_in if returned after auth #72 (cocojoe)
- Added grant type password realm support #71 (cocojoe)
- Support refresh token authentication #69 (cocojoe)
- Support for audience parameter for WebAuth #67 (cocojoe)
- Multiple respone_type support #65 (cocojoe)
- Support id_token response type #62 (cocojoe)
Changed
Deprecated
1.0.1
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)