ChangeLog 7.7 KB

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