Externalbyte.QuantumIdentity.Owin30 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Externalbyte.QuantumIdentity.Owin30 --version 1.1.0
NuGet\Install-Package Externalbyte.QuantumIdentity.Owin30 -Version 1.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Externalbyte.QuantumIdentity.Owin30" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Externalbyte.QuantumIdentity.Owin30 --version 1.1.0
#r "nuget: Externalbyte.QuantumIdentity.Owin30, 1.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Externalbyte.QuantumIdentity.Owin30 as a Cake Addin
#addin nuget:?package=Externalbyte.QuantumIdentity.Owin30&version=1.1.0

// Install Externalbyte.QuantumIdentity.Owin30 as a Cake Tool
#tool nuget:?package=Externalbyte.QuantumIdentity.Owin30&version=1.1.0

Quantum Identity is an OWIN Middleware component for tracking anonymous users in ASP.Net web applications.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.0 1,727 5/17/2015
1.1.0 1,009 5/11/2015
1.0.3 1,501 4/24/2015
1.0.2 1,162 4/24/2015

Bug fixes:
     1) After authentication the anonymous cookie would not honor the ExpireTimeSpan and would be converted into a session cookie. This would cause the anonymous cookie to be deleted after all browser instances were closed causing a new cookie to be created on the next visit to the application.
     2) In certain scenarios the cookie was being sent to the client more than once per request.
     3) In certain scenarios the OnException callback would not be called for an exception.

     New feature:
     1) A new callback called ValidateIdentityAsync has been added. This callback allows for any custom validation logic to execute to determine if an anonymous identity is valid. If you are using the OnCreateUserAsync  callback to store anonymous users in a back-end system and you have a process that actively deletes stale users after a period of time then this new callback should be implemented. Return true from this callback to indicate that an anonymous identity is valid or return false to indicate that the identity is no longer located in your system and therefore invalid. When false is returned from this callback this causes a new anonymous identity to be created for the current request and the standard event lifecycle kicks in.