[xdebug-dev] svn: /xdebug/trunk/ package.xml

From: Derick Rethans <derick[@]derickrethans.nl>
Date: Sat, 02 Jan 2010 23:07:22 +0000

derick Sat, 02 Jan 2010 23:07:22 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=3195

Log:
- Updated with releases from 2.0 branch.

Changed paths:
    U xdebug/trunk/package.xml

Modified: xdebug/trunk/package.xml
===================================================================
--- xdebug/trunk/package.xml 2010-01-02 23:05:39 UTC (rev 3194)
+++ xdebug/trunk/package.xml 2010-01-02 23:07:22 UTC (rev 3195)
@@ -2,7 +2,7 @@
 <package>
   <name>xdebug</name>
   <summary>Provides functions for function traces and profiling</summary>
- <status>beta</status>
+ <status>stable</status>
   <maintainers>
     <maintainer>
       <user>derick</user>
@@ -32,40 +32,22 @@
   <license>BSD style</license>
   <release>
     <state>stable</state>
- <version>2.0.0</version>
- <date>2007-07-18</date>
+ <version>2.0.5</version>
+ <date>2009-07-03</date>
     <notes>
-Wed, Jul 18, 2007 - xdebug 2.0.0
+Fri, Jul 03, 2009 - xdebug 2.0.5

-+ Changes:
- - Put back the disabling of stack traces - apperently people were relying
- on this. This brings back xdebug_enable(), xdebug_disable() and
- xdebug_is_enabled().
- - xdebug.collect_params is no longer a boolean setting. Although it worked
- fine, phpinfo() showed only just On or Off here.
- - Fixed the Xdebug version of raw_url_encode to not encode : and \. This is
- not necessary according to the RFCs and it makes debug breakpoints work
- on Windows.
-
 = Fixed bugs:
- - Fixed bug #291: Tests that use SPL do not skip when SPL is not available.
- - Fixed bug #290: Function calls leak memory.
- - Fixed bug #289: Xdebug terminates connection when eval() is run in the
- init stage.
- - Fixed bug #284: Step_over on breakpointed line made Xdebug break twice.
- - Fixed bug #283: Xdebug always returns $this with the value of last stack
- frame.
- - Fixed bug #282: %s is not usable for xdebug.profiler_output_name on
- Windows in all stack frames.
- - Fixed bug #280: var_dump() doesn't display key of array as expected.
- - Fixed bug #278: Code Coverage Issue.
- - Fixed bug #273: Remote debugging: context_get does not return context id.
- - Fixed bug #270: Debugger aborts when PHP's eval() is encountered.
- - Fixed bug #265: XDebug breaks error_get_last() .
- - Fixed bug #261: Code coverage issues by overloading zend_assign_dim.
-
-+ DBGP:
- - Added support for "breakpoint_languages".
+ - Fixed bug #425: memory leak (around 40MB for each request) when using
+ xdebug_start_trace.
+ - Fixed bug #422: Segfaults when using code coverage with a parse error in
+ the script.
+ - Fixed bug #418: compilation breaks with CodeWarrior for NetWare.
+ - Fixed bug #403: 'call' and 'return' breakpoints triggers both on call and
+ return for class method breakpoints.
+ - Fixed TSRM issues for PHP 5.2 and PHP 5.3. (Original patch by Elizabeth
+ M. Smith).
+ - Fixed odd crash bugs, due to GCC 4 sensitivity.
     </notes>
     <filelist>
       <file role="src" name="php_xdebug.h"/>
@@ -82,6 +64,10 @@
       <file role="src" name="xdebug_handlers.h"/>
       <file role="src" name="xdebug_handler_dbgp.c"/>
       <file role="src" name="xdebug_handler_dbgp.h"/>
+ <file role="src" name="xdebug_handler_gdb.c"/>
+ <file role="src" name="xdebug_handler_gdb.h"/>
+ <file role="src" name="xdebug_handler_php3.c"/>
+ <file role="src" name="xdebug_handler_php3.h"/>
       <file role="src" name="xdebug_hash.c"/>
       <file role="src" name="xdebug_hash.h"/>
       <file role="src" name="xdebug_llist.c"/>
@@ -153,6 +139,123 @@
   <changelog>
     <release>
       <state>stable</state>
