ChangeLog 13 KB

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