Skip to content

4.2.0 Release

Compare
Choose a tag to compare
@Tratcher Tratcher released this 10 May 21:07

This release includes a security feature and some minor improvements. The packages are available on nuget.org.

See here for the complete list of changes. These improvements have been completely community driven, thanks everybody for helping out!

#389 adds PKCE support for OpenIdConnect authentication when using the code flow:

app.UseOpenIdConnectAuthentication(
    new OpenIdConnectAuthenticationOptions
    {
        ClientId = clientId,
        ClientSecret = clientSecret,
        Authority = authority,
        PostLogoutRedirectUri = postLogoutRedirectUri,
        ResponseType = OpenIdConnectResponseType.Code,
        RedeemCode = true,
        RedirectUri = redirectUri,
        UsePkce = true,
    });