AuthPermissions.AspNetCore
3.4.0
See the version list below for details.
dotnet add package AuthPermissions.AspNetCore --version 3.4.0
NuGet\Install-Package AuthPermissions.AspNetCore -Version 3.4.0
<PackageReference Include="AuthPermissions.AspNetCore" Version="3.4.0" />
paket add AuthPermissions.AspNetCore --version 3.4.0
#r "nuget: AuthPermissions.AspNetCore, 3.4.0"
// Install AuthPermissions.AspNetCore as a Cake Addin #addin nuget:?package=AuthPermissions.AspNetCore&version=3.4.0 // Install AuthPermissions.AspNetCore as a Cake Tool #tool nuget:?package=AuthPermissions.AspNetCore&version=3.4.0
AuthPermissions.AspNetCore
The AuthPermissions.AspNetCore library (shortened to AuthP) provides extra authorization features to a ASP.NET Core application. Here are AuthP's three main features:
- An improved Role authorization system where the features a Role can access can be changed by an admin user (i.e. no need to edit and redeploy your application when a Role changes).
- Provides features to create a multi-tenant database system, either using one-level tenant or multi-level tenant (hierarchical).
- Implements a JWT refresh token feature to improve the security of using JWT Token in your application.
The AuthP is an open-source library under the MIT licence (and remain as a open-source library for ever) and the NuGet package can be found here. The documentation can be found in the GitHub wiki and see ReleaseNotes for details of changes. There is also a roadmap discussion containing the plans for this library.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- DistributedLock (>= 2.3.1)
- EfCore.TestSupport (>= 5.2.2)
- EntityFrameworkCore.Exceptions.PostgreSQL (>= 6.0.3)
- EntityFrameworkCore.Exceptions.Sqlite (>= 6.0.3)
- EntityFrameworkCore.Exceptions.SqlServer (>= 6.0.3)
- GenericServices.StatusGeneric (>= 1.1.0)
- Microsoft.AspNetCore.Authentication.OpenIdConnect (>= 6.0.8)
- Microsoft.AspNetCore.Authorization (>= 6.0.8)
- Microsoft.AspNetCore.Hosting (>= 2.2.7)
- Microsoft.AspNetCore.Http (>= 2.2.2)
- Microsoft.AspNetCore.Identity.EntityFrameworkCore (>= 6.0.8)
- Microsoft.Data.Sqlite.Core (>= 6.0.8)
- Microsoft.EntityFrameworkCore (>= 6.0.8)
- Microsoft.EntityFrameworkCore.InMemory (>= 6.0.8)
- Microsoft.EntityFrameworkCore.Sqlite (>= 6.0.8)
- Microsoft.EntityFrameworkCore.SqlServer (>= 6.0.8)
- Microsoft.EntityFrameworkCore.Tools (>= 6.0.8)
- Microsoft.Extensions.Hosting (>= 6.0.1)
- Microsoft.Graph (>= 4.37.0)
- Net.DistributedFileStoreCache (>= 1.0.0)
- Net.RunMethodsSequentially (>= 1.3.1)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 6.0.6)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
8.0.0 | 3,658 | 5/27/2024 |
6.2.2 | 5,127 | 2/9/2024 |
6.2.1 | 200 | 1/30/2024 |
6.2.0 | 1,260 | 1/10/2024 |
6.1.0 | 1,215 | 11/28/2023 |
6.0.0 | 8,568 | 8/15/2023 |
5.0.1 | 2,052 | 7/4/2023 |
5.0.0 | 4,049 | 5/31/2023 |
4.2.0-preview001 | 137 | 3/15/2023 |
4.1.0 | 4,424 | 1/3/2023 |
4.0.0 | 867 | 11/21/2022 |
3.5.0 | 4,242 | 10/18/2022 |
3.4.0 | 627 | 9/20/2022 |
3.3.0 | 4,546 | 6/17/2022 |
3.2.1 | 750 | 6/2/2022 |
3.2.0 | 898 | 4/26/2022 |
3.1.0 | 1,196 | 4/11/2022 |
3.0.0 | 576 | 4/4/2022 |
2.3.1 | 1,166 | 3/5/2022 |
2.3.0 | 621 | 2/26/2022 |
2.2.0 | 658 | 1/10/2022 |
2.1.0 | 322 | 1/3/2022 |
2.0.0 | 377 | 12/16/2021 |
1.4.0 | 626 | 10/11/2021 |
1.3.0 | 411 | 10/7/2021 |
1.2.1 | 410 | 9/21/2021 |
1.2.0 | 406 | 9/17/2021 |
1.1.0 | 488 | 8/25/2021 |
1.0.0-preview001 | 304 | 8/10/2021 |
- BREAKING CHANGE (small): Refresh users claims now uses Net.DistributedFileStoreCache - see Example4
- New feature: Take the application "down for maintenance", which diverts users to a "please wait" page - see Example4 and Example6
- New feature: Code for minimal API's fluent HasPermission - see pull request #51. (thanks to @idan-h)
- Improved feature: Added timeout on user invitation - see Example 3 and 5 (inspired by @idan-h)
- Improved feature: The name of the sharding file can have an EnvironmentName, e.g. "shardingsettings.Production.json"
- Improved feature: The RefreshUsersClaims classes have been moved to SupportCode project and a few classes have been renamed
- Improved feature: Sharding now has distributed lock on changes to the shardingsettings.json file
- Improved feature: The AuthUserAdmin method QueryAuthUsers now takes an optional DatabaseInfoName to allow tenant admin users on sharding
- Bug Fix: The ReadShardingSettingsFile now return the default sharding DatabaseInformation if no sharding file is found
- Updated NuGets: There was a security alert on one of the NuGets. All the NuGets have been updated to the latest