ChangeLog 13 KB

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