Skip to content

Commit 963bf8e

Browse files
authored
Merge pull request #604 from aspnetboilerplate/pr/6185
Upgrade to ABP 6.4.0-rc1
2 parents 31c1e0d + fd96f30 commit 963bf8e

File tree

13 files changed

+1971
-21
lines changed

13 files changed

+1971
-21
lines changed

aspnet-core/src/AbpCompanyName.AbpProjectName.Core/AbpCompanyName.AbpProjectName.Core.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
</ItemGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="Abp.AutoMapper" Version="6.3.0" />
22-
<PackageReference Include="Abp.ZeroCore.EntityFrameworkCore" Version="6.3.0" />
21+
<PackageReference Include="Abp.AutoMapper" Version="6.4.0-rc1" />
22+
<PackageReference Include="Abp.ZeroCore.EntityFrameworkCore" Version="6.4.0-rc1" />
2323
<PackageReference Include="Castle.Windsor.MsDependencyInjection" Version="3.3.1" />
2424
</ItemGroup>
2525

aspnet-core/src/AbpCompanyName.AbpProjectName.Core/Authorization/Users/UserClaimsPrincipalFactory.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using Microsoft.Extensions.Options;
33
using Abp.Authorization;
44
using AbpCompanyName.AbpProjectName.Authorization.Roles;
5+
using Abp.Domain.Uow;
56

67
namespace AbpCompanyName.AbpProjectName.Authorization.Users
78
{
@@ -10,11 +11,13 @@ public class UserClaimsPrincipalFactory : AbpUserClaimsPrincipalFactory<User, Ro
1011
public UserClaimsPrincipalFactory(
1112
UserManager userManager,
1213
RoleManager roleManager,
13-
IOptions<IdentityOptions> optionsAccessor)
14+
IOptions<IdentityOptions> optionsAccessor,
15+
IUnitOfWorkManager unitOfWorkManager)
1416
: base(
1517
userManager,
1618
roleManager,
17-
optionsAccessor)
19+
optionsAccessor,
20+
unitOfWorkManager)
1821
{
1922
}
2023
}

aspnet-core/src/AbpCompanyName.AbpProjectName.Core/Editions/EditionManager.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using Abp.Application.Editions;
22
using Abp.Application.Features;
33
using Abp.Domain.Repositories;
4+
using Abp.Domain.Uow;
45

56
namespace AbpCompanyName.AbpProjectName.Editions
67
{
@@ -9,11 +10,10 @@ public class EditionManager : AbpEditionManager
910
public const string DefaultEditionName = "Standard";
1011

1112
public EditionManager(
12-
IRepository<Edition> editionRepository,
13-
IAbpZeroFeatureValueStore featureValueStore)
14-
: base(
15-
editionRepository,
16-
featureValueStore)
13+
IRepository<Edition> editionRepository,
14+
IAbpZeroFeatureValueStore featureValueStore,
15+
IUnitOfWorkManager unitOfWorkManager)
16+
: base(editionRepository, featureValueStore, unitOfWorkManager)
1717
{
1818
}
1919
}

aspnet-core/src/AbpCompanyName.AbpProjectName.Core/Identity/SecurityStampValidator.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using AbpCompanyName.AbpProjectName.Authorization.Users;
77
using AbpCompanyName.AbpProjectName.MultiTenancy;
88
using Microsoft.Extensions.Logging;
9+
using Abp.Domain.Uow;
910

1011
namespace AbpCompanyName.AbpProjectName.Identity
1112
{
@@ -15,8 +16,9 @@ public SecurityStampValidator(
1516
IOptions<SecurityStampValidatorOptions> options,
1617
SignInManager signInManager,
1718
ISystemClock systemClock,
18-
ILoggerFactory loggerFactory)
19-
: base(options, signInManager, systemClock, loggerFactory)
19+
ILoggerFactory loggerFactory,
20+
IUnitOfWorkManager unitOfWorkManager)
21+
: base(options, signInManager, systemClock, loggerFactory, unitOfWorkManager)
2022
{
2123
}
2224
}

0 commit comments

Comments
 (0)