ChangeLog 28 KB

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