ChangeLog 23 KB

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