ChangeLog 29 KB

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