You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Breaking change Support for netstandard 2.0 has been removed and .net 8 & 9 are currently supported.
Breaking changes IdentityBuilder.AddAzureTableStores now requires a TableServiceClient to be included in DI, eliminating the need for the storage connection string in the `IdentityConfiguration'.
Breaking changes TableQuery query filter to use ReadOnlySpan<char> instead of string and gained almost 10x improvement in emitting odata query filters.
Fixed token update bugs #113#104 not setting the value correctly
Modified IKeyHelper interface methods to return ReadOnlySpan<char> instead of string.
Updated IdentityRole, IdentityRoleClaim, IdentityUser, IdentityUserClaim, IdentityUserLogin, IdentityUserRole, and IdentityUserToken classes to convert ReadOnlySpan<char> to string where necessary. [1][2][3][4][5][6][7][8][9]
Code Quality Improvements:
Removed StorageConnectionString property from IdentityConfiguration class.
Added ReadOnlySpan<char>IKeyHelper.cs and TableQuery query filter to support tighter memory management