X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web%2FSystem.Web.Security%2FChangeLog;h=1a0ca21ab6532f9f055357810146523a9e9fe7b6;hb=a5e40870bd3bb18e1681afed6c71e7edfdb80534;hp=faf9760511544610501e60eb12b7a0f5c2c61624;hpb=b8af9fa65bf6259928e48dd108dacab86778f668;p=mono.git diff --git a/mcs/class/System.Web/System.Web.Security/ChangeLog b/mcs/class/System.Web/System.Web.Security/ChangeLog index faf97605115..1a0ca21ab65 100644 --- a/mcs/class/System.Web/System.Web.Security/ChangeLog +++ b/mcs/class/System.Web/System.Web.Security/ChangeLog @@ -1,3 +1,83 @@ +2008-08-20 Marek Habersack + + * Membership.cs: implemented the HashAlgorithmType property. Fixes + bug #418458 + +2008-06-30 Marek Habersack + + * SqliteMembershipProvider.cs, SqliteRoleProvider.cs: remove + unused method + + * SqlRoleProvider.cs, AspNetDBSchemaChecker.cs: hush the warnings + +2008-05-30 Marek Habersack + + * AnonymousIdentificationModule.cs, FormsAuthenticationModule.cs, + DefaultAuthenticationModule.cs, MembershipProvider.cs, + WindowsAuthenticationModule.cs, PassportAuthenticationModule.cs, + RoleManagerModule.cs: do not use synthetized event accessors (to + avoid locks). + +2008-05-07 Marek Habersack + + * RolePrincipal.cs: fix: + - Reloading the roles cache from the provider when expired + - Update issue & expiry date for expired tickets + - Incrementing the cookie expiry date + - Obey Roles.MaxCachedResults + Fixes bug #385877. Patch from Ivan Hamilton + , thanks! + +2008-03-10 Marek Habersack + + * RoleManagerModule.cs: initialize _config before adding event + handlers and account for the fact that _config might still be null + in the methods that use it. + +2007-12-30 Vladimir Krasnov + + * SqliteMembershipProvider.cs, SqlRoleProvider.cs: added chema checking + * added AspNetDBSchemaChecker.cs: schema checker helper class + +2007-12-11 Vladimir Krasnov + + * Roles.cs: fixed Providers property to be thread safe + +2007-12-08 Marek Habersack + + * SqliteRoleProvider.cs: added - a Role Provider for + Sqlite, based on PostgreSQL Role Provider code from Daniel + Nauck + + * SqliteMembershipProvider.cs: added - a Membership Provider for + Sqlite, based on PostgreSQL Membership Provider code from Daniel + Nauck + +2007-11-28 Marek Habersack + + * SqlMembershipProvider.cs: handle situation when there is no + connection string configured for the SQL Membership Provider. + +2007-11-01 Marek Habersack + + * RolePrincipal.cs, MembershipProvider.cs: use the new + MachineKeySectionUtils class wherever necessary. + + * FormsAuthentication.cs: use the new MachineKeySectionUtils class + wherever necessary. + GetHexString is a private method again. + +2007-10-31 Marek Habersack + + * FormsAuthentication.cs: made GetHexString an internal method - + it is used in the AssemblyResourceLoader.cs + +2007-08-14 Marek Habersack + + * Roles.cs: remove unused field. + + * SqlMembershipProvider.cs: remove unused variable. + 2007-08-13 Vladimir Krasnov * SqlRoleProvider.cs: fixed ApplicationName initialization