X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Security.Principal%2FChangeLog;h=d73b94c2524846bf42a2bf416adb7395e4f78ae4;hb=371a1f12a9c0ce20aae7034afeb293321c3952bd;hp=b72bc211564bdb0eb286c5c50ee61884b82c5aa9;hpb=2a8259225695032220537b3c90a99d7a2686f214;p=mono.git diff --git a/mcs/class/corlib/System.Security.Principal/ChangeLog b/mcs/class/corlib/System.Security.Principal/ChangeLog index b72bc211564..d73b94c2524 100644 --- a/mcs/class/corlib/System.Security.Principal/ChangeLog +++ b/mcs/class/corlib/System.Security.Principal/ChangeLog @@ -1,3 +1,69 @@ +2008-05-30 Sebastien Pouliot + + * IdentityReferenceCollection.cs: Remove MonoTODO and throw NIE. + +2007-07-28 Miguel de Icaza + + * IdentityReference.cs, SecurityIdentifier.cs, NTAccount.cs: Do + not recurse infinitely as reported by Jesse Jones, the problem was + the comparison to null. + +2006-12-22 Sebastien Pouliot + + * NTAccount.cs: Implement == and != operators (MoMA reports). + * SecurityIdentifier.cs: Implement == and != operators (MoMA reports). + +2006-08-08 Sebastien Pouliot + + * GenericIdentity.cs: Rename fields to match MS for serialization + (indirecly required to fix GenericPrincipal serialization). Also + renamed ctor parameters to match fx. + * GenericPrincipal.cs: Rename fields to match MS for serialization. + Fix bug #79030. + +Wed Nov 30 19:09:50 CET 2005 Paolo Molaro + + * WindowsIdentity.cs: remove check for an invalid user token on Posix + systems and check for PlatformID.Unix, too. + +2005-10-28 Sebastien Pouliot + + * IdentityReferenceCollection.cs: Removed virtual from Count and + IsReadOnly properties. + * WindowsIdentity.cs: AuthenticationType property isn't virtual in 2.0 + +2005-09-25 Sebastien Pouliot + + * SecurityIdentifier.cs: Stubbed ctor(IntPtr) introduced in 2.0 RC. + +2005-08-22 Sebastien Pouliot + + * GenericPrincipal.cs: Roles are case-insensitive. + +2005-06-18 Sebastien Pouliot + + * IdentityReference.cs: Constructor is internal (which means it the + class cannot be inherited outside corlib). + +2005-06-17 Sebastien Pouliot + + * IdentityNotMappedException.cs: New (2.0). Identity exception. + * IdentityReference.cs: New (2.0). Abstract base class to collect / + translate identities. + * IdentityReferenceCollection.cs: New. (2.0) Collection of + IdentityReference (e.g. groups). + * NTAccount.cs: New (2.0). Domain/User (string based) + IdentityReference. + * SecurityIdentifier.cs: New (2.0). SID (binary based) + IdentityReference. + * TokenAccessLevels.cs: New (2.0). Type of identity token. + * TokenImpersonationLevel.cs: Fixed name in header. + * WellKnownSidType.cs: New (2.0). Enum of all well known SID. + * WindowsIdentity.cs: Implement IDisposable for 2.0. Add Identity + Reference support for User, Owner and a collection for groups. + * WindowsImpersonationContext.cs: Implement IDisposable for 2.0. + * WindowsPrincipal.cs: Added IsInRole(SecurityIdentifier) for 2.0. + 2005-04-22 Sebastien Pouliot * GenericIdentity.cs: Added [ComVisible(true)] for NET_2_0.