|
2 | 2 | <package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> |
3 | 3 | <metadata> |
4 | 4 | <id>AuthPermissions.AspNetCore</id> |
5 | | - <version>5.0.1</version> |
| 5 | + <version>6.0.0</version> |
6 | 6 | <authors>Jon P Smith</authors> |
7 | 7 | <product>AuthPermissions.AspNetCore</product> |
8 | 8 | <copyright>Copyright (c) 2021 Jon P Smith</copyright> |
9 | 9 | <description>Provides extra authorization and multi-tenant features to a ASP.NET Core application.</description> |
10 | 10 | <releaseNotes> |
11 | | - - Minor improvements AccessDatabaseInformationJsonFile |
12 | | - - Minor improvements to SignInAndCreateTenant (better handling of errors) |
13 | | - - Minor improvements to IndividualUserAddUserManager (check password) |
14 | | - </releaseNotes> |
| 11 | + - Significant changes to code to support sharding multi-tenant applications |
| 12 | + - BREAKING CHANGES: Replaced the old services for handling sharding entries due to a limitation |
| 13 | + - Improvement: The ability to define a sharding-only mode - see Configuring sharding > sharding-only mode |
| 14 | + - Fix: The Sign up for a new tenant, with versioning now works with sharding-only tenants. |
| 15 | + - Improvement: New service to simplify the create / delete of sharding-only tenants. |
| 16 | + </releaseNotes> |
15 | 17 | <license type="expression">MIT</license> |
16 | 18 | <projectUrl>https://github.com/JonPSmith/AuthPermissions.AspNetCore</projectUrl> |
17 | 19 | <icon>images\AuthPermissionsAspNetCoreNuGetIcon.png</icon> |
|
33 | 35 | <dependency id="Microsoft.AspNetCore.Authentication.OpenIdConnect" version="6.0.11" /> |
34 | 36 | <dependency id="Microsoft.AspNetCore.Authorization" version="6.0.11" /> |
35 | 37 | <dependency id="Microsoft.AspNetCore.Http" version="2.2.2" /> |
| 38 | + <dependency id="Net.DistributedFileStoreCache" version="2.0.0" /> |
36 | 39 | <dependency id="EntityFrameworkCore.Exceptions.PostgreSQL" version="6.0.3" /> |
37 | 40 | <dependency id="EntityFrameworkCore.Exceptions.Sqlite" version="6.0.3" /> |
38 | 41 | <dependency id="EntityFrameworkCore.Exceptions.SqlServer" version="6.0.3.1" /> |
|
41 | 44 | <dependency id="EfCore.TestSupport" version="5.3.0" /> |
42 | 45 | <dependency id="Microsoft.AspNetCore.Hosting" version="2.2.7" /> |
43 | 46 | <dependency id="Microsoft.Graph" version="4.37.0" /> |
44 | | - <dependency id="Net.DistributedFileStoreCache" version="2.0.0" /> |
45 | 47 | </group> |
46 | 48 | <group targetFramework="net7.0"> |
47 | 49 | <dependency id="GenericServices.StatusGeneric" version="1.2.0" /> |
|
59 | 61 | <dependency id="Microsoft.AspNetCore.Authentication.OpenIdConnect" version="7.0.0" /> |
60 | 62 | <dependency id="Microsoft.AspNetCore.Authorization" version="7.0.0" /> |
61 | 63 | <dependency id="Microsoft.AspNetCore.Http" version="2.2.2" /> |
| 64 | + <dependency id="Net.DistributedFileStoreCache" version="2.0.0" /> |
62 | 65 | <dependency id="EntityFrameworkCore.Exceptions.PostgreSQL" version="6.0.3" /> |
63 | 66 | <dependency id="EntityFrameworkCore.Exceptions.Sqlite" version="6.0.3" /> |
64 | 67 | <dependency id="EntityFrameworkCore.Exceptions.SqlServer" version="6.0.3.1" /> |
|
67 | 70 | <dependency id="EfCore.TestSupport" version="5.3.0" /> |
68 | 71 | <dependency id="Microsoft.AspNetCore.Hosting" version="2.2.7" /> |
69 | 72 | <dependency id="Microsoft.Graph" version="4.37.0" /> |
70 | | - <dependency id="Net.DistributedFileStoreCache" version="2.0.0" /> |
71 | 73 | </group> |
72 | 74 | </dependencies> |
73 | 75 | </metadata> |
|
0 commit comments