ChangeLog 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. 2005-09-01 Sebastien Pouliot <[email protected]>
  2. * FormsAuthenticationEventArgs.cs: Ensure the setter for User is
  3. protected by a demand for ControlPrincipal.
  4. * PassportAuthenticationEventArgs.cs: Ensure the setter for User is
  5. protected by a demand for ControlPrincipal.
  6. * WindowsAuthenticationEventArgs.cs: Ensure the setter for User is
  7. protected by a demand for ControlPrincipal.
  8. 2005-08-25 Sebastien Pouliot <[email protected]>
  9. * FormsAuthentication.cs: With 2.0 we can get the default properties
  10. and call Initialize without a NRE.
  11. 2005-08-25 Sebastien Pouliot <[email protected]>
  12. * ActiveDirectoryConnectionProtection.cs: New (2.0) enum.
  13. * ActiveDirectoryMembershipProvider.cs: Fixed 2.0 API.
  14. * AnonymousIdentificationEventArgs.cs: Fixed AnonymousID property case.
  15. * AnonymousIdentificationModule.cs: Fixed 2.0 API.
  16. * FileAuthorizationModule.cs: Added static CheckFileAccessForUser in
  17. 2.0 profile (TODO).
  18. * FormsAuthentication.cs: Added missing 2.0 properties with their
  19. default values.
  20. * MembershipCreateStatus.cs: Fixed enum values/names.
  21. * MembershipProvider.cs: Added stub for [Decrypt|Encrypt]Password. Both
  22. methods don't seems to work without an active provider.
  23. * PassportIdentity.cs: Added IDispose for 2.0 profile.
  24. * Roles.cs: Added missing beta2 bits and default values (which are the
  25. only things working without a role provider (web.config).
  26. * RolePrincipal.cs: Fixed 2.0 API. Implemented a few bits.
  27. * SqlRoleProvider.cs: Fixed 2.0 API.
  28. * UrlAuthorizationModule.cs: Added static CheckUrlAccessForPrincipal in
  29. 2.0 profile (TODO).
  30. 2005-08-24 Sebastien Pouliot <[email protected]>
  31. * MembershipUserCollection.cs: Fix exceptions.
  32. 2005-08-22 Sebastien Pouliot <[email protected]>
  33. * FormsAuthentication.cs: Add some 2.0 stuff required for Login*
  34. controls to compile.
  35. 2005-08-18 Sebastien Pouliot <[email protected]>
  36. * Membership.cs: Commented unworking parts of the .cctor to allow
  37. testing the Login control.
  38. * MembershipProviderCollection.cs: Fixed exception handling.
  39. * SqlMembershipProvider.cs: Don't throw NotImplementedException
  40. everywhere so Membership's .cctor (somewhat) works. Removed
  41. Description property (not in beta2).
  42. 2005-07-28 Gonzalo Paniagua Javier <[email protected]>
  43. * FormsAuthentication.cs: allow hardware acceleration support if
  44. available. Sebastien dixit.
  45. 2005-07-26 Gonzalo Paniagua Javier <[email protected]>
  46. * FormsAuthentication.cs: the init_vector must be the same accross
  47. restarts, otherwise the cookie does not work even when a decryption
  48. key is provided. Initialize it to the bytes of the cookie name. Fixes
  49. bug #75635.
  50. 2005-07-25 Eyal Alaluf <[email protected]>
  51. * FormsAuthenticationModule.cs: Check for null config
  52. 2005-07-25 Miguel de Icaza <[email protected]>
  53. * FormsAuthentication.cs (SignOut): Force the cookie to have it
  54. expire in the past.
  55. 2005-07-25 Gonzalo Paniagua Javier <[email protected]>
  56. * FormsAuthentication.cs: my previous patch missed a "small" detail: it
  57. didn't include the verification key when computing/checking the
  58. validation hash. Now this is really a MAC or HMAC or...
  59. 2005-07-25 Gonzalo Paniagua Javier <[email protected]>
  60. * FormsAuthentication.cs:
  61. * FormsAuthenticationTicket.cs: added support for validation and
  62. encryption of the auth. cookie and improved serialization of the ticket.
  63. 2005-07-01 Lluis Sanchez Gual <[email protected]>
  64. * Membership.cs: Read provider info from the config file.
  65. 2005-06-10 Lluis Sanchez Gual <[email protected]>
  66. * MembershipUserCollection.cs:
  67. * MembershipPasswordException.cs:
  68. * RoleProviderCollection.cs:
  69. * ActiveDirectoryMembershipProvider.cs:
  70. * SqlMembershipProvider.cs:
  71. * MembershipProvider.cs:
  72. * SqlRoleProvider.cs:
  73. * Membership.cs:
  74. * MembershipUser.cs:
  75. * MembershipProviderCollection.cs:
  76. * Roles.cs:.
  77. * RoleProvider.cs: Track api changes in ASP.NET 2.0. Implemented
  78. some missing methods.
  79. * AccessRoleProvider.cs:
  80. * AccessMembershipProvider.cs: Removed.
  81. * MembershipCreateUserException.cs:
  82. * MembershipValidatePasswordEventHandler.cs:
  83. * ValidatePasswordEventArgs.cs: Implemented.
  84. 2005-05-21 Sebastien Pouliot <[email protected]>
  85. * FormsAuthentication.cs: Hash the UTF8 representation of the password
  86. strings (to be compatible with Microsoft implementation).
  87. 2005-04-20 Gonzalo Paniagua Javier <[email protected]>
  88. * FormsAuthentication.cs:
  89. * PassportAuthenticationModule.cs:
  90. * WindowsAuthenticationModule.cs: removed warnings.
  91. 2005-03-11 Gonzalo Paniagua Javier <[email protected]>
  92. * FormsAuthenticationModule.cs: fix for bug 73545, which caused
  93. authentication not to work when the cookie was not persistent.
  94. Patch by Ilya Kharmatsky (Mainsoft).
  95. 2005-02-23 Gonzalo Paniagua Javier <[email protected]>
  96. * FormsAuthentication.cs: make the string to be stored in a config.
  97. file uppercase... See bug #72557.
  98. 2005-02-06 Gonzalo Paniagua Javier <[email protected]>
  99. * FormsAuthentication.cs: fixed typo when getting the hash for the
  100. password in SHA1 and MD5. Thanks to Tadas Dailyda.
  101. Lock on a static object instead of typeof(FormsAuthentication).
  102. 2004-11-18 Lluis Sanchez Gual <[email protected]>
  103. * RoleProvider.cs, Roles.cs, SqlRoleProvider.cs, RoleProviderCollection.cs,
  104. AccessRoleProvider.cs: IRoleProvider has been renamed to ProviderBase.
  105. * IMembershipProvider.cs: Deleted.
  106. * MembershipProvider.cs, AccessMembershipProvider.cs, MembershipUser.cs,
  107. Membership.cs, ADMembershipProvider.cs, SqlMembershipProvider.cs
  108. MembershipProviderCollection.cs: MembershipProvider has been deleted
  109. and replaced by the abstract class MembershipProvider.
  110. * MembershipProviderCollection.cs: Minor fixes.
  111. * ADMembershipProvider.cs: Renamed to ActiveDirectoryMembershipProvider.cs.
  112. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  113. * RoleProviderCollection.cs, MembershipProviderCollection.cs:
  114. Fixed warnings.
  115. 2004-08-23 Gonzalo Paniagua Javier <[email protected]>
  116. * FormsAuthentication.cs: patch by Jim Pease to fix the date on renewal.
  117. 2004-08-22 Gonzalo Paniagua Javier <[email protected]>
  118. * FormsAuthenticationModule.cs: don't renew expired cookies. Only renew
  119. the cookie if SlidingExpiration is set. Thanks to Jim Pease.
  120. 2004-08-03 Sanjay Gupta <[email protected]>
  121. * MembershipSortOptions.cs:
  122. * MembershipPasswordFormat.cs:
  123. * MembershipOnlineStatus.cs:
  124. * MembershipCreateStatus.cs:
  125. * CookieProtection.cs: minor modifications.
  126. 2004-06-12 Pedro Martnez Juli <[email protected]>
  127. * FormsAuthentication.cs: Undo last change.
  128. 2004-06-12 Pedro Martnez Juli <[email protected]>
  129. * FormsAuthentication.cs: go to loginUrl from web.config settings
  130. before try with the default ones.
  131. 2004-06-11 Gonzalo Paniagua Javier <[email protected]>
  132. * DefaultAuthenticationModule.cs: set the IPrincipal for this thread
  133. once we have a user. Fixes bug #59683.
  134. 2004-04-21 Gonzalo Paniagua Javier <[email protected]>
  135. * FormsAuthenticationModule.cs: re-read configuration files if needed
  136. when determining if forms auth. is used.
  137. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  138. * FormsAuthentication.cs: added RequireSSL and SlidingExpiration.
  139. 2004-01-11 Andreas Nahr <[email protected]>
  140. * PassportIdentity.cs: Added v 1.1 members
  141. 2003-11-25 Ben Maurer <[email protected]>
  142. * AccessMembershipProvider.cs: New v2 file
  143. * AccessRoleProvider.cs: New v2 file
  144. * ADMembershipProvider.cs: New v2 file
  145. * AnonymousIdentificationEventArgs.cs: New v2 file
  146. * AnonymousIdentificationEventHandler.cs: New v2 file
  147. * AnonymousIdentificationModule.cs: New v2 file
  148. * CookieProtection.cs: New v2 file
  149. * IMembershipProvider.cs: New v2 file
  150. * IRoleProvider.cs: New v2 file
  151. * Membership.cs: New v2 file
  152. * MembershipCreateStatus.cs: New v2 file
  153. * MembershipCreateUserException.cs: New v2 file
  154. * MembershipOnlineStatus.cs: New v2 file
  155. * MembershipPasswordException.cs: New v2 file
  156. * MembershipPasswordFormat.cs: New v2 file
  157. * MembershipProviderCollection.cs: New v2 file
  158. * MembershipSortOptions.cs: New v2 file
  159. * MembershipUser.cs: New v2 file
  160. * MembershipUserCollection.cs: New v2 file
  161. * RoleManagerEventArgs.cs: New v2 file
  162. * RoleManagerEventHandler.cs: New v2 file
  163. * RoleManagerModule.cs: New v2 file
  164. * RolePrincipal.cs: New v2 file
  165. * RoleProviderCollection.cs: New v2 file
  166. * Roles.cs: New v2 file
  167. * SqlMembershipProvider.cs: New v2 file
  168. * SqlRoleProvider.cs: New v2 file
  169. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  170. * FormsAuthentication.cs: encoding updates.
  171. 2003-10-04 Gonzalo Paniagua Javier <[email protected]>
  172. * FormsAuthenticationModule.cs: fixed for applications other than /.
  173. 2003-08-27 Gonzalo Paniagua Javier <[email protected]>
  174. * UrlAuthorizationModule.cs: fixed description for status code.
  175. 2003-07-31 Gonzalo Paniagua Javier <[email protected]>
  176. * FormsAuthenticationModule.cs: really renew the ticket. Thanks to
  177. Jens Thiel <[email protected]>.
  178. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  179. * UrlAuthorizationModule.cs: tell the application not to run any other
  180. step apart from EndRequest.
  181. 2003-02-12 Gonzalo Paniagua Javier <[email protected]>
  182. * FormsAuthentication.cs: implemented RedirectFromLoginPage and
  183. GetRedirectUrl.
  184. * FormsAuthenticationModule.cs: redirect to the login page when a 401
  185. error happens.
  186. * UrlAuthorizationModule.cs: check for valid user or render error page.
  187. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  188. * DefaultAuthenticationModule.cs: implemented. It just create a default
  189. unauthenticated user when no one else provided one.
  190. * FormsAuthenticationModule.cs: removed debug output.
  191. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  192. * FormsAuthenticationModule.cs: remove debug lines.
  193. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  194. * FormsAuthentication.cs: return a null ticket when an exception is
  195. thrown creating it. Implemented RenewTicketIfOld.
  196. * FormsAuthenticationModule.cs: implemented event handlers for
  197. AuthenticateRequest and EndRequest.
  198. * FormsAuthenticationTicket.cs: implemented SetDates and Clone methods.
  199. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  200. * FormsAuthentication.cs: implemented GetAuthCookie, SetAuthCookie,
  201. SignOut, FormsCookieName and FormsCookiePath.
  202. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  203. * FormsAuthentication.cs: implemented Authenticate, unencrypted Encrypt
  204. and Decrypt, HashPasswordForStoringInConfigFile and Initialize.
  205. * FormsAuthenticationTicket.cs: set cookiePath to the default when no
  206. other provided.
  207. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  208. * DefaultAuthenticationEventHandler.cs:
  209. * DefaultAuthenticationModule.cs:
  210. * FileAuthorizationModule.cs:
  211. * FormsAuthentication.cs:
  212. * FormsAuthenticationEventArgs.cs:
  213. * FormsAuthenticationEventHandler.cs:
  214. * FormsAuthenticationModule.cs:
  215. * FormsAuthenticationTicket.cs:
  216. * FormsIdentity.cs:
  217. * PassportAuthenticationEventArgs.cs:
  218. * PassportAuthenticationEventHandler.cs:
  219. * PassportAuthenticationModule.cs:
  220. * PassportIdentity.cs:
  221. * UrlAuthorizationModule.cs:
  222. * WindowsAuthenticationEventArgs.cs:
  223. * WindowsAuthenticationEventHandler.cs:
  224. * WindowsAuthenticationModule.cs: new files. Some of them implemented,
  225. some others stubbed out.
  226. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  227. * DefaultAuthenticationEventArgs.cs: added file.