ChangeLog 13 KB

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