github openiddict/openiddict-core 6.0.0-preview3

pre-release16 hours ago

This release introduces the following changes:

  • The existing IOpenIddictAuthorizationManager.FindAsync(...) and IOpenIddictTokenManager.FindAsync(...) overloads have been merged and replaced by a single method where all the parameters are now optional (for instance, if a null subject value is specified when calling IOpenIddictAuthorizationManager.FindAsync(...), the returned collection will contain authorizations for all users).

  • New IOpenIddictAuthorizationManager.RevokeAsync(...) and IOpenIddictTokenManager.RevokeAsync(...) APIs have been introduced to allow easily revoking authorizations or tokens associated based on specific parameters. E.g:

// Revoke all the active access tokens attached to the user alice@wonderland.com.
await _tokenManager.RevokeAsync(subject: "alice@wonderland.com", client: null, status: Statuses.Active, type: TokenTypeHints.AccessToken);

Don't miss a new openiddict-core release

NewReleases is sending notifications on new releases.