ChangeLog 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740
  1. 2007-03-21 Vladimir Krasnov <[email protected]>
  2. * AnonymousIdentificationModule.cs: optimized Config property
  3. 2007-03-21 Vladimir Krasnov <[email protected]>
  4. * AnonymousIdentificationModule.cs: added configuration section caching
  5. to AppDomain for TARGET_JVM
  6. * RoleManagerModule.cs:
  7. * UrlAuthorizationModule.cs:
  8. * FormsAuthenticationModule.cs: refactored configuration section to be
  9. a member of a class
  10. 2007-03-20 Marek Habersack <[email protected]>
  11. * FormsAuthentication.cs, Roles.cs: remove roles cookie on sign
  12. out. Fixes bug #81195. Patch from Mike Morano <[email protected]>.
  13. 2007-03-12 Marek Habersack <[email protected]>
  14. * RolePrincipal.cs: decrypt the roles ticket properly. Makes role
  15. caching in cookies work. Fixes bug #81117. Patch from Mike Morano
  16. <[email protected]>
  17. 2007-03-02 Marek Habersack <[email protected]>
  18. * SqlMembershipProvider.cs: cast PasswordFormat to int, so that
  19. the parameter code can infer the sql type. Makes user creation,
  20. password reset etc. work.
  21. 2007-02-28 Andreia Gaita <[email protected]>
  22. * SqlRoleProvider.cs: Fix parameter binding to stored procedures.
  23. * SqlMembershipProvider.cs: Fix parameter binding to stored procedures.
  24. CreateUser() doesn't use transactions in MS asp.net, so removed the
  25. transaction calls.
  26. 2007-02-19 Vladimir Krasnov <[email protected]>
  27. * RoleManagerModule.cs: fixed role chaching in OnEndRequest and
  28. OnPostAuthenticateRequest
  29. * RolePrincipal.cs: implemented ToEncryptedTicket, implemented caching
  30. role functionality
  31. * Roles.cs: implemented DeleteCookie, fixed CookieProtectionValue to
  32. get it's value from configuration
  33. 2007-02-08 Marek Habersack <[email protected]>
  34. * FormsAuthenticationModule.cs: Expire auth tickets properly.
  35. * MembershipProvider.cs: Do not clear the password before
  36. encrypting it.
  37. 2007-01-20 Miguel de Icaza <[email protected]>
  38. * SqlRoleProvider.cs: comment out unused code.
  39. * SqlMembershipProvider.cs: Removed unused variables.
  40. Remove unused variable.
  41. * AnonymousIdentificationModule.cs (ClearAnonymousIdentifier):
  42. remove unused variable. This might be a real bug.
  43. 2007-01-16 Vladimir Krasnov <[email protected]>
  44. * RoleManagerModule.cs: fixed OnPostAuthenticateRequest,
  45. CacheRolesInCookie not supported yet
  46. * Roles.cs: fixed DeleteCookie, CacheRolesInCookie not supported yet
  47. 2007-01-11 Adar Wesley <[email protected]>
  48. * MembershipProvider.cs: fixed EncryptPassword to use password buffer length
  49. 2007-01-04 Vladimir Krasnov <[email protected]>
  50. * AnonymousIdentificationModule.cs: fixed OnEnter, fixed failure on
  51. incorrect cookie value that browser may hold
  52. 2006-12-27 Vladimir Krasnov <[email protected]>
  53. * FormsAuthentication.cs: added internal ReturnUrl property,
  54. GetRedirectUrl added usage of ReturnUrl
  55. 2006-12-12 Vladimir Krasnov <[email protected]>
  56. * FormsAuthentication.cs: TARGET_J2EE define for static members
  57. 2006-12-06 Vladimir Krasnov <[email protected]>
  58. * FormsAuthenticationModule.cs: fixed OnAuthenticateRequest, suppress
  59. exception on wrong ticket
  60. 2006-12-03 Igor Zelmanovich <[email protected]>
  61. * FormsAuthenticationModule.cs:
  62. set SkipAuthorization=true for WebResource.axd
  63. 2006-11-27 Vladimir Krasnov <[email protected]>
  64. * SqlMembershipProvider.cs: typo bug
  65. 2006-11-21 Vladimir Krasnov <[email protected]>
  66. * SqlMembershipProvider.cs: fixed fixed exception type in GetPassword
  67. checks user lockout
  68. 2006-11-20 Igor Zelmanovich <[email protected]>
  69. * SqlMembershipProvider.cs: fixed: UpdateUser works properly.
  70. 2006-11-15 Igor Zelmanovich <[email protected]>
  71. * SqlMembershipProvider.cs: fixed: name is used for ReturnValue parameter.
  72. 2006-11-05 Vladimir Krasnov <[email protected]>
  73. * AnonymousIdentificationModule.cs: fixed anonymous id cookie
  74. 2006-11-05 Vladimir Krasnov <[email protected]>
  75. * MembershipProvider.cs, SqlMembershipProvider.cs:
  76. refactoring of DecryptPassword and EncryptPassword methods according
  77. to documentation
  78. 2006-09-10 Konstantin Triger <[email protected]>
  79. * SqlRoleProvider.cs: throw on empty connection string.
  80. 2006-09-26 Vladimir Krasnov <[email protected]>
  81. * Membership.cs: fixed GetAllUsers, typo bug
  82. * SqlRoleProvider.cs, SqlMembershipProvider.cs: refactored to use
  83. aspnetdb built in stored procedures,
  84. fixed application name and membership relation,
  85. improved exception handling
  86. 2006-09-03 Igor Zelmanovich <[email protected]>
  87. * RolePrincipal.cs: refactoring: instance can be serialized.
  88. 2006-09-03 Igor Zelmanovich <[email protected]>
  89. * SqlMembershipProvider.cs: fixed GetUser,
  90. when username is String.Empty methods returns null.
  91. 2006-08-31 Konstantin Triger <[email protected]>
  92. * SqlRoleProvider.cs: fixed initialization.
  93. 2006-08-31 Igor Zelmanovich <[email protected]>
  94. * SqlMembershipProvider.cs: fixed CreateUser,
  95. password is checked, properties MinRequiredPasswordLength and
  96. MinRequiredNonAlphanumericCharacters are considered.
  97. 2006-08-29 Konstantin Triger <[email protected]>
  98. * SqlMembershipProvider.cs: fix dispose order of reader vs connection.
  99. 2006-08-28 Igor Zelmanovich <[email protected]>
  100. * SqlMembershipProvider.cs: fixed CreateUser, parameter isApproved is
  101. considered.
  102. 2006-08-28 Konstantin Triger <[email protected]>
  103. * SqlMembershipProvider.cs: ensure GetUser() returns null if it cannot
  104. retrieve user information.
  105. 2006-08-28 Konstantin Triger <[email protected]>
  106. * SqlRoleProvider.cs, SqlMembershipProvider.cs:
  107. "use SqlClientFactory in case the ProviderName is not specified.
  108. 2006-08-27 Konstantin Triger <[email protected]>
  109. * SqlRoleProvider.cs: enable concurrent usage, refactoring.
  110. 2006-08-27 Konstantin Triger <[email protected]>
  111. * SqlMembershipProvider.cs: enable concurrent usage, refactoring.
  112. 2006-08-27 Vladimir Krasnov <[email protected]>
  113. * SqlMembershipProvider.cs: fixed ValidateUser, bug when user
  114. not exists
  115. 2006-08-14 Gonzalo Paniagua Javier <[email protected]>
  116. * FormsAuthentication.cs: set the Secure attribute of the authentication
  117. cookie when required.
  118. 2006-07-06 Konstantin Triger <[email protected]>
  119. * FormsAuthentication.cs: Ensure initialized, fix url mapping.
  120. 2006-05-03 Chris Toshok <[email protected]>
  121. * SqlMembershipProvider.cs (GetAlg): move this here for the time
  122. being, as it's the only class that uses it.
  123. (HashAndBase64Encode): nuke.
  124. (EncryptAndBase64Encode): nuke.
  125. (Base64DecodeAndDecrypt): nuke.
  126. (DecryptPassword): new function.
  127. (EncryptPassword): new function.
  128. (ChangePassword): replace the switch with a call to
  129. EncodePassword.
  130. (ChangePasswordQuestionAndAnswer): same.
  131. (CreateUser): same.
  132. (ResetPassword): same.
  133. (ValidateUsingPassword): same.
  134. (ValidateUsingPasswordAnswer): same.
  135. (GetPassword): same, and throw MembershipPasswordException if the
  136. password answer is incorrect.
  137. * MembershipProvider.cs (InitVector): nuke this. it's actually
  138. the salt from the database (for the sql provider, anyway).
  139. (EncodePassword): based on the password format, password, and
  140. salt, encode it. Makes use of EncryptPassword.
  141. (DecodePassword): likewise for decoding, makes use of
  142. DecryptPassword.
  143. (DecryptPassword): revert this to throwing
  144. NotImplementedException, as the sql provideroverrides it to
  145. perform the actual decryption.
  146. (EncryptPassword): same.
  147. 2006-05-02 Chris Toshok <[email protected]>
  148. * SqlMembershipProvider.cs: 85% complete, maybe more. The major
  149. functionality should work. Password retrieval (and encrypted
  150. passwords in general) is untested.
  151. 2006-05-01 Chris Toshok <[email protected]>
  152. * Membership.cs (GeneratePassword): don't include quotes (',",`)
  153. in the set of characters in the generated passwords.
  154. 2006-05-01 Chris Toshok <[email protected]>
  155. * MembershipProvider.cs (GetAlg): switch from Exception to
  156. ProviderException to match MS behavior (and fix the unit test.)
  157. * Membership.cs (GeneratePassword): implement.
  158. 2006-05-01 Chris Toshok <[email protected]>
  159. * SqlMembershipProvider.cs: lots more work. checking this in in
  160. its present state because I don't want to lose it. It still needs
  161. work.
  162. * Membership.cs (.cctor): remove the fallback.
  163. (ValidatingPassword): remove the MonoTODO.
  164. * MembershipProvider.cs (DecryptPassword): implement.
  165. (EncryptPassword): implement.
  166. (GetAlg): helper function for Decrypt/EncryptPassword.
  167. (InitVector): same.
  168. 2006-04-27 Chris Toshok <[email protected]>
  169. * SqlMembershipProvider.cs (GeneratePassword): call
  170. Membership.GeneratePassword with the configured minimum strength
  171. requirements.
  172. 2006-04-27 Chris Toshok <[email protected]>
  173. * SqlMembershipProvider.cs (UnlockUser): fix sql query, and move
  174. the CheckPararm call to the top of the method.
  175. 2006-04-12 Chris Toshok <[email protected]>
  176. * SqlMembershipProvider.cs: commit initial pass at
  177. SqlMembershipProvider work. lots of stuff untested in here.
  178. 2006-04-11 Chris Toshok <[email protected]>
  179. * MembershipUser.cs (.ctor): per Shackow's book, all DateTime's
  180. are converted using ToUniversalTime when passed into this class.
  181. (UpdateSelf): update ourselves from the passed in MembershipUser,
  182. swallowing NotSupportedExceptions.
  183. (UpdateUser): fetch a new MembershipUser from the db and call
  184. UpdateSelf with it.
  185. (ChangePassword): call UpdateUser after changing the password.
  186. (ChangePasswordQuestionAndAnswer): same.
  187. (ResetPassword): same.
  188. (UnlockUser): same. Also, don't explicitly set isLockedOut.
  189. It'll be updated in UpdateSelf.
  190. (CreationDate): getter calls ToLocalTime, setter calls
  191. ToUniversalTime.
  192. (LastActivityDate): same.
  193. (LastLoginDate): same.
  194. (LastPasswordChangedDate): same.
  195. (LastLockoutDate): same.
  196. * Membership.cs (.cctor): use
  197. ProvidersHelper.InstantitateProviders, and remove some unnecessary
  198. #if NET_2_0's.
  199. 2006-03-29 Chris Toshok <[email protected]>
  200. * SqlRoleProvider.cs: do the LOWER's in SQL, not in C#.
  201. 2006-03-23 Chris Toshok <[email protected]>
  202. * Roles.cs: make this 2.0 configuration aware.
  203. * SqlRoleProvider.cs: flesh out all the operations. the only
  204. things that need dealing with are the Initialize method's handling
  205. of a few parameters, and the ApplicationName property.
  206. 2006-03-23 Chris Toshok <[email protected]>
  207. * DefaultAuthenticationModule.cs (OnDefaultAuthentication): always
  208. set Thread.CurrentPrincipal, not just if we set it to the
  209. GenericPrincipal.
  210. 2006-03-22 Chris Toshok <[email protected]>
  211. * RoleManagerModule.cs: implement using info in Shackow's book.
  212. * RolePrincipal.cs: flesh this out a bit more.
  213. * DefaultAuthenticationModule.cs (OnDefaultAuthentication):
  214. according to Shackow's book, this sets Thread.CurrentPrincipal as
  215. well as HttpContext.Current.User.
  216. 2006-02-28 Chris Toshok <[email protected]>
  217. * FormsAuthentication.cs: corcompare work.
  218. * MembershipCreateUserException.cs: same.
  219. * MembershipPasswordException.cs: same.
  220. * AnonymousIdentificationModule.cs: same.
  221. 2006-02-01 Chris Toshok <[email protected]>
  222. * FormsAuthentication.cs, Membership.cs,
  223. FormsAuthenticationModule.cs, UrlAuthorizationModule.cs: oops,
  224. replace GetWebApplicationSection with GetSection.
  225. 2006-02-01 Chris Toshok <[email protected]>
  226. * FormsAuthentication.cs: CONFIGURATION_2_0 => NET_2_0.
  227. simplifies the ifdef mess quite a bit.
  228. * Membership.cs: same.
  229. * FormsAuthenticationModule.cs: same.
  230. * UrlAuthorizationModule.cs: same.
  231. 2006-01-04 Chris Toshok <[email protected]>
  232. * FormsAuthentication.cs (Authenticate): add CONFIGURATION_2_0
  233. code.
  234. (Decrypt2): same.
  235. (Decrypt): same.
  236. (Encrypt): same.
  237. (Initialize): same.
  238. 2006-01-04 Chris Toshok <[email protected]>
  239. * Membership.cs (.cctor): enable the code here under
  240. CONFIGURATION_2_0.
  241. 2006-01-03 Chris Toshok <[email protected]>
  242. * UrlAuthorizationModule.cs (OnAuthorizeRequest): add
  243. CONFIGURATION_2_0 code here.
  244. 2005-12-22 Gonzalo Paniagua Javier <[email protected]>
  245. * FormsAuthentication.cs: don't end the request in
  246. RedirectFromLoginPage.
  247. 2005-12-22 Gonzalo Paniagua Javier <[email protected]>
  248. * FormsAuthenticationModule.cs: expire the cookie. Fixes bug #77043.
  249. Patch by Cyrille Colin.
  250. 2005-12-13 Gonzalo Paniagua Javier <[email protected]>
  251. * FormsAuthenticationModule.cs: ignore any exception thrown when mapping
  252. the provided virtual path to the physical one. Patch by Cyrille Colin.
  253. 2005-11-28 Chris Toshok <[email protected]>
  254. * FormsAuthenticationModule.cs (OnAuthenticateRequest):
  255. CONFIGURATION_2_0 work.
  256. (OnEndRequest): same.
  257. 2005-09-09 Sebastien Pouliot <[email protected]>
  258. * DefaultAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
  259. * DefaultAuthenticationModule.cs: Added LinkDemand for Minimal. Added
  260. Demand for UnmanagedCode on constructor.
  261. * FileAuthorizationModule.cs: Added LinkDemand for Minimal. Added
  262. Demand for UnmanagedCode on constructor.
  263. * FormsAuthentication.cs: Added LinkDemand for Minimal.
  264. * FormsAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
  265. * FormsAuthenticationModule.cs: Added LinkDemand for Minimal. Added
  266. Demand for UnmanagedCode on constructor.
  267. * FormsAuthenticationTicket.cs: Added LinkDemand for Minimal.
  268. * FormsIdentity.cs: Added LinkDemand for Minimal.
  269. * PassportAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
  270. * PassportAuthenticationModule.cs: Added LinkDemand for Minimal. Added
  271. Demand for UnmanagedCode on constructor.
  272. * PassportIdentity.cs: Added LinkDemand for Minimal. Added Demand for
  273. UnmanagedCode on constructor.
  274. * UrlAuthorizationModule.cs: Added LinkDemand for Minimal. Added
  275. Demand for UnmanagedCode on constructor.
  276. * WindowsAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
  277. * WindowsAuthenticationModule.cs: Added LinkDemand for Minimal. Added
  278. Demand for UnmanagedCode on constructor.
  279. 2005-09-01 Sebastien Pouliot <[email protected]>
  280. * FormsAuthenticationEventArgs.cs: Ensure the setter for User is
  281. protected by a demand for ControlPrincipal.
  282. * PassportAuthenticationEventArgs.cs: Ensure the setter for User is
  283. protected by a demand for ControlPrincipal.
  284. * WindowsAuthenticationEventArgs.cs: Ensure the setter for User is
  285. protected by a demand for ControlPrincipal.
  286. 2005-08-25 Sebastien Pouliot <[email protected]>
  287. * FormsAuthentication.cs: With 2.0 we can get the default properties
  288. and call Initialize without a NRE.
  289. 2005-08-25 Sebastien Pouliot <[email protected]>
  290. * ActiveDirectoryConnectionProtection.cs: New (2.0) enum.
  291. * ActiveDirectoryMembershipProvider.cs: Fixed 2.0 API.
  292. * AnonymousIdentificationEventArgs.cs: Fixed AnonymousID property case.
  293. * AnonymousIdentificationModule.cs: Fixed 2.0 API.
  294. * FileAuthorizationModule.cs: Added static CheckFileAccessForUser in
  295. 2.0 profile (TODO).
  296. * FormsAuthentication.cs: Added missing 2.0 properties with their
  297. default values.
  298. * MembershipCreateStatus.cs: Fixed enum values/names.
  299. * MembershipProvider.cs: Added stub for [Decrypt|Encrypt]Password. Both
  300. methods don't seems to work without an active provider.
  301. * PassportIdentity.cs: Added IDispose for 2.0 profile.
  302. * Roles.cs: Added missing beta2 bits and default values (which are the
  303. only things working without a role provider (web.config).
  304. * RolePrincipal.cs: Fixed 2.0 API. Implemented a few bits.
  305. * SqlRoleProvider.cs: Fixed 2.0 API.
  306. * UrlAuthorizationModule.cs: Added static CheckUrlAccessForPrincipal in
  307. 2.0 profile (TODO).
  308. 2005-08-24 Sebastien Pouliot <[email protected]>
  309. * MembershipUserCollection.cs: Fix exceptions.
  310. 2005-08-22 Sebastien Pouliot <[email protected]>
  311. * FormsAuthentication.cs: Add some 2.0 stuff required for Login*
  312. controls to compile.
  313. 2005-08-18 Sebastien Pouliot <[email protected]>
  314. * Membership.cs: Commented unworking parts of the .cctor to allow
  315. testing the Login control.
  316. * MembershipProviderCollection.cs: Fixed exception handling.
  317. * SqlMembershipProvider.cs: Don't throw NotImplementedException
  318. everywhere so Membership's .cctor (somewhat) works. Removed
  319. Description property (not in beta2).
  320. 2005-07-28 Gonzalo Paniagua Javier <[email protected]>
  321. * FormsAuthentication.cs: allow hardware acceleration support if
  322. available. Sebastien dixit.
  323. 2005-07-26 Gonzalo Paniagua Javier <[email protected]>
  324. * FormsAuthentication.cs: the init_vector must be the same accross
  325. restarts, otherwise the cookie does not work even when a decryption
  326. key is provided. Initialize it to the bytes of the cookie name. Fixes
  327. bug #75635.
  328. 2005-07-25 Eyal Alaluf <[email protected]>
  329. * FormsAuthenticationModule.cs: Check for null config
  330. 2005-07-25 Miguel de Icaza <[email protected]>
  331. * FormsAuthentication.cs (SignOut): Force the cookie to have it
  332. expire in the past.
  333. 2005-07-25 Gonzalo Paniagua Javier <[email protected]>
  334. * FormsAuthentication.cs: my previous patch missed a "small" detail: it
  335. didn't include the verification key when computing/checking the
  336. validation hash. Now this is really a MAC or HMAC or...
  337. 2005-07-25 Gonzalo Paniagua Javier <[email protected]>
  338. * FormsAuthentication.cs:
  339. * FormsAuthenticationTicket.cs: added support for validation and
  340. encryption of the auth. cookie and improved serialization of the ticket.
  341. 2005-07-01 Lluis Sanchez Gual <[email protected]>
  342. * Membership.cs: Read provider info from the config file.
  343. 2005-06-10 Lluis Sanchez Gual <[email protected]>
  344. * MembershipUserCollection.cs:
  345. * MembershipPasswordException.cs:
  346. * RoleProviderCollection.cs:
  347. * ActiveDirectoryMembershipProvider.cs:
  348. * SqlMembershipProvider.cs:
  349. * MembershipProvider.cs:
  350. * SqlRoleProvider.cs:
  351. * Membership.cs:
  352. * MembershipUser.cs:
  353. * MembershipProviderCollection.cs:
  354. * Roles.cs:.
  355. * RoleProvider.cs: Track api changes in ASP.NET 2.0. Implemented
  356. some missing methods.
  357. * AccessRoleProvider.cs:
  358. * AccessMembershipProvider.cs: Removed.
  359. * MembershipCreateUserException.cs:
  360. * MembershipValidatePasswordEventHandler.cs:
  361. * ValidatePasswordEventArgs.cs: Implemented.
  362. 2005-05-21 Sebastien Pouliot <[email protected]>
  363. * FormsAuthentication.cs: Hash the UTF8 representation of the password
  364. strings (to be compatible with Microsoft implementation).
  365. 2005-04-20 Gonzalo Paniagua Javier <[email protected]>
  366. * FormsAuthentication.cs:
  367. * PassportAuthenticationModule.cs:
  368. * WindowsAuthenticationModule.cs: removed warnings.
  369. 2005-03-11 Gonzalo Paniagua Javier <[email protected]>
  370. * FormsAuthenticationModule.cs: fix for bug 73545, which caused
  371. authentication not to work when the cookie was not persistent.
  372. Patch by Ilya Kharmatsky (Mainsoft).
  373. 2005-02-23 Gonzalo Paniagua Javier <[email protected]>
  374. * FormsAuthentication.cs: make the string to be stored in a config.
  375. file uppercase... See bug #72557.
  376. 2005-02-06 Gonzalo Paniagua Javier <[email protected]>
  377. * FormsAuthentication.cs: fixed typo when getting the hash for the
  378. password in SHA1 and MD5. Thanks to Tadas Dailyda.
  379. Lock on a static object instead of typeof(FormsAuthentication).
  380. 2004-11-18 Lluis Sanchez Gual <[email protected]>
  381. * RoleProvider.cs, Roles.cs, SqlRoleProvider.cs, RoleProviderCollection.cs,
  382. AccessRoleProvider.cs: IRoleProvider has been renamed to ProviderBase.
  383. * IMembershipProvider.cs: Deleted.
  384. * MembershipProvider.cs, AccessMembershipProvider.cs, MembershipUser.cs,
  385. Membership.cs, ADMembershipProvider.cs, SqlMembershipProvider.cs
  386. MembershipProviderCollection.cs: MembershipProvider has been deleted
  387. and replaced by the abstract class MembershipProvider.
  388. * MembershipProviderCollection.cs: Minor fixes.
  389. * ADMembershipProvider.cs: Renamed to ActiveDirectoryMembershipProvider.cs.
  390. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  391. * RoleProviderCollection.cs, MembershipProviderCollection.cs:
  392. Fixed warnings.
  393. 2004-08-23 Gonzalo Paniagua Javier <[email protected]>
  394. * FormsAuthentication.cs: patch by Jim Pease to fix the date on renewal.
  395. 2004-08-22 Gonzalo Paniagua Javier <[email protected]>
  396. * FormsAuthenticationModule.cs: don't renew expired cookies. Only renew
  397. the cookie if SlidingExpiration is set. Thanks to Jim Pease.
  398. 2004-08-03 Sanjay Gupta <[email protected]>
  399. * MembershipSortOptions.cs:
  400. * MembershipPasswordFormat.cs:
  401. * MembershipOnlineStatus.cs:
  402. * MembershipCreateStatus.cs:
  403. * CookieProtection.cs: minor modifications.
  404. 2004-06-12 Pedro Martnez Juli <[email protected]>
  405. * FormsAuthentication.cs: Undo last change.
  406. 2004-06-12 Pedro Martnez Juli <[email protected]>
  407. * FormsAuthentication.cs: go to loginUrl from web.config settings
  408. before try with the default ones.
  409. 2004-06-11 Gonzalo Paniagua Javier <[email protected]>
  410. * DefaultAuthenticationModule.cs: set the IPrincipal for this thread
  411. once we have a user. Fixes bug #59683.
  412. 2004-04-21 Gonzalo Paniagua Javier <[email protected]>
  413. * FormsAuthenticationModule.cs: re-read configuration files if needed
  414. when determining if forms auth. is used.
  415. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  416. * FormsAuthentication.cs: added RequireSSL and SlidingExpiration.
  417. 2004-01-11 Andreas Nahr <[email protected]>
  418. * PassportIdentity.cs: Added v 1.1 members
  419. 2003-11-25 Ben Maurer <[email protected]>
  420. * AccessMembershipProvider.cs: New v2 file
  421. * AccessRoleProvider.cs: New v2 file
  422. * ADMembershipProvider.cs: New v2 file
  423. * AnonymousIdentificationEventArgs.cs: New v2 file
  424. * AnonymousIdentificationEventHandler.cs: New v2 file
  425. * AnonymousIdentificationModule.cs: New v2 file
  426. * CookieProtection.cs: New v2 file
  427. * IMembershipProvider.cs: New v2 file
  428. * IRoleProvider.cs: New v2 file
  429. * Membership.cs: New v2 file
  430. * MembershipCreateStatus.cs: New v2 file
  431. * MembershipCreateUserException.cs: New v2 file
  432. * MembershipOnlineStatus.cs: New v2 file
  433. * MembershipPasswordException.cs: New v2 file
  434. * MembershipPasswordFormat.cs: New v2 file
  435. * MembershipProviderCollection.cs: New v2 file
  436. * MembershipSortOptions.cs: New v2 file
  437. * MembershipUser.cs: New v2 file
  438. * MembershipUserCollection.cs: New v2 file
  439. * RoleManagerEventArgs.cs: New v2 file
  440. * RoleManagerEventHandler.cs: New v2 file
  441. * RoleManagerModule.cs: New v2 file
  442. * RolePrincipal.cs: New v2 file
  443. * RoleProviderCollection.cs: New v2 file
  444. * Roles.cs: New v2 file
  445. * SqlMembershipProvider.cs: New v2 file
  446. * SqlRoleProvider.cs: New v2 file
  447. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  448. * FormsAuthentication.cs: encoding updates.
  449. 2003-10-04 Gonzalo Paniagua Javier <[email protected]>
  450. * FormsAuthenticationModule.cs: fixed for applications other than /.
  451. 2003-08-27 Gonzalo Paniagua Javier <[email protected]>
  452. * UrlAuthorizationModule.cs: fixed description for status code.
  453. 2003-07-31 Gonzalo Paniagua Javier <[email protected]>
  454. * FormsAuthenticationModule.cs: really renew the ticket. Thanks to
  455. Jens Thiel <[email protected]>.
  456. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  457. * UrlAuthorizationModule.cs: tell the application not to run any other
  458. step apart from EndRequest.
  459. 2003-02-12 Gonzalo Paniagua Javier <[email protected]>
  460. * FormsAuthentication.cs: implemented RedirectFromLoginPage and
  461. GetRedirectUrl.
  462. * FormsAuthenticationModule.cs: redirect to the login page when a 401
  463. error happens.
  464. * UrlAuthorizationModule.cs: check for valid user or render error page.
  465. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  466. * DefaultAuthenticationModule.cs: implemented. It just create a default
  467. unauthenticated user when no one else provided one.
  468. * FormsAuthenticationModule.cs: removed debug output.
  469. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  470. * FormsAuthenticationModule.cs: remove debug lines.
  471. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  472. * FormsAuthentication.cs: return a null ticket when an exception is
  473. thrown creating it. Implemented RenewTicketIfOld.
  474. * FormsAuthenticationModule.cs: implemented event handlers for
  475. AuthenticateRequest and EndRequest.
  476. * FormsAuthenticationTicket.cs: implemented SetDates and Clone methods.
  477. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  478. * FormsAuthentication.cs: implemented GetAuthCookie, SetAuthCookie,
  479. SignOut, FormsCookieName and FormsCookiePath.
  480. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  481. * FormsAuthentication.cs: implemented Authenticate, unencrypted Encrypt
  482. and Decrypt, HashPasswordForStoringInConfigFile and Initialize.
  483. * FormsAuthenticationTicket.cs: set cookiePath to the default when no
  484. other provided.
  485. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  486. * DefaultAuthenticationEventHandler.cs:
  487. * DefaultAuthenticationModule.cs:
  488. * FileAuthorizationModule.cs:
  489. * FormsAuthentication.cs:
  490. * FormsAuthenticationEventArgs.cs:
  491. * FormsAuthenticationEventHandler.cs:
  492. * FormsAuthenticationModule.cs:
  493. * FormsAuthenticationTicket.cs:
  494. * FormsIdentity.cs:
  495. * PassportAuthenticationEventArgs.cs:
  496. * PassportAuthenticationEventHandler.cs:
  497. * PassportAuthenticationModule.cs:
  498. * PassportIdentity.cs:
  499. * UrlAuthorizationModule.cs:
  500. * WindowsAuthenticationEventArgs.cs:
  501. * WindowsAuthenticationEventHandler.cs:
  502. * WindowsAuthenticationModule.cs: new files. Some of them implemented,
  503. some others stubbed out.
  504. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  505. * DefaultAuthenticationEventArgs.cs: added file.