nevis_mobile_authentication_sdk 3.8.0 nevis_mobile_authentication_sdk: ^3.8.0 copied to clipboard
Flutter plugin for the nevis_mobile_authentication_sdk. Supports only mobile.
3.8.0 #
- Updated Nevis Mobile Authentication SDK to version 3.8.0.
- Removed stackTrace information from native Android errors.
- Two experimental APIs that allow to check and synchronize configuration mismatches between client and backend has been added.
AuthCloudApiClockSkewTooBig
error is now also returned asAuthCloudApiError
if such error occurs during registration.
3.7.0 #
- Updated Nevis Mobile Authentication SDK to version 3.7.0.
- Updated minimum supported SDK version to Dart 3.1.0.
- Deprecated Android API level 23 support.
- A new experimental API (PendingOutOfBandOperations) to retrieve pending out-of-band operations has been added.
- A new MetaData API to retrieve Nevis Mobile Authentication SDK version and other platform-dependent information is available. For applications running on Android, the API retrieves the SHA-256 hash of the signing certificate of the application that includes the SDK. For iOS applications, the API provides the FacetId of the application that includes the SDK.
- From this version on, the plugin uses an application context object for client and MetaData API initialization on Android instead of the deprecated method with an application object.
Breaking Changes #
- NEW: A new alphanumeric Password Authenticator is available. Note that this requires the nevisFIDO 8.2405.0 component version, otherwise you will need to manually extend the metadata and policy configuration files in nevisFIDO to support this new authenticator type. In this case refer to Default Nevis Authenticator Metadata to obtain the metadata statements and don't forget to add the authenticator AAIDs to the policy file(s). This is classified as a breaking change as depending on your implementation you may need to adapt your code when filtering or listing the available authenticators.
3.6.0 #
- Updated Nevis Mobile Authentication SDK to version 3.6.0.
- The
PinPolicy
has been extended with thevalidatePinForEnrollment
andvalidatePinForPinChange
methods. These methods allow implementing custom PIN policies of any nature. - We fixed an issue where the plugin crashed during biometric authenticator cancellation on the Android platform.
3.5.1 #
- Changes to support latest Flutter version (3.13.9).
3.5.0 #
- Updated Nevis Mobile Authentication SDK to version 3.5.0.
3.4.1 #
- Generic error handling fixes.
3.4.0 #
- From this version on, the signature of the
Authentication.onError
callback function has changed. This method is invoked with anAuthenticationError
which returns aSessionProvider
that can be used to continue with the authentication session. - From this version on, the plugin provides also the device identifier via
DeviceInformation
. It is used in the backend to associate FIDO UAF credentials with a device. - From this version on, the plugin supports registering authenticators in multiple servers.
- New device passcode authenticator is introduced.
- On new registrations, the biometric credentials will be invalidated when a new biometric is added to the operating system if
invalidateOnNewOsBiometrics
is not invoked (seeRegistration.invalidateOnNewOsBiometrics
,AuthCloudApiRegistration.invalidateOnNewOsBiometrics
andOutOfBandRegistration.invalidateOnNewOsBiometrics
). - On new registrations, the device passcode cannot be used with biometric credentials by default (see
Registration.allowDevicePasscodeAsFallback
,AuthCloudApiRegistration.allowDevicePasscodeAsFallback
,OutOfBandRegistration.allowDevicePasscodeAsFallback
).
3.3.0 #
- Updated Nevis Mobile Authentication SDK to version 3.3.0.
- We now support invalidating the FIDO UAF credentials of biometric and fingerprint authenticators when the user adds new biometric credentials in the OS settings, see
Registration.invalidateOnNewOsBiometrics
. - We now support providing HTTP request headers that can be sent in the HTTP request during all the operations, see
requestHeaders
. - From this version on, the
LocalData.deleteAuthenticator
method does not require theaaid
to be provided. Providing noaaid
leads to all authenticator data being deleted. - Removed property validation for all operations as they are now handled by the native SDKs.
3.2.0 #
- Updated Nevis Mobile Authentication SDK to version 3.2.0.
- We now support disabling the device passcode as fallback for the biometric authenticator. See
Registration.allowDevicePasscodeAsFallback
,AuthCloudApiRegistration.allowDevicePasscodeAsFallback
andOutOfBandRegistration.allowDevicePasscodeAsFallback
. - We now support adding a retry strategy to the device information change operation.
- The
authenticationRetryInterval
andauthenticationMaxRetries
properties have been removed from theConfiguration
object. Use theAuthentication.retryPolicyObtainingAuthorizationProvider
instead. - We fixed the deregistration operation, the SDK now fully supports the nevisProxy cookie renewal feature.
3.1.0 #
- From this version on, the deregistration operation does not require the
aaid
to be provided. Providing noaaid
in the operation leads to the whole account being deregistered instead of a single authenticator. - We now support class 2 sensors for the biometric authenticator on Android platform.
- Deregistration in the Identity Suite environment is not working when cookie renewal is enabled on the backend.
3.0.1 #
- Initial release.