ChangeLog 26 KB

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