ChangeLog 24 KB

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