2011-09-29  Rodrigo Kumpera  <kumpera@gmail.com>

	Request ObjectMirror type and domain in a single request.

2011-08-24  Rodrigo Kumpera  <kumpera@gmail.com>

	Cache thread id.

2011-08-24  Rodrigo Kumpera  <kumpera@gmail.com>

	Cache source files.

2011-08-23  Rodrigo Kumpera  <kumpera@gmail.com>

	Cache ObjectMirror type and domain.

2011-08-23  Rodrigo Kumpera  <kumpera@gmail.com>

	Avoid looking up the ctor mirror twice.

2011-04-27  Martin Baulig  <martin@novell.com>

	Add socket timeouts to the soft debugger.

	SDB now support setting a send/receive timeout on the client's
	side of the communication socket. To make this work, the server
	sends a special 'keepalive' event when using receive timeouts.

	There's a new method VirtualMachine.SetSocketTimeouts() to enable
	this feature.

2011-02-24  Zoltan Varga  <vargaz@gmail.com>

	Disallow EventType.Step in EnableEvents (). Fixes #674490.

2011-01-28  Zoltan Varga  <vargaz@gmail.com>

	Add an AtLeast version to sdb's VersionInfo class.

2011-01-28  Geoff Norton  <grompf@sublimeintervention.com>

	Bump SDB protocol so MonoDevelop can guard IL inspection of
	dynamic methods

2011-01-26  Geoff Norton  <grompf@sublimeintervention.com>

	Include operands when emitting the IL stream to sdb clients

2011-01-21  Zoltan Varga  <vargaz@gmail.com>

	Obsolete VirtualMachine.GetNextEvent () as it is impossible to
	determine when to resume after an event, since the debuggee
	suspends only once per event-set.

2011-01-20  Zoltan Varga  <vargaz@gmail.com>

	Add a TID field to ThreadMirror which returns the system thread
	id.

2011-01-04  Zoltan Varga  <vargaz@gmail.com>

	Add AssemblyLoadEventRequest () type to the sdb api, and use it to
	fix the test suite.

2010-12-19  Zoltan Varga  <vargaz@gmail.com>

	Add support for accessing ThreadStatic fields in sdb. Fixes
	#645217.

2010-12-17  Zoltan Varga  <vargaz@gmail.com>

	Convert the new NO_SEQ_POINT_AT_IL_OFFSET sdb error code into an
	exception.

2010-12-13  Michael Hutchinson  <mhutchinson@novell.com>

	Fixi soft debugger dll crash on Windows w/redirected console

	Windows socket behaviour seems to be slightly different from
	Linux/Mac, and Mono.Debugger.Soft was trying to disconnect a
	socket that that doesn't get connected, causing an exception at
	launch.

	For some reason it did check the main debugger socket before
	trying to disconnect it, but not the console socket, so only apps
	with redirected console output would crash.

2010-12-13  Michael Hutchinson  <mhutchinson@novell.com>

	Remove default arg usage from sdb dll so it can be compiled with
	csc 3.5

2010-11-03  Zoltan Varga  <vargaz@gmail.com>

	Fix encoding of large strings in the soft debugger api. Fixes
	#648832.

2010-10-23  Michael Hutchinson  <mhutchinson@novell.com>

	[SDB] Add BeginConnect/EndConnect to VirtualMachineManager

	Launch and Listen methods had async version but Connect did not.

2010-10-19  Tak  <levi@unity3d.com>

	* Mono.Debugger.Soft/VirtualMachineManager.cs: Don't disconnect an
	unconnected socket. Fixes #606809.

	This patch is licensed MIT/X11.

2010-10-05  Jb Evain  <jbevain@gmail.com>

	Port Mono.Debugger.Soft to cecil-light

2010-09-23  Zoltan Varga  <vargaz@gmail.com>

	Don't allow EventType.Breakpoint in vm.EnableEvents ().

