2007-03-13 Jonathan Chambers <joncham@gmail.com>
[mono.git] / mono / metadata / ChangeLog
index d2e624995a5b3330d6266715786def44fad7c3c7..46eb33127ef145584c6038ceabbd70ae60bccb7f 100644 (file)
@@ -1,3 +1,69 @@
+2007-03-13  Jonathan Chambers  <joncham@gmail.com>
+
+       * icall.c:  Fix environ access in VS.  
+       
+2007-03-13  Alp Toker  <alp@atoker.com>
+
+       * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
+       rather than the underlying type. Based on a patch by Ben Maurer. Fixes
+       #63841.
+
+2007-03-12  Zoltan Varga  <vargaz@gmail.com>
+
+       * reflection.c (mono_reflection_create_dynamic_method): Add support for 
+       circular references among dynamic methods. Fixes #81091.
+
+       * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
+
+2007-03-09  Martin Baulig  <martin@ximian.com>
+
+       * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
+
+2007-03-09  Jonathan Chambers  <joncham@gmail.com>
+
+       * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
+       of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
+       
+       Code is contributed under MIT/X11 license.
+        
+2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
+
+       * loader.c: Reapply patch for bug #79424.
+
+2007-03-06  Zoltan Varga  <vargaz@gmail.com>
+
+       * metadata.c (mono_type_to_unmanaged): Only convert object to
+       MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
+
+Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
+
+       * class-internals.h, class.c, metadata.c, reflection.c: removed unused
+       (and incorrectly set) is_reference field from MonoGenericInst.
+
+2007-03-06  Zoltan Varga  <vargaz@gmail.com>
+
+       * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
+       a little earlier.
+
+       * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
+
+       * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
+
+2007-03-05  Miguel de Icaza  <miguel@novell.com>
+
+       * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
+       FileOptions.1 value to mean "temporary", map that to
+       FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
+
+       Fixes 80688
+
+2007-03-03  Marek Habersack  <mhabersack@novell.com>
+
+       * appdomain.c: implement MS .Net style shadow copying. Copies of
+       the assemblies are made in a subdirectory of the dynamic base
+       directory, the assembly names are preserved.
+       Copy .mdb and .config files along with the assemblies being shadowed.
+
 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
 
        * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.