ChangeLog 8.3 KB

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