ChangeLog 6.7 KB

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