Skip to content

Releases: auth0/Auth0.swift

1.1.1

02 Jan 21:45
cd23495
Compare
Choose a tag to compare

Full Changelog

Fixed

  • Ensure state set correctly when set via parameters #77 (cocojoe)

1.1.0

16 Dec 14:46
4ac4867
Compare
Choose a tag to compare

Full Changelog

Closed issues

  • Missing API #59
  • Delegation for Firebase #55

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

23 Nov 15:15
03347ab
Compare
Choose a tag to compare

Full Changelog

Fixed

1.0.0

06 Oct 18:27
a0b6088
Compare
Choose a tag to compare

Full Changelog

Closed issues

  • Facebook Login web page does not redirect to the application at the first login #51

Fixed

  • Properly parse authorize response #56 (hzalaz)

1.0.0-rc.4@swift-2.3

19 Sep 02:17
4f89bd4
Compare
Choose a tag to compare
1.0.0-rc.4@swift-2.3 Pre-release
Pre-release

1.0.0-rc.4

19 Sep 02:51
4c996b9
Compare
Choose a tag to compare
1.0.0-rc.4 Pre-release
Pre-release

Full Changelog

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

15 Sep 02:16
4041523
Compare
Choose a tag to compare
1.0.0-rc.3 Pre-release
Pre-release

Full Changelog

Closed issues:

Changed:

  • Update for Swift 2.3 & Xcode 8 #46 (hzalaz)

1.0.0-rc.2

09 Sep 19:09
8ae8eb1
Compare
Choose a tag to compare
1.0.0-rc.2 Pre-release
Pre-release

Full Changelog

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

18 Aug 02:33
0627746
Compare
Choose a tag to compare
1.0.0-rc.1 Pre-release
Pre-release

Full Changelog

Added:

1.0.0-beta.7

29 Jul 21:53
bd5927f
Compare
Choose a tag to compare
1.0.0-beta.7 Pre-release
Pre-release

Full Changelog

Added:

Changed:

  • Improve error handling and Auth session management #39 (hzalaz)
  • Avoid using global telemetry. #38 (hzalaz)