Base solution for your next web application
Open Closed

Need help with breaking changes from 1.21 to 1.5 #2620


User avatar
0
sky created

Hi, I recently update the abp packages from 1.21 (included in the lastest aspnetzero) to 1.5.

I realised the ClaimsAbpSession constuctor has changed, from

public ClaimsAbpSession(IMultiTenancyConfig multiTenancy)
        {
           ...
        }

to

ClaimsAbpSession(
            IPrincipalAccessor principalAccessor,
            IMultiTenancyConfig multiTenancy, 
            IAmbientScopeProvider<SessionOverride> sessionOverrideScopeProvider)
            :base(multiTenancy, sessionOverrideScopeProvider)
{
    ...
}

I tried to understand, however with limited documentation, I am unable to. Could you tell me how to patch this breaking change.

Thank you.


1 Answer(s)