2010-09-13  Zoltan Varga  <vargaz@gmail.com>

	Bump minor version to 2 to be compatible with the runtime.

2010-06-17  Zoltan Varga  <vargaz@gmail.com>

	* VirtualMachine.cs Connection.cs: Group events received together into an EventSet,
	like it is done in JDI. Add a GetNextEventSet () method.

2010-06-04  Zoltan Varga  <vargaz@gmail.com>

	* StackFrame.cs (GetVisibleVariables): New method to return the set of variables
	visible at the current stack frame.

2010-05-24  Martin Baulig  <martin@ximian.com>

	* Connection.cs (VersionInfo): Make this public.

	* VirtualMachine.cs (Version): New public property.

2010-05-07  Zoltan Varga  <vargaz@gmail.com>

	* VirtualMachine.cs (ErrorHandler): Convert ABSENT_INFORMATION to
	AbsentInformationException.

	* AbsentInformationException.cs: New file.

2010-04-30  Zoltan Varga  <vargaz@gmail.com>

	* TypeMirror.cs: Add new overload for GetSourceFiles () which returns full paths.

2010-04-27  Lluis Sanchez  <lluis@novell.com>

	* ITargetProcess.cs:
	* VirtualMachine.cs:
	* VirtualMachineManager.cs:
	Restored old API. Renamed IProcess to ITargetProcess everywhere
	to avoid naming conflicts.

2010-04-26  Lluis Sanchez  <lluis@novell.com>

	* IProcess.cs:
	* VirtualMachine.cs:
	* VirtualMachineManager.cs:
	Added new IProcess interface which wraps the debugged process.
	This abstraction makes it easier to support debugging processes
	for which we don't have a direct Process reference (for example,
	if the process is remote).

2010-04-10  Zoltan Varga  <vargaz@gmail.com>

	* ThreadMirror.cs: Add a ThreadId property.

2010-03-05  Martin Baulig  <martin@ximian.com>

	Add support for aborting invocations.

	* IInvokeAsyncResult.cs: New file.
	(IInvokeAsyncResult): New public interface; derives from
	`IAsyncResult' and contains an Abort() method.

	* Connection.cs
	(Connection.VM_BeginInvokeMethod): Return the `id'.
	(Connection.VM_AbortInvoke): New method.

	* ObjectMirror.cs
	(ObjectMirror.AbortInvoke): New internal static method.

2010-03-01  Zoltan Varga  <vargaz@gmail.com>

	* VirtualMachine.cs: Allow working with runtimes implementing a different
	minor version of the debugger protocol.

2010-03-01  Zoltan Varga  <vargaz@gmail.com>

	* Connection.cs: Send the protocol version used by the client to the debuggee
	after the handshake.

2010-03-01  Zoltan Varga  <vargaz@gmail.com>

	* Location.cs: Implement ToString ().

	* AppDomainMirror.cs (CreateBoxedValue): New method to create a boxed value from
	a primitive value or struct.

2010-02-26  Zoltan Varga  <vargaz@gmail.com>

	* Connection.cs: Throw a NotSupportedException if the protocol version doesn't
	support the caught/uncaught flags in an exception modifier.

2010-02-20  Zoltan Varga  <vargaz@gmail.com>

	* VirtualMachine.cs (CreateExceptionRequest): Add an overload taking two
	booleans which specify whenever to report caught/uncaught exceptions.

	* ExceptionRequest.cs: Add public properties for them.

	* Connections.cs: Pass the caught/uncaught flags to the debuggee. Bump protocol
	minor version.

2010-02-11  Zoltan Varga  <vargaz@gmail.com>

	* AssemblyMirror.cs: Add missing GetType () overloads.

