Skip to content

Releases: vapor/authentication

3.0.0-beta.3

Choose a tag to compare

@0xTim 0xTim released this 04 Mar 16:24
e9eb03f

What's Changed

New Contributors

Full Changelog: 3.0.0-beta.2...3.0.0-beta.3

3.0.0-beta.2

Choose a tag to compare

@0xTim 0xTim released this 15 Dec 15:52
145e8c5

3.0.0 Beta 1

Choose a tag to compare

@0xTim 0xTim released this 15 Dec 15:16
7b6f719

New authentication library aimed at providing a lightweight and safe set of utilities for dealing with authentication. Currently supports:

  • Password hashing (with provided PasswordHasher protocol and implementations for plaintext hashing (for testing) and bcrypt)
  • OTP functionality - copied over from the main Vapor repo

What's Changed

New Contributors

Full Changelog: 2.0.3...3.0.0-beta.1

Auth 2.0.4

Choose a tag to compare

@tanner0101 tanner0101 released this 11 Jun 23:39
e6f61b4

Fixed:

  • Session authentication middleware now correctly short-circuits if authentication already succeeded (#68, #69)

Auth 2.0.3

Choose a tag to compare

@0xTim 0xTim released this 18 Feb 20:29
ed40278

Fix issue where people taking the latest release would get compile errors from pulling in incorrect Vapor version

Auth 2.0.2

Choose a tag to compare

@tanner0101 tanner0101 released this 12 Feb 19:27
9c71c8a

Fixed:

  • Fixed an issue where a new, empty session would be created after unauthenticating a user and destroying the session at the same time. (#60, #59)

Auth 2.0.1

Choose a tag to compare

@tanner0101 tanner0101 released this 14 Aug 18:27
9086862

Fixed:

  • Moved HTTP bearer and basic auth helpers to vapor/http package. (#54)
  • req.unauthenticate(...) now correctly destroys session. (#52)

Auth 2.0.0

Choose a tag to compare

@tanner0101 tanner0101 released this 09 Aug 19:53

Auth 2.0 is here 🎉
👤 Authentication and Authorization framework for Fluent (Authorization coming soon).

The Auth API Template has also been updated:

vapor new Hello --template=auth-template

Docs:
https://docs.vapor.codes/3.0/auth/getting-started/

API Docs:
https://api.vapor.codes/auth/latest/Authentication

Auth 2.0.0 RC 5

Auth 2.0.0 RC 5 Pre-release
Pre-release

Choose a tag to compare

@tanner0101 tanner0101 released this 15 Jun 17:32

Fixed:

  • Updated to latest Fluent RCs.

Auth 2.0.0 RC 4.1

Auth 2.0.0 RC 4.1 Pre-release
Pre-release

Choose a tag to compare

@tanner0101 tanner0101 released this 15 May 22:51

Fixed:

  • Token authentication middleware no longer throws if not authenticated. (#42)
  • Fixed an issue where UserIDType typealias was required. (#41)