This repository has been archived by the owner on Apr 20, 2024. It is now read-only.
Releases: ml-archive/nodes-sso
Releases · ml-archive/nodes-sso
Version 1.0.0 RC 4
Fixed
- Fixed Swift 5 compiler warnings related to redundant access modifiers
Version 1.0.0 RC 3
Changed
NodesSSOProvider
now accepts a config factory instead to make NodesSSOConfig thread safe to use to allow thread safe middleware.
Version 1.0.0 RC2
Changed
- Correctly specified 4.1 as the minimum required Swift version.
Removed
- This package no longer uses the
MutableLeafTagConfig
. Please useuseNodesSSOLeafTags()
for registering this package's Leaf tags (see readme for more info).
Version 1.0.0 RC 1
Changed
- Swift bumped to 4.2
- Aligned with community guidelines on how to register routes
Fixed
- Query parameters are now being passed on when logging in (#15)
Version 1.0.0 Beta 2
Changed
- rename imageUrl to imageURL
Version 1.0.0 Beta 1
Changed
- Rewritten to support Vapor 3.
Version 0.7.0
Changed
- upgrade to AdminPanelProvider 0.7.0 to support custom user types while keeping the old syntax working.
Example of using your own custom user (e.g. Person
):
try addProvider(AdminPanelNodesSSO.CustomUserProvider<Person>.self)
Make sure to conform your user to SSOUserType
.
Version 0.6.0
Changed
- Update to Admin Panel 0.6.0 + Swift 4.1
Version 0.5.2
Fixed
- SSO users are now correctly being persisted when logging in.
Version 0.5.1
Fixed
- SSO is now also skipped when running on "localhost" - before it would only happen for "0.0.0.0" or "127.0.0.1"