ChangeLog 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. 2005-07-01 Lluis Sanchez Gual <[email protected]>
  2. * Membership.cs: Read provider info from the config file.
  3. 2005-06-10 Lluis Sanchez Gual <[email protected]>
  4. * MembershipUserCollection.cs:
  5. * MembershipPasswordException.cs:
  6. * RoleProviderCollection.cs:
  7. * ActiveDirectoryMembershipProvider.cs:
  8. * SqlMembershipProvider.cs:
  9. * MembershipProvider.cs:
  10. * SqlRoleProvider.cs:
  11. * Membership.cs:
  12. * MembershipUser.cs:
  13. * MembershipProviderCollection.cs:
  14. * Roles.cs:.
  15. * RoleProvider.cs: Track api changes in ASP.NET 2.0. Implemented
  16. some missing methods.
  17. * AccessRoleProvider.cs:
  18. * AccessMembershipProvider.cs: Removed.
  19. * MembershipCreateUserException.cs:
  20. * MembershipValidatePasswordEventHandler.cs:
  21. * ValidatePasswordEventArgs.cs: Implemented.
  22. 2005-05-21 Sebastien Pouliot <[email protected]>
  23. * FormsAuthentication.cs: Hash the UTF8 representation of the password
  24. strings (to be compatible with Microsoft implementation).
  25. 2005-04-20 Gonzalo Paniagua Javier <[email protected]>
  26. * FormsAuthentication.cs:
  27. * PassportAuthenticationModule.cs:
  28. * WindowsAuthenticationModule.cs: removed warnings.
  29. 2005-03-11 Gonzalo Paniagua Javier <[email protected]>
  30. * FormsAuthenticationModule.cs: fix for bug 73545, which caused
  31. authentication not to work when the cookie was not persistent.
  32. Patch by Ilya Kharmatsky (Mainsoft).
  33. 2005-02-23 Gonzalo Paniagua Javier <[email protected]>
  34. * FormsAuthentication.cs: make the string to be stored in a config.
  35. file uppercase... See bug #72557.
  36. 2005-02-06 Gonzalo Paniagua Javier <[email protected]>
  37. * FormsAuthentication.cs: fixed typo when getting the hash for the
  38. password in SHA1 and MD5. Thanks to Tadas Dailyda.
  39. Lock on a static object instead of typeof(FormsAuthentication).
  40. 2004-11-18 Lluis Sanchez Gual <[email protected]>
  41. * RoleProvider.cs, Roles.cs, SqlRoleProvider.cs, RoleProviderCollection.cs,
  42. AccessRoleProvider.cs: IRoleProvider has been renamed to ProviderBase.
  43. * IMembershipProvider.cs: Deleted.
  44. * MembershipProvider.cs, AccessMembershipProvider.cs, MembershipUser.cs,
  45. Membership.cs, ADMembershipProvider.cs, SqlMembershipProvider.cs
  46. MembershipProviderCollection.cs: MembershipProvider has been deleted
  47. and replaced by the abstract class MembershipProvider.
  48. * MembershipProviderCollection.cs: Minor fixes.
  49. * ADMembershipProvider.cs: Renamed to ActiveDirectoryMembershipProvider.cs.
  50. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  51. * RoleProviderCollection.cs, MembershipProviderCollection.cs:
  52. Fixed warnings.
  53. 2004-08-23 Gonzalo Paniagua Javier <[email protected]>
  54. * FormsAuthentication.cs: patch by Jim Pease to fix the date on renewal.
  55. 2004-08-22 Gonzalo Paniagua Javier <[email protected]>
  56. * FormsAuthenticationModule.cs: don't renew expired cookies. Only renew
  57. the cookie if SlidingExpiration is set. Thanks to Jim Pease.
  58. 2004-08-03 Sanjay Gupta <[email protected]>
  59. * MembershipSortOptions.cs:
  60. * MembershipPasswordFormat.cs:
  61. * MembershipOnlineStatus.cs:
  62. * MembershipCreateStatus.cs:
  63. * CookieProtection.cs: minor modifications.
  64. 2004-06-12 Pedro Martnez Juli <[email protected]>
  65. * FormsAuthentication.cs: Undo last change.
  66. 2004-06-12 Pedro Martnez Juli <[email protected]>
  67. * FormsAuthentication.cs: go to loginUrl from web.config settings
  68. before try with the default ones.
  69. 2004-06-11 Gonzalo Paniagua Javier <[email protected]>
  70. * DefaultAuthenticationModule.cs: set the IPrincipal for this thread
  71. once we have a user. Fixes bug #59683.
  72. 2004-04-21 Gonzalo Paniagua Javier <[email protected]>
  73. * FormsAuthenticationModule.cs: re-read configuration files if needed
  74. when determining if forms auth. is used.
  75. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  76. * FormsAuthentication.cs: added RequireSSL and SlidingExpiration.
  77. 2004-01-11 Andreas Nahr <[email protected]>
  78. * PassportIdentity.cs: Added v 1.1 members
  79. 2003-11-25 Ben Maurer <[email protected]>
  80. * AccessMembershipProvider.cs: New v2 file
  81. * AccessRoleProvider.cs: New v2 file
  82. * ADMembershipProvider.cs: New v2 file
  83. * AnonymousIdentificationEventArgs.cs: New v2 file
  84. * AnonymousIdentificationEventHandler.cs: New v2 file
  85. * AnonymousIdentificationModule.cs: New v2 file
  86. * CookieProtection.cs: New v2 file
  87. * IMembershipProvider.cs: New v2 file
  88. * IRoleProvider.cs: New v2 file
  89. * Membership.cs: New v2 file
  90. * MembershipCreateStatus.cs: New v2 file
  91. * MembershipCreateUserException.cs: New v2 file
  92. * MembershipOnlineStatus.cs: New v2 file
  93. * MembershipPasswordException.cs: New v2 file
  94. * MembershipPasswordFormat.cs: New v2 file
  95. * MembershipProviderCollection.cs: New v2 file
  96. * MembershipSortOptions.cs: New v2 file
  97. * MembershipUser.cs: New v2 file
  98. * MembershipUserCollection.cs: New v2 file
  99. * RoleManagerEventArgs.cs: New v2 file
  100. * RoleManagerEventHandler.cs: New v2 file
  101. * RoleManagerModule.cs: New v2 file
  102. * RolePrincipal.cs: New v2 file
  103. * RoleProviderCollection.cs: New v2 file
  104. * Roles.cs: New v2 file
  105. * SqlMembershipProvider.cs: New v2 file
  106. * SqlRoleProvider.cs: New v2 file
  107. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  108. * FormsAuthentication.cs: encoding updates.
  109. 2003-10-04 Gonzalo Paniagua Javier <[email protected]>
  110. * FormsAuthenticationModule.cs: fixed for applications other than /.
  111. 2003-08-27 Gonzalo Paniagua Javier <[email protected]>
  112. * UrlAuthorizationModule.cs: fixed description for status code.
  113. 2003-07-31 Gonzalo Paniagua Javier <[email protected]>
  114. * FormsAuthenticationModule.cs: really renew the ticket. Thanks to
  115. Jens Thiel <[email protected]>.
  116. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  117. * UrlAuthorizationModule.cs: tell the application not to run any other
  118. step apart from EndRequest.
  119. 2003-02-12 Gonzalo Paniagua Javier <[email protected]>
  120. * FormsAuthentication.cs: implemented RedirectFromLoginPage and
  121. GetRedirectUrl.
  122. * FormsAuthenticationModule.cs: redirect to the login page when a 401
  123. error happens.
  124. * UrlAuthorizationModule.cs: check for valid user or render error page.
  125. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  126. * DefaultAuthenticationModule.cs: implemented. It just create a default
  127. unauthenticated user when no one else provided one.
  128. * FormsAuthenticationModule.cs: removed debug output.
  129. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  130. * FormsAuthenticationModule.cs: remove debug lines.
  131. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  132. * FormsAuthentication.cs: return a null ticket when an exception is
  133. thrown creating it. Implemented RenewTicketIfOld.
  134. * FormsAuthenticationModule.cs: implemented event handlers for
  135. AuthenticateRequest and EndRequest.
  136. * FormsAuthenticationTicket.cs: implemented SetDates and Clone methods.
  137. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  138. * FormsAuthentication.cs: implemented GetAuthCookie, SetAuthCookie,
  139. SignOut, FormsCookieName and FormsCookiePath.
  140. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  141. * FormsAuthentication.cs: implemented Authenticate, unencrypted Encrypt
  142. and Decrypt, HashPasswordForStoringInConfigFile and Initialize.
  143. * FormsAuthenticationTicket.cs: set cookiePath to the default when no
  144. other provided.
  145. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  146. * DefaultAuthenticationEventHandler.cs:
  147. * DefaultAuthenticationModule.cs:
  148. * FileAuthorizationModule.cs:
  149. * FormsAuthentication.cs:
  150. * FormsAuthenticationEventArgs.cs:
  151. * FormsAuthenticationEventHandler.cs:
  152. * FormsAuthenticationModule.cs:
  153. * FormsAuthenticationTicket.cs:
  154. * FormsIdentity.cs:
  155. * PassportAuthenticationEventArgs.cs:
  156. * PassportAuthenticationEventHandler.cs:
  157. * PassportAuthenticationModule.cs:
  158. * PassportIdentity.cs:
  159. * UrlAuthorizationModule.cs:
  160. * WindowsAuthenticationEventArgs.cs:
  161. * WindowsAuthenticationEventHandler.cs:
  162. * WindowsAuthenticationModule.cs: new files. Some of them implemented,
  163. some others stubbed out.
  164. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  165. * DefaultAuthenticationEventArgs.cs: added file.