ChangeLog 6.1 KB

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