ChangeLog 26 KB

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