[xdebug-dev] xdebug xdebug/package.xml xdebug/package2.xml xdebug/php_xdebug.h - Go with 2.0.0.

From: Derick Rethans <derick[@]derickrethans.nl>
Date: Wed, 18 Jul 2007 19:34:56 +0200

Date: Wed Jul 18 19:34:56 CEST 2007
User: Derick Rethans
Directory: xdebug

Log Message:
[0.05]
- Go with 2.0.0.

Modified files:
           xdebug/package.xml (version: 1.43)
           xdebug/package2.xml (version: 1.11)
           xdebug/php_xdebug.h (version: 1.133)

[FILE: /xdebug/package.xml]

===================================================================
RCS file: cvstemp,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- xdebug/package.xml:1.42 Thu May 17 13:26:18 2007 GMT
+++ xdebug/package.xml Wed Jul 18 15:34:56 2007 GMT
@@ -26,61 +26,46 @@
 Xdebug also provides:
 
     * profiling information for PHP scripts
- * script execution analysis
+ * code coverage analysis
     * capabilities to debug your scripts interactively with a debug client
   </description>
   <license>BSD style</license>
   <release>
- <state>beta</state>
- <version>2.0.0RC4</version>
- <date>2007-05-17</date>
+ <state>stable</state>
+ <version>2.0.0</version>
+ <date>2007-07-18</date>
     <notes>
-Wed, May 17, 2007 - xdebug 2.0.0rc4
+Wed, Jul 18, 2007 - xdebug 2.0.0
+
 + Changes:
- - Use µ seconds instead of a tenths of µ seconds to avoid confusion in
- profile information.
- - Changed xdebug.profiler_output_name and xdebug.trace_output_name to use
- modifier tags:
- %c = crc32 of the current working directory
- %p = pid
- %r = random number
- %s = script name
- %t = timestamp (seconds)
- %u = timestamp (microseconds)
- %H = $_SERVER['HTTP_HOST']
- %R = $_SERVER['REQUEST_URI']
- %S = session_id (from $_COOKIE if set)
- %% = literal %
+ - 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 #255: Call Stack Table doesn't show Location on Windows.
- - Fixed bug #251: Using the source command with an invalid filename returns
- unexpected result.
- - Fixed bug #243: show_exception_trace="0" ignored.
- - Fixed bug #241: Crash in xdebug_get_function_stack().
- - Fixed bug #240: Crash with xdebug.remote_log on Windows.
- - Fixed a segfault in rendering stack traces to error logs.
- - Fixed a bug that prevented variable names from being recorded for remote
- debug session while xdebug.collect_vars was turned off.
- - Fixed xdebug_dump_superglobals() in case no super globals were
- configured.
-
-- Removed functions:
- - Removed support for Memory profiling as that didn't work properly.
- - Get rid of xdebug.default_enable setting and associated functions:
- xdebug_disable() and xdebug_enable().
-
-+ Added features:
- - Implemented support for four different xdebug.collect_params settings for
- stack traces and function traces.
- - Allow to trigger profiling by the XDEBUG_PROFILE cookie.
+ - 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:
- - Correctly add namespace definitions to XML.
- - Added the xdebug namespace that adds extra information to breakpoints if
- available.
- - Stopped the use of &gt;error> elements for exception breakpoints, as that
- violates the protocol.
+ - Added support for "breakpoint_languages".
     </notes>
     <filelist>
       <file role="src" name="php_xdebug.h"/>
@@ -169,6 +154,44 @@
   </release>
   <changelog>
     <release>
+ <state>stable</state>
+ <version>2.0.0</version>
+ <date>2007-07-18</date>
+ <notes>
+Wed, Jul 18, 2007 - xdebug 2.0.0
+
++ 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".
+ </notes>
+ </release>
+ <release>
       <state>beta</state>
       <version>2.0.0RC4</version>
       <date>2007-05-17</date>

[FILE: /xdebug/package2.xml]

===================================================================
RCS file: cvstemp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- xdebug/package2.xml:1.10 Thu May 17 13:26:18 2007 GMT
+++ xdebug/package2.xml Wed Jul 18 15:34:56 2007 GMT
@@ -20,7 +20,7 @@
 Xdebug also provides:
 
     * profiling information for PHP scripts
- * script execution analysis
+ * code coverage analysis
     * capabilities to debug your scripts interactively with a debug client
   
  </description>
@@ -30,63 +30,48 @@
   <email>derick[@]xdebug.org</email>
   <active>yes</active>
  </lead>
- <date>2007-05-17</date>
- <time>10:22:14</time>
+ <date>2007-07-18</date>
+ <time>19:25:03</time>
  <version>
- <release>2.0.0RC4</release>
- <api>2.0.0RC4</api>
+ <release>2.0.0</release>
+ <api>2.0.0</api>
  </version>
  <stability>
- <release>beta</release>
- <api>beta</api>
+ <release>stable</release>
+ <api>stable</api>
  </stability>
  <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
- <notes>Wed, May 17, 2007 - xdebug 2.0.0rc4
+ <notes>Wed, Jul 18, 2007 - xdebug 2.0.0
+
 + Changes:
- - Use µ seconds instead of a tenths of µ seconds to avoid confusion in
- profile information.
- - Changed xdebug.profiler_output_name and xdebug.trace_output_name to use
- modifier tags:
- %c = crc32 of the current working directory
- %p = pid
- %r = random number
- %s = script name
- %t = timestamp (seconds)
- %u = timestamp (microseconds)
- %H = $_SERVER[&apos;HTTP_HOST&apos;]
- %R = $_SERVER[&apos;REQUEST_URI&apos;]
- %S = session_id (from $_COOKIE if set)
- %% = literal %
+ - 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 #255: Call Stack Table doesn&apos;t show Location on Windows.
- - Fixed bug #251: Using the source command with an invalid filename returns
- unexpected result.
- - Fixed bug #243: show_exception_trace=&quot;0&quot; ignored.
- - Fixed bug #241: Crash in xdebug_get_function_stack().
- - Fixed bug #240: Crash with xdebug.remote_log on Windows.
- - Fixed a segfault in rendering stack traces to error logs.
- - Fixed a bug that prevented variable names from being recorded for remote
- debug session while xdebug.collect_vars was turned off.
- - Fixed xdebug_dump_superglobals() in case no super globals were
- configured.
-
-- Removed functions:
- - Removed support for Memory profiling as that didn&apos;t work properly.
- - Get rid of xdebug.default_enable setting and associated functions:
- xdebug_disable() and xdebug_enable().
-
-+ Added features:
- - Implemented support for four different xdebug.collect_params settings for
- stack traces and function traces.
- - Allow to trigger profiling by the XDEBUG_PROFILE cookie.
+ - 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&apos;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&apos;s eval() is encountered.
+ - Fixed bug #265: XDebug breaks error_get_last() .
+ - Fixed bug #261: Code coverage issues by overloading zend_assign_dim.
 
 + DBGP:
- - Correctly add namespace definitions to XML.
- - Added the xdebug namespace that adds extra information to breakpoints if
- available.
- - Stopped the use of &gt;error&gt; elements for exception breakpoints, as that
- violates the protocol.
+ - Added support for &quot;breakpoint_languages&quot;.
     
  </notes>
  <contents>
@@ -183,6 +168,51 @@
  <changelog>
   <release>
    <version>
+ <release>2.0.0</release>
+ <api>2.0.0</api>
+ </version>
+ <stability>
+ <release>stable</release>
+ <api>stable</api>
+ </stability>
+ <date>2007-07-18</date>
+ <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
+ <notes>Wed, Jul 18, 2007 - xdebug 2.0.0
+
++ 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&apos;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&apos;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 &quot;breakpoint_languages&quot;.
+
+ </notes>
+ </release>
+ <release>
+ <version>
     <release>2.0.0RC4</release>
     <api>2.0.0RC4</api>
    </version>

[FILE: /xdebug/php_xdebug.h]

===================================================================
RCS file: cvstemp,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -r1.132 -r1.133
--- xdebug/php_xdebug.h:1.132 Sun Jun 24 18:20:17 2007 GMT
+++ xdebug/php_xdebug.h Wed Jul 18 15:34:56 2007 GMT
@@ -20,7 +20,7 @@
 #define PHP_XDEBUG_H
 
 #define XDEBUG_NAME "Xdebug"
-#define XDEBUG_VERSION "2.0.0RC5-dev"
+#define XDEBUG_VERSION "2.0.0"
 #define XDEBUG_AUTHOR "Derick Rethans"
 #define XDEBUG_COPYRIGHT "Copyright (c) 2002-2007 by Derick Rethans"
 #define XDEBUG_URL "http://xdebug.org"
Received on Wed Jul 18 2007 - 19:34:59 BST

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