2008-11-06 Jonathan Chambers <joncham@gmail.com>
[mono.git] / mcs / class / System / System.IO / ChangeLog
index 745daec1cf55764d382c0054ab7b056233fd7597..0731e983ca0b0c718d4446022fa65a96f61dfe9d 100644 (file)
@@ -1,3 +1,77 @@
+2008-11-06  Jonathan Chambers  <joncham@gmail.com>
+
+       * MonoIO.cs : Add DuplicateHandle.
+
+2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * InotifyWatcher.cs: IN_CLOSE_WRITE is triggered when a writable file is
+       closed, but that does not mean that the file was actually modified.
+       Fixes bug #323188.
+
+2008-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * InotifyWatcher.cs: Really fix #359181.
+
+2008-09-01  Dick Porter  <dick@ximian.com>
+
+       * InotifyWatcher.cs: Revert fix for bug 322330, as it is somehow
+       breaking other stuff.
+
+2008-06-20  Dick Porter  <dick@ximian.com>
+
+       * InotifyWatcher.cs: If a directory is renamed, make sure the old
+       version is removed from the requests hash.  Fixes bug 322330.
+
+2008-06-18  Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * InotifyWatcher.cs: patch from Juraj Skripsky to fix
+       rename events (fixes bug #359181).
+
+
+2008-04-17  Marek Habersack  <mhabersack@novell.com>
+
+       * FileSystemWatcher.cs: added support for NullFileWatcher. Fixes
+       bug #354701
+
+       * NullFileWatcher.cs: added an IFileWatcher implementation which
+       does nothing. Selected only by setting the MONO_MANAGED_WATCHER
+       environment variable to 'disabled'. Fixes bug #354701
+
+Tue Mar 11 14:29:22 CET 2008 Paolo Molaro <lupus@ximian.com>
+
+       * InotifyWatcher.cs: patch from Anders Rune Jensen (anders@iola.dk)
+       to reduce memory usage (fixes bug #362147).
+
+2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * InvalidDataException.cs: Added private ctor for serialization. Fix 
+       bug #324569.
+
+2007-10-30  Robert Jordan  <robertj@gmx.net>
+
+       * MonoSyncFileStream.cs: Add.
+
+2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
+
+       * FileSystemWatcher.ch (RaiseEvent): Invoke delegate directly, we don't
+       need the extra control provided by using GetInvocationList().
+
+2006-11-01  Sebastien Pouliot  <sebastien@ximian.com> 
+
+       * ErrorEventHandler.cs: Remove [Serializable] in NET_2_0.
+       * FileSystemEventHandler.cs: Remove [Serializable] in NET_2_0.
+       * FileSystemWatcher.cs: Add missing attributes for NET_2_0.
+       * InvalidDataException.cs: Seal class and remove serialization ctor.
+       * NotifyFilters.cs: Remove [Serializable] in NET_2_0.
+       * RenamedEventHandler.cs: Remove [Serializable] in NET_2_0.
+       * WatcherChangeTypes.cs: Remove [Serializable] in NET_2_0.
+
+2006-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * InotifyWatcher.cs: workaround for a weird case. Someone is watching
+       /dev with recursion enabled and the inotify file descriptor shows up
+       as a directory that fails to open. Already reported to Robert Love.
+
 2006-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
 
        * InotifyWatcher.cs: fix file names for the rename event.