ChangeLog 5.4 KB

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