djangoflow_auth 0.6.0 djangoflow_auth: ^0.6.0 copied to clipboard
djangoflow_auth is your ultimate Flutter authentication companion, packed with Djangoflow API supports.
0.6.0 #
Note: This release has breaking changes.
- BREAKING REFACTOR: update dependencies and sdk constraints. (649ad55c)
0.5.0 #
Note: This release has breaking changes.
- BREAKING REFACTOR: add authCubit field for JwtAuthInterceptor. (bc17ac36)
0.4.0 #
0.3.0+3 #
0.3.0 #
0.2.2 #
0.2.1+1 #
- REFACTOR: update
SocialTokenObtainProviderEnum provider
toProviderEnum
. (f6685e40) - REFACTOR: rename
loginWithOTP
tologinWithOTP
. (b7aa9dd3) - REFACTOR: requestOtp now takes
OTPObtainRequest
instead of only email. (bbe91299) - REFACTOR: renamed
registrationWithEmail
toregisterOrInviteUser
. (746a1c3d) - DOCS: update
SocialTokenObtainProviderEnum provider
toProviderEnum
. (0c231686) - DOCS: update method documentation. (0988879c)
0.2.0+1 #
0.2.0 #
- Updated
djangoflow_openapi
depdendency - Breaking Changes Changed
ProviderEnum
toSocialTokenObtainProviderEnum
0.1.1 #
- Added example URL
0.1.0 #
- Removed implementations of SocialLogin support from djangoflow_auth, but they are now in djangoflow_auth_google, djangoflow_auth_facebook, djangoflow_auth_apple, djangoflow_auth_discord.
- Added
SocialLoginListExtensions
Breaking Changes
// Before
abstract class SocialLogin<R> {
/// The name of the provider
final ProviderEnum type;
//...
}
// After
abstract class SocialLogin<R> {
/// Type of SocialLogin
final SocialLoginType type;
0.0.1 #
We are excited to announce the initial release of djangoflow_auth!
Added
- Initial release of the
djangoflow_auth
Flutter package. - Support for Google, Facebook, Apple, and Discord social logins.
- Integration with
bloc
,dio
, andhydrated_bloc
for handling authentication. - Example code snippets showcasing usage of different social login providers.