2016-09-11 19:03:29 by Takahiro Kambe | Files touched by this commit (53) |
Log message:
Drop "55" (php55) from PHP_VERSIONS_ACCEPTED.
|
2016-08-13 19:31:09 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update php-xdebug to 2.4.1.
* It support php70 but not yet php71.
Tue, Aug 02, 2016 - xdebug 2.4.1
= Fixed bugs:
- Fixed issue #1106: A thrown Exception after a class with __debugInfo gives
2 errors
- Fixed issue #1241: FAST_CALL/FAST_RET take #2
- Fixed issue #1246: Path and branch coverage should be initialised per
request, not globally
- Fixed issue #1263: Code coverage segmentation fault with opcache enabled
- Fixed issue #1277: Crash when using a userland function from RSHUTDOWN with
profiling enabled
- Fixed issue #1282: var_dump() of integers > 32 bit is broken on Windows
- Fixed issue #1288: Segfault when uncaught exception message does not
contain " in "
- Fixed issue #1291: Debugclient installation fails on Mac OS X
- Fixed issue #1326: Tracing and generators crashes with PHP 7.x
- Fixed issue #1333: Profiler accesses memory structures after freeing
|
2016-07-26 11:17:35 by Jaromir Dolecek | Files touched by this commit (2) | |
Log message:
update php-xdebug to version 2.4.0
Added features:
- Implemented issue #1109: Added support for PHP 7.
- Implemented issue #1153: Add function monitor functionality.
- Implemented issue #1183: Add xdebug.show_error_trace setting to
allow/disallow to show a stack trace for every Error (throwable)
Besides this, many bugfixes
|
2015-12-19 15:27:15 by Takahiro Kambe | Files touched by this commit (26) |
Log message:
Restrict PHP_VERSIONS_ACCEPTED to 55 and 56.
|
2015-11-03 04:29:40 by Alistair G. Crooks | Files touched by this commit (1995) |
Log message:
Add SHA512 digests for distfiles for devel category
Issues found with existing distfiles:
distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip
distfiles/fortran-utils-1.1.tar.gz
distfiles/ivykis-0.39.tar.gz
distfiles/enum-1.11.tar.gz
distfiles/pvs-3.2-libraries.tgz
distfiles/pvs-3.2-linux.tgz
distfiles/pvs-3.2-solaris.tgz
distfiles/pvs-3.2-system.tgz
No changes made to these distinfo files.
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
|
2015-08-30 10:26:00 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update php-xdebug to 2.3.3.
Fri, Jun 19, 2015 - xdebug 2.3.3
= Fixed bugs:
- Fixed issue #1130: Escaping issues with docrefs and HTML characters in
error messages
- Fixed issue #1133: PDO exception code value type is changed
- Fixed issue #1137: Windows does not support %zu formatting for sprintf
- Fixed issue #1140: Tracing with __debugInfo() crashes Xdebug due to a stack
overflow
- Fixed issue #1148: Can't disable max_nesting_function
- Fixed issue #1151: Crash when another extension calls call_user_function()
during RINIT
- Fixed crash with code coverage (Antony Dovgal)
- Fixed usage of virtual_file_ex and STR_FREE (Remi Collet)
- Reset overloaded opcodes at the end of each request (Eran Ifrah)
= Improvements:
- Fixed issue #686: Not possible to inspect SplObjectStorage instances with
Xdebug
- Fixed issue #864: No attributes are shown if an object extends
ArrayIterator
- Fixed issue #996: Can't evaluate property of class that extends ArrayObject
- Fixed issue #1134: Allow introspection of ArrayObject implementation's
internal storage
- Get rid of setlocale hack, by using %F instead of %f (and speed up tracing
by 15-20%)
|
2015-06-03 15:25:05 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update php-xdebug to 2.3.2.
[2015-03-22] - Xdebug 2.3.2 is out!
This is a minor bug-fix release for the 2.3 series, and addresses crashes
with path and branch coverage.
|
2015-03-15 01:43:32 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update php-xdebug to 2.3.1.
Tue, Feb 24, 2015 - xdebug 2.3.1
= Fixed bugs:
- Fixed issue #1112: Setting an invalid xdebug.trace_format causes Xdebug
to crash
- Fixed issue #1113: xdebug.*_trigger do no longer work, due to NULL not
being an empty string
|
2015-03-01 14:40:15 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update php-xdebug to 2.3.0.
2.3.0 Sun, Feb 22, 2015 - xdebug 2.3.0
= Fixed bugs:
- Fixed bug #932: Added an error message in case the remote debug log
couldn't be opened
- Fixed bug #982: Incorrect file paths in exception stack trace
- Fixed bug #1094: Segmentation fault when attempting to use branch/path
coverage
- Fixed bug #1101: Debugger is not triggered on xdebug_break() in JIT mode
- Fixed bug #1102: Stop Xdebug from crashing when debugging PHP Code with
"php -r".
- Fixed bug #1103: XDEBUG_SESSION_STOP_NO_EXEC only stops first script
executed with auto_prepend|append_files
- Fixed bug #1104: One character non-public properties cause issues with
debugging
- Fixed bug #1105: Setting properties without specifying a type only works in
topmost frame (Dominik del Bondio)
- Fixed bug #1095: Crash when using a non-associate array key in GLOBALS
- Fixed bug #1111: eval does not work when debugger is stopped in
xdebug_throw_exception_hook (Dominik del Bondio)
+ Added features:
- General
- Implemented issue #304: File name and line number info for overloaded
var_dump()
- Implemented issue #310: Allow class vars and array keys with
xdebug_debug_zval()
- Implemented issue #722: Add stack trace limit setting.
- Implemented issue #1003: Add option to xdebug_print_function_stack() to
suppress filename and line number
- Implemented issue #1004: Ability to halt on warning/notice
- Implemented issue #1023: Add support for PHP 5.6 variadics
- Implemented issue #1024: Add support for PHP 5.6's ASSIGN_POW
- Debugging
- Implemented issue #406: Added support for remote debugging user-defined
constants
- Implemented issue #495: Added support for the wildcard exception name '*'
- Implemented issue #1066: Better error message for SELinux preventing
debugging connections
- Implemented issue #1084: Added support for extended classes to trigger
exception breakpoints
- Implemented issue #1084: Added exception code as extra element to
debugger XML
- Tracing
- Implemented issue #341: Added the time index and memory usage for
function returns in normal tracefiles
- Implemented issue #644: Shared secret for profiler_enable_trigger and
trace_enable_trigger with *_value option
- Implemented issue #971: Added the trace file option
"XDEBUG_TRACE_NAKED_FILENAME" to xdebug_start_trace() to prevent the
".xt" extension from being added
- Implemented issue #1021: Added support for return values to computerized
trace files
- Implemented issue #1022: Added support for serialized variables as format
in trace files in the form of option "5" for \
"xdebug.collect_params"
- Code coverage
- Implemented issue #380: Added xdebug_code_coverage_started()
- Implemented issue #1034: Add collected path and branch information to
xdebug_get_code_coverage() output
- Profiling
- Implement issue #1054: Support for filename and function name compression
in cachegrind files
+ Changes:
- Implemented issue #863: Support xdebug.overload_var_dump through
ini_set()
- Implemented issue #973: Use case-insensitive filename comparison on all
systems (Galen Wright-Watson)
- Implemented issue #1015: Added the xdebug.force_display_errors and
xdebug.force_error_reporting php.ini-only settings to always override
PHP's settings for display_errors and error_reporting
- Implemented issue #1057: Removed trailing whitespace from example
xdebug.ini
- Implemented issue #1096: Improve performance improvement for handling
breakpoints by ignoring locales (Danief Sloof)
- Implemented issue #1100: Raise default max_nesting_level to 256
- Removed features:
- Support for PHP versions lower than PHP 5.4 have been dropped.
2.2.7 Thu, Jan 22, 2014 - xdebug 2.2.7
= Fixed bugs:
- Fixed bug #1083: Segfault when requesting a variable for a context that did
not have them.
- Fixed bug #1087: zend_execute_script or zend_eval_string in RINIT segfaults.
- Fixed bug #1088: Xdebug won't show dead and not executed lines at the second
time.
- Fixed bug #1098: Xdebug doesn't make use of __debugInfo.
- Fixed segfaults with ZTS on PHP 5.6.
2.2.6 Fri, Nov 14, 2014 - xdebug 2.2.6
= Fixed bugs:
- Fixed bug #1048: Can not get $GLOBAL variable by property_value on function
context.
- Fixed bug #1073 and #1075: Segmentation fault with internal functions
calling internal functions.
- Fixed bug #1085: Fixed the tracefile analyser as the format version had been
bumbed.
- Fixed memory leaks
|
2015-02-15 10:04:39 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Display zend_extension directive not extension.
Bump PKGREVISION.
|