Skip to content

v2.0.0 🚀

Compare
Choose a tag to compare
@Hawxy Hawxy released this 12 Nov 07:48
· 12 commits to main since this release
f66133e

Breaking Changes

  • Dropped support for .NET Core 3.1 & 5.0, supported targets are now .NET 6 & 7.
  • The package now registers the recently added IManagementApiClient interface instead of the ManagementApiClient class. Please update your class dependencies accordingly.
 public class MyAuth0Service : IAuth0Service
{
-    private readonly ManagementApiClient _managementApiClient;

-    public MyAuth0Service(ManagementApiClient managementApiClient)
    {
        _managementApiClient = managementApiClient;
    }

 public class MyAuth0Service : IAuth0Service
{
+    private readonly IManagementApiClient _managementApiClient;

+    public MyAuth0Service(IManagementApiClient managementApiClient)
    {
        _managementApiClient = managementApiClient;
    }