|
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>3.4.0</version> |
| 5 | + <version>3.5.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 | | -- BREAKING CHANGE (small): Refresh users claims now uses Net.DistributedFileStoreCache - see Example4 |
12 | | -- New feature: Take the application "down for maintenance", which diverts users to a "please wait" page - see Example4 and Example6 |
13 | | -- New feature: Code for minimal API's fluent HasPermission - see pull request #51. (thanks to @idan-h) |
14 | | -- Improved feature: Added timeout on user invitation - see Example 3 and 5 (inspired by @idan-h) |
15 | | -- Improved feature: The name of the sharding file can have an EnvironmentName, e.g. "shardingsettings.Production.json" |
16 | | -- Improved feature: The RefreshUsersClaims classes have been moved to SupportCode project and a few classes have been renamed |
17 | | -- Improved feature: Sharding now has distributed lock on changes to the shardingsettings.json file |
18 | | -- Improved feature: The AuthUserAdmin method QueryAuthUsers now takes an optional DatabaseInfoName to allow tenant admin users on sharding |
19 | | -- Bug Fix: The ReadShardingSettingsFile now return the default sharding DatabaseInformation if no sharding file is found |
20 | | -- Updated NuGets: There was a security alert on one of the NuGets. All the NuGets have been updated to the latest |
| 11 | +- BREAKING CHANGE (small): The DisableJwtRefreshToken service has been updated to handle multiple logins from one user |
| 12 | +- BREAKING CHANGE (small): Changed TenantChangeCookieEvent name to SomethingChangedCookieEvent |
| 13 | +- Improved feature: AuthPermissionsDbContext now takes multiple IDatabaseStateChangeEvent |
| 14 | +- Improved feature: No AuthP database event change listeners will be triggered during bulk loading |
21 | 15 | </releaseNotes> |
22 | 16 | <license type="expression">MIT</license> |
23 | 17 | <projectUrl>https://github.com/JonPSmith/AuthPermissions.AspNetCore</projectUrl> |
|
46 | 40 | <dependency id="EfCore.TestSupport" version="5.2.2" /> |
47 | 41 | <dependency id="Microsoft.AspNetCore.Hosting" version="2.2.7" /> |
48 | 42 | <dependency id="Microsoft.Graph" version="4.37.0" /> |
49 | | - <dependency id="Net.DistributedFileStoreCache" version="1.0.0" /> |
| 43 | + <dependency id="Net.DistributedFileStoreCache" version="1.1.0" /> |
50 | 44 | </group> |
51 | 45 | </dependencies> |
52 | 46 | </metadata> |
|
0 commit comments