Skip to content

Releases: auth0/Auth0.swift

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)

1.0.0-beta.6

26 Jul 14:05
3a6fc2f
Compare
Choose a tag to compare
1.0.0-beta.6 Pre-release
Pre-release

Full Changelog

Added:

1.0.0-beta.5

01 Jul 01:24
4d120be
Compare
Choose a tag to compare
1.0.0-beta.5 Pre-release
Pre-release

Full Changelog

Changed:

  • Renamed UserProfile to Profile #34 (hzalaz)

Breaking changes:

The UserProfile is not named Profile (in Objective C is A0Profile).

1.0.0-beta.4

30 Jun 19:54
47c387c
Compare
Choose a tag to compare
1.0.0-beta.4 Pre-release
Pre-release

Full Changelog

Added:

  • Allow to override telemetry info #32 (hzalaz)

Fixed: