ChangeLog 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. 2005-05-25 Zoltan Varga <[email protected]>
  2. * StackTrace.cs: Add an internal ctor which skips unmanaged frames.
  3. 2005-04-16 Sebastien Pouliot <[email protected]>
  4. * StackFrame.cs: Moved documentation comments (XML) to monodoc.
  5. Removed unused method ObjectsEqual.
  6. 2005-03-14 Sebastien Pouliot <[email protected]>
  7. * StackFrame.cs: Fix CAS unit tests for NET_1_1.
  8. * StackTrace.cs: Fix CAS unit tests for NET_1_1.
  9. 2005-03-04 Zoltan Varga <[email protected]>
  10. * StackFrame.cs: Add an internalMethodName field to return info about
  11. the various runtime wrappers.
  12. 2005-03-02 Chris Toshok <[email protected]>
  13. * DebuggerTypeProxyAttribute.cs, DebuggerBrowsableState.cs,
  14. DebuggerDisplayAttribute.cs, DebuggerBrowsableAttribute: first cut
  15. at 3/4 of the .net 2.0 debugger attributes.
  16. 2005-02-12 Marek Safar <[email protected]>
  17. * ConditionalAttribute.cs: NET_2_0 extension.
  18. 2005-01-27 Sebastien Pouliot <[email protected]>
  19. * StackFrame.cs: Add path discovery permission check for GetFilename
  20. method. Changed ToString to use a StringBuilder and report correctly
  21. (i.e. without exception) if filename is restricted. Removed dead code
  22. (Equals/GetHashCode).
  23. * StackTrace.cs: Removed dead code (Equals/GetHashCode).
  24. 2004-08-05 Sebastien Pouliot <[email protected]>
  25. * StackTrace.cs: Added missing exceptions. Added globalization. Now
  26. using StringBuilder in ToString (fusioned FrameToString).
  27. 2004-08-04 Sebastien Pouliot <[email protected]>
  28. * StackTrace.cs: Implemented GetFrames as public virtual for NET_2_0
  29. and internal for NET_1_0/NET_1_1 so it can be used for CAS. Removed
  30. XML documentation and mono-ized the source code.
  31. 2004-06-15 Gert Driesen <[email protected]>
  32. * StackTrace.cs: added TODO for serialization
  33. * StackFrame.cs: added TODO for serialization
  34. 2004-05-19 Gert Driesen ([email protected])
  35. * DebuggerHiddenAttribute.cs
  36. * DebuggerStepThroughAttribute.cs : now that Inherited is
  37. false by default on AttributeUsageAttribute (as it
  38. should be) we need to explicitly set Inherited to false
  39. for those attributes where it should be false.
  40. 2003-09-18 Ravi Pratap <[email protected]>
  41. * ConditionalAttribute.cs: AllowMultiple should be true according
  42. to bug #48598.
  43. 2003-09-02 Ravi Pratap <[email protected]>
  44. * DebuggerStepThroughAttribute.cs: Fix allowable targets to include class
  45. and struct; remove property targets.
  46. 2003-07-01 Zoltan Varga <[email protected]>
  47. * StackFrame.cs: Obtain frame info for 'fake' frames too, since this is
  48. what MS does.
  49. 2003-01-01 Jaime Anguiano Olarra <[email protected]>
  50. * Process.cs: skeleton for use in Remoting.
  51. 2002-06-19 Dietmar Maurer <[email protected]>
  52. * StackTrace.cs: impl. remaining constructors.
  53. 2002-06-18 Dietmar Maurer <[email protected]>
  54. * StackTrace.cs: use new internal call for constructors, use MS like
  55. trace format.
  56. * StackFrame.cs: impl. constructors using a new internal call.
  57. 2002-05-01 Duncan Mak <[email protected]>
  58. * DebuggableAttribute.cs: Added missing AttributeUsage attribute.
  59. 2002-04-08 Jonathan Pryor <[email protected]>
  60. * Debugger.cs: Added [MonoTODO] attribute to methods; modified IsLogging()
  61. and Log() so that System.Diagnostics.DefaultTraceListener could use them
  62. without having NotImplementedException's thrown, as the functionality
  63. DefaultTraceListener is using is non-critical.
  64. 2002-04-08 Nick Drochak <[email protected]>
  65. * ConditionalAttribute.cs: Add AttributeUsage attribute for methods.
  66. 2002-01-23 Duncan Mak <[email protected]>
  67. * DebuggerStepThroughAttribute.cs:
  68. * DebuggerHiddenAttribte.cs: Add to CVS.
  69. 2002-01-04 Ravi Pratap <[email protected]>
  70. * StackFrame.cs : Use the MonoTODO attribute to mark
  71. incomplete code.
  72. StackTrace.cs : Ditto.
  73. 2002-01-04 John R. Hicks <[email protected]>
  74. * Moved TraceListener, TextWriterTraceListener, and
  75. DefaultTraceListener to System assembly....oops.
  76. 2002-01-04 John R. Hicks <[email protected]>
  77. * Added TextWriterTraceListener.cs, TraceListener.cs, and
  78. DefaultTraceListener.cs to the build.
  79. 2002-01-04 John R. Hicks <[email protected]>
  80. * Added Debugger.cs to the build.
  81. 2001-09-02 Miguel de Icaza <[email protected]>
  82. * Moved BooleanSwitch, Switch, TraceLevel and TraceSwitch to the
  83. System assembly.
  84. * Added StackFrame.cs and StackTrace.cs to the build.
  85. 2001-08-21 Nick Drochak <[email protected]>
  86. * Implemented ConditionalAttribute.cs and DebuggableAttribute.cs
  87. 2001-08-29 Alexander Klyubin <[email protected]>
  88. * Skeletal implementation of StackFrame and StackTrace classes.
  89. The classes must be somehow connected to runtime environment in
  90. order to generate proper traces.