2010-02-04  Zoltan Varga  <vargaz@gmail.com>

	* TypeMirror.cs (EnumUnderlyingType): New property.

	* EnumMirror.cs: Use it.

	* VirtualMachine.cs (CreateEnumMirror): New method to create an EnumMirror.

	* AppDomainMirror.cs (GetCorrespondingType): New method to return a TypeMirror
	corresponding to a primitive type.

	* TypeMirror.cs (IsEnum): Implement.

	* EnumMirror.cs (.ctor): New internal constructor called from CreateEnumMirror
	which does lots of error checking.

2010-01-28  Zoltan Varga  <vargaz@gmail.com>

	* AssemblyUnloadEvent: New file.

	* VirtualMachine.cs Connection.cs: Add support for assembly unload events.

2009-12-05  Lluis Sanchez  <lluis@novell.com>

	* StructMirror.cs: Fix field indexer for structs with static fields.
	* VirtualMachineManager.cs: Added an option to LaunchOptions which
	allows providing a custom method for launching the process. This
	allows launching mono in a wrapper process.

2009-12-03  Zoltan Varga  <vargaz@gmail.com>

	* StructMirror.cs (this): Ignore static fields.

2009-12-02  Geoff Norton  <gnorton@novell.com>

	* VirtualMachineManager.cs: We might get a SocketException (interrupted)
	here, so lets just handle all Exceptions to our Accept pattern the same
	way

2009-12-01  Zoltan Varga  <vargaz@gmail.com>

	* VirtualMachine.cs (ErrorHandler): Handle NOT_SUSPENDED error code too.

2009-11-24  Zoltan Varga  <vargaz@gmail.com>

	* ObjectMirror.cs TypeMirror.cs StructMirror.cs: Make the BeginInvokeMethod
	which takes a 'vm' argument obsolete, it was added by mistake, add a version
	without that argument instead.

2009-11-19  Zoltan Varga  <vargaz@gmail.com>

	* AssemblyMirror.cs: Add a GetName () method.

2009-11-17  Zoltan Varga  <vargaz@gmail.com>

	* Connection.cs ObjectMirror.cs: Implement invokes in a real asynchronous way,
	without waiting.

2009-11-14  Zoltan Varga  <vargaz@gmail.com>

	* InvokeOptions.cs: Add SingleThreaded option, not yet works.

	* VirtualMachineManager.cs (Launch): Pass options to BeginLaunch.

	* ObjectMirror.cs TypeMirror.cs StructMirror.cs: Implement an async version of
	InvokeMethod ().

2009-11-13  Zoltan Varga  <vargaz@gmail.com>

	* InvokeOptions.cs: New file.

	* ObjectMirror.cs TypeMirror.cs StructMirror.cs: Add support for passing flags
	to InvokeMethod ().

	* Connection.cs: Bump protocol version.

2009-11-12  Zoltan Varga  <vargaz@gmail.com>

	* VirtualMachineManager.cs: Put back the old Launch (string[], LaunchOptions)
	overload.

2009-11-11  Geoff Norton  <gnorton@novell.com>

	* VirtualMachineManager.cs: Refactor the APIs to have async methods.
	Remove a bunch of Listen overloads that are pointless.  Refactor
	Launch to take a ProcessStartInfo instead of string arguments.

2009-11-10  Zoltan Varga  <vargaz@gmail.com>

	* VirtualMachineManager.cs (Launch): Close the listening socket instead of
	shutting it down since Shutdown throws on exception on non-connected sockets
	in ms.net.

2009-11-05  Zoltan Varga  <vargaz@gmail.com>

	* VirtualMachineManager.cs (Listen): Resurrect the old listen method.

	* VirtualMachineManager.cs (Connect): New method to connect to a runtime
	listening at the provided address.

2009-11-04  Lluis Sanchez  <lluis@novell.com>

	* VirtualMachineManager.cs: Properly redirect standard output.

2009-11-03  Zoltan Varga  <vargaz@gmail.com>

	* EventRequest.cs (AssemblyFilter): New property to filter
	events based on a list of assemblies.

	* Connection.cs: Add assembly filters to the protocol implementation.
