New tests.
[mono.git] / mcs / class / corlib / System / ChangeLog
index 818a32a915175beff258815924fc8e5bf9115a6d..dce79282db5075e7fe9a70cafd23fba2a98aad5a 100644 (file)
@@ -1,3 +1,112 @@
+2010-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * TimeSpan.cs: Support custom formats in ToString().
+
+2010-04-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
+
+       * Lazy.cs: Include in Moonlight build.
+
+2010-04-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * TimeSpan.cs: The final 4.0 release removed the restriction of
+       preceding zeroes when parsing, and it also added 't' and 'T' as valid
+       formats equivalent to 'c' (default).
+
+2010-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * MonoType.cs (GetInterface): Compare against the name
+       of the generic type definition.
+
+       Fixes #484246.
+
+2010-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * MonoCustomAttrs.cs (GetBasePropertyDefinition): Use
+       GetBaseMethod instead of GetMethodDefinition otherwise
+       we skip intermediate overloads.
+
+       Fixes #499569.
+
+2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * Environment.cs: Ensure elevated trust when calling
+       GetFolderPath on Moonlight
+
+2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * Action.cs: SL4 moved some Action in mscorlib
+       * Funcs.cs: SL4 moved some Func<> in mscorlib
+       * String.cs: Make IsNullOrWhiteSpace available, internally, 
+       before NET_4_0 (or SL4) since it's proving useful.
+
+2010-04-15  Jb Evain  <jbevain@novell.com>
+
+       * Guid.cs: rework the Guid parser to implement the net_4_0
+       [Try]ParseExact methods.
+
+2010-04-15  Jérémie Laval  <jeremie.laval@gmail.com>
+
+       * Tuple.cs:
+       * Tuples.cs: Add BOOTSTRAP_NET_4_0 define
+
+2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * MonoCustomAttrs.cs: Raise an exception if the runtime
+       returned a null cattr.
+
+2010-04-13  Zoltan Varga  <vargaz@gmail.com>
+
+       * Convert.cs (ToInt32): Do a checked cast. Fixes #596339.
+
+2010-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * TimeSpan.cs: Implement support for custom formats parsing. This
+       should as well include the bits required to easily implement the same
+       for ToString methods, when the final release fixes the mess we found
+       in the latest beta.
+
+2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * Type.cs: Add ResolveInternal virtual call that
+       resolves a given type to it's concrete type.
+
+2010-03-07 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * Enum.cs (GetInfo): Don't use isinst tests as they can
+       return true for both signed and unsigned version of a
+       primitive type.
+
+       * Enum.cs (FindPosition): Ditto.
+
+2010-04-06  Marek Safar  <marek.safar@gmail.com>
+
+       * Array.cs: Don't make read-only collection read-only.
+
+2010-03-31  Miguel de Icaza  <miguel@novell.com>
+
+       * UInt32.cs, Int64.cs, UInt64.cs: cope with the case that the
+       IFormatProvider is not a NumberFormatInfo, preventing a crash.
+       This was already handled by Int32.cs, but these other routines
+       were never properly updated. 
+
+       Fixes #588356
+
+       * DateTimeOffset.cs: Add support for format K in DateTimeOffset,
+       fixes bug 589227.
+
+       * DateTime.cs: Add serialization support, fixes #588198.
+
+       Perhaps we should change the format as well since this is the new
+       format serialized anyways (see bug 592221, it saves 4 bytes of
+       memory as well)
+
+2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * InvalidTimeZoneException.cs
+       * TimeZoneNotFoundException.cs:
+               Fix Moonlight since these types now reside in mscorlib
+               (instead of System.Core) for NET_4_0 and also for SL4
+
 2010-03-30  Jb Evain  <jbevain@novell.com>
 
        * MonoType.cs: let the binder reorder arguments when invoking