ChangeLog 15 KB

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