Tried to update to 5.10 today, and a breaking change was introduced that I’m not sure how to fix. The method GenerateNewSessionCookies on IRequest no longer exists. I was calling it as part of AuthUserSession.OnCreated, to fix a problem I have with Okta auth.
public class DVAuthUserSession : AuthUserSession
{
public int SomeProperty { get; set; }
public override void OnCreated(IRequest httpReq)
{
httpReq.AddSessionOptions(SessionOptions.Permanent);
httpReq.GenerateNewSessionCookies(this);
base.OnCreated(httpReq);
}
}