ChangeLog 5.5 KB

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