+ <version>2.0.5</version>
+ <date>2009-07-03</date>
+ <notes>
+Fri, Jul 03, 2009 - xdebug 2.0.5
+
+= Fixed bugs:
+ - Fixed bug #425: memory leak (around 40MB for each request) when using
+ xdebug_start_trace.
+ - Fixed bug #422: Segfaults when using code coverage with a parse error in
+ the script.
+ - Fixed bug #418: compilation breaks with CodeWarrior for NetWare.
+ - Fixed bug #403: 'call' and 'return' breakpoints triggers both on call and
+ return for class method breakpoints.
+ - Fixed TSRM issues for PHP 5.2 and PHP 5.3. (Original patch by Elizabeth
+ M. Smith).
+ - Fixed odd crash bugs, due to GCC 4 sensitivity.
+ </notes>
+ </release>
+ <release>
+ <state>stable</state>
+ <version>2.0.4</version>
+ <date>2008-12-30</date>
+ <notes>
+Tue, Dec 30, 2008 - xdebug 2.0.4
+
+= Fixed bugs:
+ - Fixed for strange jump positions in path analysis.
+ - Fixed issues with code coverage crashing on parse errors.
+ - Fixed code code coverage by overriding more opcodes.
+ - Fixed issues with Xdebug stalling/crashing when detaching from remote
+ debugging.
+ - Fixed crash on Vista where memory was freed with routines from a different
+ standard-C library than it was allocated with. (Patch by Eric Promislow
+ &lt;ericp[@]activestate.com&gt;).
+ - Link against the correct CRT library. (Patch by Eric Promislow
+ &lt;ericp[@]activestate.com&gt;).
+ - Sort the symbol elements according to name. (Patch by Eric Promislow
+ &lt;ericp[@]activestate.com&gt;).
+ - Fixed support for mapped-drive UNC paths for Windows. (Patch by Eric
+ Promislow &lt;ericp[@]activestate.com&gt;).
+ - Fixed a segfault in interactive mode while including a file.
+ - Fixed a crash in super global dumping in case somebody was strange enough
+ to reassign them to a value type other than an Array.
+ - Simplify version checking for libtool. (Patch by PGNet
+ &lt;pgnet.trash[@]gmail.com&gt;).
+ - Fixed display of unused returned variables from functions in PHP 5.3.
+ - Include config.w32 in the packages as well.
+ - Fixed .dsp for building with PHP 4.
+
++ Added features:
+ - Support debugging into phars.
+ - Basic PHP 5.3 support.
+ </notes>
+ </release>
+ <release>
+ <state>stable</state>
+ <version>2.0.3</version>
+ <date>2008-04-09</date>
+ <notes>
+Wed, Apr 09, 2008 - xdebug 2.0.3
+
+= Fixed bugs:
+ - Fixed bug #338: Crash with: xdebug.remote_handler=req.
+ - Fixed bug #334: Code Coverage Regressions.
+ - Fixed abstract method detection for PHP 5.3.
+ - Fixed code coverage dead-code detection.
+ - Ignore ZEND_ADD_INTERFACE, which is on a different line in PHP >= 5.3 for
+ some weird reason.
+
++ Changes:
+ - Added a CSS-class for xdebug's var_dump().
+ - Added support for the new E_DEPRECATED.
+ </notes>
+ </release>
+ <release>
+ <state>stable</state>
+ <version>2.0.2</version>
+ <date>2007-11-11</date>
+ <notes>
+Sun, Nov 11, 2007 - xdebug 2.0.2
+
+= Fixed bugs:
+ - Fixed bug #325: DBGP: "detach" stops further sessions being established
+ from Apache.
+ - Fixed bug #321: Code coverage crashes on empty PHP files.
+ - Fixed bug #318: Segmentation Fault in code coverage analysis.
+ - Fixed bug #315: Xdebug crashes when including a file that doesn't exist.
+ - Fixed bug #314: PHP CLI Error Logging thwarted when XDebug Loaded.
+ - Fixed bug #300: Direction of var_dump().
+ - Always set the transaction_id and command. (Related to bug #313).
+ </notes>
+ </release>
+ <release>
+ <state>stable</state>
+ <version>2.0.1</version>
+ <date>2007-10-29</date>
+ <notes>
+Sat, Oct 20, 2007 - xdebug 2.0.1
+
++ Changes:
+ - Improved code coverage performance dramatically.
+ - PHP 5.3 compatibility (no namespaces yet though).
+
+= Fixed bugs:
+ - Fixed bug #301: Loading would cause SIGBUS on Solaris 10 SPARC. (Patch by
+ Sean Chalmers)
+ - Fixed bug #300: Xdebug does not force LTR rendering for its tables.
+ - Fixed bug #299: Computerized traces don't have a newline for return
+ entries if memory limit is not enabled.
+ - Fixed bug #298: xdebug_var_dump() doesn't handle entity replacements
+ correctly concerning string length.
+ - Fixed a memory free error related to remote debugging conditions.
+ (Related to bug #297).
+ </notes>
+ </release>
+ <release>
+ <state>stable</state>
       <version>2.0.0</version>
       <date>2007-07-18</date>
       <notes>
Received on Sat Jan 02 2010 - 23:07:22 GMT

This archive was generated by hypermail 2.2.0 : Sun Jun 24 2018 - 04:00:03 BST