Releases: joaf123/ASP.NET-WebForms-Authentication
Releases · joaf123/ASP.NET-WebForms-Authentication
v2.0.2 Release
Whats changed
Changed repo licence form GNU GPL -> MIT licence to allow for inclusion in closed source projects.
Full Changelog: v2.0.1...v2.0.2
v2.0.1 Release
What's changed
- Marked
useAuthenticationasvolatileto ensure consistent flag visibility across HttpApplication instances initializing on multiple threads - Replaced bitwise
&with short-circuit&&in handler type checks
Full Changelog: v2.0.0...v2.0.1
v2.0.0 Release
What's changed
Authentication is now enabled through HttpApplication.UseAuthentication for easy enabling & disabling of auth, inspired by asp.net core
See Example Global.asax:
<%@ Application Language="VB" %>
<script RunAt="server">
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
Me.UseAuthentication()
End Sub
</script>Full Changelog: v1.5.0...v2.0.0
v1.5.0 Release
What's changed
Now supports ASP.NET WebServices (asmx)
v1.0.0 Release
What's changed
First release 🎉
Included for project transparency/history. Use the latest stable release!