forked from xdebug/xdebug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.xml
1802 lines (1708 loc) · 70.1 KB
/
package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<package
packagerversion="1.9.4" version="2.0"
xmlns="http://pear.php.net/dtd/package-2.0"
xmlns:tasks="http://pear.php.net/dtd/tasks-1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
<name>xdebug</name>
<channel>pecl.php.net</channel>
<summary>Provides functions for function traces and profiling</summary>
<description>The Xdebug extension helps you debugging your script by providing a lot of
valuable debug information. The debug information that Xdebug can provide
includes the following:
* stack and function traces in error messages with:
o full parameter display for user defined functions
o function name, file name and line indications
o support for member functions
* memory allocation
* protection for infinite recursions
Xdebug also provides:
* profiling information for PHP scripts
* code coverage analysis
* capabilities to debug your scripts interactively with a debug client
</description>
<lead>
<name>Derick Rethans</name>
<user>derick</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2012-05-08</date>
<time>12:00:00</time>
<version>
<release>2.2.0</release>
<api>2.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Tue, May 08, 2012 - xdebug 2.2.0
+ Added features:
- Support for PHP 5.4.
- Added ANSI colour output for the shell. (Including patches by Michael
Maclean)
- Added var_dump() overloading on the command line (issue #457).
- Added better support for closures in stack and function traces.
- Added the size of arrays to the overloaded variable output, so that you
know how many elements there are.
- Added support for X-HTTP-FORWARDED-FOR before falling back to REMOTE_ADDR
(issue #660). (Patch by Hannes Magnusson)
- Added the method call type to xdebug_get_function_stack() (issue #695).
- Added extra information to error printouts to tell that the error
suppression operator has been ignored due to xdebug.scream.
- Added a error-specific CSS class to stack traces.
+ New settings:
- xdebug.cli_color for colouring output on the command line (Unix only).
- Added xdebug.trace_enable_trigger to triger function traces through a
GET/POST/COOKIE parameter (issue #517). (Patch by Patrick Allaert)
- Added support for the 'U' format specifier for function trace and
profiler filenames.
+ Changes:
- Improved performance by lazy-initializing data structures.
- Improved code coverage performance. (Including some patches by Taavi
Burns)
- Improved compatibility with KCacheGrind.
- Improved logging of remote debugging connections, by added connection
success/failure logging to the xdebug.remote_log functionality.
= Fixed bugs:
- Fixed bug #827: Enabling Xdebug causes phpt tests to fail because of
var_dump() formatting issues.
- Fixed bug #823: Single quotes are escaped in var_dumped string output.
- Fixed issue #819: Xdebug 2.2.0RC2 can't stand on a breakpoint more than 30 seconds.
- Fixed bug #801: Segfault with streamwrapper and unclosed $fp on
destruction.
- Fixed issue #797: Xdebug crashes when fetching static properties.
- Fixed bug #794: Allow coloured output on Windows.
- Fixed bug #784: Unlimited feature for var_display_max_data and
var_display_max_depth is undocumented.
- Fixed bug #774: Apache crashes on header() calls.
- Fixed bug #764: Tailored Installation instructions do not work.
- Fixed bug #758: php_value xdebug.idekey is ignored in .htaccess files
- Fixed bug #728: Profiler reports __call() invocations confusingly/wrongly.
- Fixed bug #687: Xdebug does not show dynamically defined variable.
- Fixed bug #662: idekey is set to running user.
- Fixed bug #627: Added the realpath check.
</notes>
<contents>
<dir name="/">
<dir name="contrib">
<file name="tracefile-analyser.php" role="doc" />
<file name="xt.vim" role="doc" />
</dir> <!-- /contrib -->
<dir name="debugclient">
<dir name="build">
<file name="buildcheck.sh" role="src" />
<file name="buildconf1.mk" role="src" />
<file name="buildconf2.mk" role="src" />
<file name="clean.mk" role="src" />
<file name="config-stubs" role="src" />
</dir> <!-- /debugclient/build -->
<file name="acinclude.m4" role="src" />
<file name="buildconf" role="src" />
<file name="config.guess" role="src" />
<file name="config.h.in" role="src" />
<file name="config.sub" role="src" />
<file name="configure" role="src" />
<file name="configure.in" role="src" />
<file name="cvsclean" role="src" />
<file name="debugclient.dsp" role="src" />
<file name="depcomp" role="src" />
<file name="INSTALL" role="src" />
<file name="install-sh" role="src" />
<file name="LICENSE" role="src" />
<file name="ltmain.sh" role="src" />
<file name="main.c" role="src" />
<file name="Makefile.in" role="src" />
<file name="missing" role="src" />
<file name="mkinstalldirs" role="src" />
<file name="usefulstuff.c" role="src" />
<file name="usefulstuff.h" role="src" />
</dir> <!-- /debugclient -->
<file name="config.m4" role="src" />
<file name="config.w32" role="src" />
<file name="CREDITS" role="doc" />
<file name="LICENSE" role="doc" />
<file name="Makefile.frag" role="src" />
<file name="Makefile.in" role="src" />
<file name="NEWS" role="doc" />
<file name="php_xdebug.h" role="src" />
<file name="README" role="doc" />
<file name="usefulstuff.c" role="src" />
<file name="usefulstuff.h" role="src" />
<file name="xdebug.c" role="src" />
<file name="xdebug_code_coverage.c" role="src" />
<file name="xdebug_code_coverage.h" role="src" />
<file name="xdebug_com.c" role="src" />
<file name="xdebug_com.h" role="src" />
<file name="xdebug_compat.c" role="src" />
<file name="xdebug_compat.h" role="src" />
<file name="xdebug_handlers.c" role="src" />
<file name="xdebug_handlers.h" role="src" />
<file name="xdebug_handler_dbgp.c" role="src" />
<file name="xdebug_handler_dbgp.h" role="src" />
<file name="xdebug_hash.c" role="src" />
<file name="xdebug_hash.h" role="src" />
<file name="xdebug_llist.c" role="src" />
<file name="xdebug_llist.h" role="src" />
<file name="xdebug_mm.h" role="src" />
<file name="xdebug_private.c" role="src" />
<file name="xdebug_private.h" role="src" />
<file name="xdebug_profiler.c" role="src" />
<file name="xdebug_profiler.h" role="src" />
<file name="xdebug_set.c" role="src" />
<file name="xdebug_set.h" role="src" />
<file name="xdebug_stack.c" role="src" />
<file name="xdebug_stack.h" role="src" />
<file name="xdebug_str.c" role="src" />
<file name="xdebug_str.h" role="src" />
<file name="xdebug_superglobals.c" role="src" />
<file name="xdebug_superglobals.h" role="src" />
<file name="xdebug_tracing.c" role="src" />
<file name="xdebug_tracing.h" role="src" />
<file name="xdebug_trace_textual.c" role="src" />
<file name="xdebug_trace_textual.h" role="src" />
<file name="xdebug_trace_computerized.c" role="src" />
<file name="xdebug_trace_computerized.h" role="src" />
<file name="xdebug_trace_html.c" role="src" />
<file name="xdebug_trace_html.h" role="src" />
<file name="xdebug_var.c" role="src" />
<file name="xdebug_var.h" role="src" />
<file name="xdebug_xml.c" role="src" />
<file name="xdebug_xml.h" role="src" />
</dir> <!-- / -->
</contents>
<dependencies>
<required>
<php>
<min>5.1.0</min>
</php>
<pearinstaller>
<min>1.4.0b1</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>xdebug</providesextension>
<zendextsrcrelease />
<changelog>
<release>
<version>
<release>2.2.0</release>
<api>2.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2012-05-08</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Tue, May 08, 2012 - xdebug 2.2.0
+ Added features:
- Support for PHP 5.4.
- Added ANSI colour output for the shell. (Including patches by Michael
Maclean)
- Added var_dump() overloading on the command line (issue #457).
- Added better support for closures in stack and function traces.
- Added the size of arrays to the overloaded variable output, so that you
know how many elements there are.
- Added support for X-HTTP-FORWARDED-FOR before falling back to REMOTE_ADDR
(issue #660). (Patch by Hannes Magnusson)
- Added the method call type to xdebug_get_function_stack() (issue #695).
- Added extra information to error printouts to tell that the error
suppression operator has been ignored due to xdebug.scream.
- Added a error-specific CSS class to stack traces.
+ New settings:
- xdebug.cli_color for colouring output on the command line (Unix only).
- Added xdebug.trace_enable_trigger to triger function traces through a
GET/POST/COOKIE parameter (issue #517). (Patch by Patrick Allaert)
- Added support for the 'U' format specifier for function trace and
profiler filenames.
+ Changes:
- Improved performance by lazy-initializing data structures.
- Improved code coverage performance. (Including some patches by Taavi
Burns)
- Improved compatibility with KCacheGrind.
- Improved logging of remote debugging connections, by added connection
success/failure logging to the xdebug.remote_log functionality.
= Fixed bugs:
- Fixed bug #827: Enabling Xdebug causes phpt tests to fail because of
var_dump() formatting issues.
- Fixed bug #823: Single quotes are escaped in var_dumped string output.
- Fixed issue #819: Xdebug 2.2.0RC2 can't stand on a breakpoint more than 30 seconds.
- Fixed bug #801: Segfault with streamwrapper and unclosed $fp on
destruction.
- Fixed issue #797: Xdebug crashes when fetching static properties.
- Fixed bug #794: Allow coloured output on Windows.
- Fixed bug #784: Unlimited feature for var_display_max_data and
var_display_max_depth is undocumented.
- Fixed bug #774: Apache crashes on header() calls.
- Fixed bug #764: Tailored Installation instructions do not work.
- Fixed bug #758: php_value xdebug.idekey is ignored in .htaccess files
- Fixed bug #728: Profiler reports __call() invocations confusingly/wrongly.
- Fixed bug #687: Xdebug does not show dynamically defined variable.
- Fixed bug #662: idekey is set to running user.
- Fixed bug #627: Added the realpath check.
</notes>
</release>
<release>
<version>
<release>2.2.0RC2</release>
<api>2.2.0RC2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2012-04-22</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Tue, Apr 22, 2012 - xdebug 2.2.0rc2
= Fixed bugs:
- Fixed bug #801: Segfault with streamwrapper and unclosed $fp on
destruction.
- Fixed bug #794: Allow coloured output on Windows.
- Fixed bug #784: Unlimited feature for var_display_max_data and
var_display_max_depth is undocumented.
- Fixed bug #774: Apache crashes on header() calls.
- Fixed bug #764: Tailored Installation instructions do not work.
- Fixed bug #758: php_value xdebug.idekey is ignored in .htaccess files
- Fixed bug #662: idekey is set to running user.
</notes>
</release>
<release>
<version>
<release>2.2.0RC1</release>
<api>2.2.0RC1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2012-03-12</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Tue, Mar 13, 2012 - xdebug 2.2.0rc1
+ Added features:
- Support for PHP 5.4.
- Added ANSI colour output for the shell. (Including patches by Michael
Maclean)
- Added var_dump() overloading on the command line (issue #457).
- Added better support for closures in stack and function traces.
- Added the size of arrays to the overloaded variable output, so that you
know how many elements there are.
- Added support for X-HTTP-FORWARDED-FOR before falling back to REMOTE_ADDR
(issue #660). (Patch by Hannes Magnusson)
- Added the method call type to xdebug_get_function_stack() (issue #695).
- Added extra information to error printouts to tell that the error
suppression operator has been ignored due to xdebug.scream.
- Added a error-specific CSS class to stack traces.
+ New settings:
- xdebug.cli_color for colouring output on the command line (Unix only).
- Added xdebug.trace_enable_trigger to triger function traces through a
GET/POST/COOKIE parameter (issue #517). (Patch by Patrick Allaert)
- Added support for the 'U' format specifier for function trace and
profiler filenames.
+ Changes:
- Improved performance by lazy-initializing data structures.
- Improved code coverage performance. (Including some patches by Taavi
Burns)
- Improved compatibility with KCacheGrind.
- Improved logging of remote debugging connections, by added connection
success/failure logging to the xdebug.remote_log functionality.
= Fixed bugs:
- No additional bug fixes besides the ones from the 2.1 branch up til
Xdebug 2.1.4.
</notes>
</release>
<release>
<version>
<release>2.1.4</release>
<api>2.1.4</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2012-03-12</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
= Fixed bugs:
- Fixed bug #788: Collect errors eats fatal errors.
- Fixed bug #787: Segmentation Fault with PHP header_remove().
- Fixed bug #778: Xdebug session in Eclipse crash whenever it run into
simplexml_load_string call.
- Fixed bug #756: Added support for ZEND_*_*_OBJ and self::*.
- Fixed bug #747: Still problem with error message and soap client / soap
server.
- Fixed bug #744: new lines in a PHP file from Windows are displayed with
an extra white line with var_dump().
- Fixed an issue with debugging and the eval command.
- Fixed compilation with ZTS on PHP < 5.3
</notes>
</release>
<release>
<version>
<release>2.1.3</release>
<api>2.1.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2012-01-25</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
= Fixed bugs:
- Fixed bug #725: EG(current_execute_data) is not checked in xdebug.c,
xdebug_statement_call.
- Fixed bug #723: xdebug is stricter than PHP regarding Exception property
types.
- Fixed bug #714: Cachegrind files have huge (wrong) numbers in some lines.
- Fixed bug #709: Xdebug doesn't understand E_USER_DEPRECATED.
- Fixed bug #698: Allow xdebug.remote_connect_back to be set in .htaccess.
- Fixed bug #690: Function traces are not appended to file with
xdebug_start_trace() and xdebug.trace_options=1.
- Fixed bug #623: Static properties of a class can be evaluated only with
difficulty.
- Fixed bug #614/#619: Viewing private variables in base classes through
the debugger.
- Fixed bug #609: Xdebug and SOAP extension's error handlers conflict.
- Fixed bug #606/#678/#688/#689/#704: crash after using eval on an
unparsable, or un-executable statement.
- Fixed bug #305: xdebug exception handler doesn't properly handle special
chars.
+ Changes:
- Changed xdebug_break() to hint to the statement execution trap instead of
breaking forcefully adding an extra stackframe.
- Prevent Xdebug 2.1.x to build with PHP 5.4.
</notes>
</release>
<release>
<version>
<release>2.1.2</release>
<api>2.1.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-07-28</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
= Fixed bugs:
- Fixed bug #622: Working with eval() code is inconvenient and difficult.
- Fixed bug #684: xdebug_var_dump - IE does not support &.
- Fixed bug #693: Cachegrind files not written when filename is very long.
- Fixed bug #697: Incorrect code coverage of function arguments when using
XDEBUG_CC_UNUSED.
- Fixed bug #699: Xdebug gets the filename wrong for the countable
interface.
- Fixed bug #703 by adding another opcode to the list that needs to be
overridden.
</notes>
</release>
<release>
<version>
<release>2.1.2</release>
<api>2.1.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-07-28</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
= Fixed bugs:
- Fixed bug #622: Working with eval() code is inconvenient and difficult.
- Fixed bug #684: xdebug_var_dump - IE does not support &.
- Fixed bug #693: Cachegrind files not written when filename is very long.
- Fixed bug #697: Incorrect code coverage of function arguments when using
XDEBUG_CC_UNUSED.
- Fixed bug #699: Xdebug gets the filename wrong for the countable
interface.
- Fixed bug #703 by adding another opcode to the list that needs to be
overridden.
</notes>
</release>
<release>
<version>
<release>2.1.1</release>
<api>2.1.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-03-28</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Mon, Mar 28, 2011 - xdebug 2.1.1
= Fixed bugs:
- Fixed ZTS compilation.
</notes>
</release>
<release>
<version>
<release>2.1.1RC1</release>
<api>2.1.1RC1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2011-03-22</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Tue, Mar 22, 2011 - xdebug 2.1.1rc1
= Fixed bugs:
= Debugger
- Fixed bug #518: Removed CLASSNAME pseudo-property optional.
- Fixed bug #592: Xdebug crashes with run after detach.
- Fixed bug #596: Call breakpoint never works with instance methods, only
static methods.
- Fixed JIT mode in the debugger so that it works for xdebug_break() too.
= Profiler
- Fixed bug #631: Summary not written when script ended with "exit()".
- Fixed bug #639: Xdebug profiling: output not correct - missing 'cfl='.
- Fixed bug #642: Fixed line numbers for offsetGet, offsetSet,
__get/__set/__isset/__unset and __call in profile files and stack
traces/function traces.
- Fixed bug #643: Profiler gets line numbers wrong.
- Fixed bug #653: XDebug profiler crashes with %H in file name and non
standard port.
= Others
- Fixed bug #651: Incorrect code coverage after empty() in conditional.
- Fixed bug #654: Xdebug hides error message in CLI.
- Fixed bug #665: Xdebug does not respect display_errors=stderr.
Patch by Ben Spencer <[email protected]>
- Fixed bug #670: Xdebug crashes with broken "break x" code.
</notes>
</release>
<release>
<version>
<release>2.1.0</release>
<api>2.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2010-06-29</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Tue, Jun 29, 2010 - xdebug 2.1.0
= Fixed bugs:
- Fixed bug #562: Incorrect coverage information for closure function
headers.
- Fixed bug #566: Xdebug crashes when using conditional breakpoints.
- Fixed bug #567: xdebug_debug_zval and xdebug_debug_zval_stdout don't work
with PHP 5.3. (Patch by Endo Hiroaki).
- Fixed bug #570: undefined symbol: zend_memrchr.
</notes>
</release>
<release>
<version>
<release>2.1.0RC1</release>
<api>2.1.0RC1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2010-02-27</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Thu, Apr 06, 2010 - xdebug 2.1.0rc1
= Fixed bugs:
- Fixed bug #494: Private attributes of parent class unavailable when
inheriting.
- Fixed bug #400: Xdebug shows errors, even when PHP is request startup
mode.
- Fixed bug #421: xdebug sends back invalid characters in xml sometimes.
- Fixed bug #475: Property names with null chars are not sent fully to the
client.
- Fixed bug #480: Issues with the reserved resource in multi threaded
environments (Patch by [email protected]).
- Fixed bug #558: PHP segfaults when running a nested eval.
</notes>
</release>
<release>
<version>
<release>2.1.0beta3</release>
<api>2.1.0beta3</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2010-02-27</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Sat, Feb 27, 2010 - xdebug 2.1.0beta3
= Fixed bugs:
- Fixed memory corruption issues.
- Fixed a threading related issue for code-coverage.
- Fixed bug #532: XDebug breaks header() function.
- DBGP: Prevent Xdebug from returning properties when a too high page number
has been requested.
</notes>
</release>
<release>
<version>
<release>2.1.0beta2</release>
<api>2.1.0beta2</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2010-02-03</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Wed, Feb 03, 2010 - xdebug 2.1.0beta2
= Fixed bugs:
- Fixed memory leak in breakpoint handling.
- Fixed bug #528: Core dump generated with remote_connect_back option set
and CLI usage.
- Fixed bug #515: declare(ticks) statement confuses code coverage.
- Fixed bug #512: DBGP: breakpoint_get doesn't return conditions in its
response.
- Possible fix for bug #507/#517: Crashes because of uninitalised header
globals.
- Fixed bug #501: Xdebug's variable tracing misses POST_INC and variants.
</notes>
</release>
<release>
<version>
<release>2.1.0beta1</release>
<api>2.1.0beta1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2010-01-03</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Sun, Jan 03, 2010 - xdebug 2.1.0beta1
+ Added features:
- Added error display collection and suppressions.
- Added the recording of headers being set in scripts.
- Added variable assignment tracing.
- Added the ability to turn of the default overriding of var_dump().
- Added "Scream" support, which disables the @ operator.
- Added a trace-file analysing script.
- Added support for debugging into phars.
- Added a default xdebug.ini. (Patch by Martin SchuhfuÃ
<[email protected]>)
- Added function parameters in computerized function traces.
- PHP 5.3 compatibility.
- Improved code coverage accuracy.
+ New functions:
- xdebug_get_formatted_function_stack(), which returns a formatted function
stack instead of displaying it.
- xdebug_get_headers(), which returns all headers that have been set in a
script, both explicitly with things like header(), but also implicitly
for things like setcookie().
- xdebug_start_error_collection(), xdebug_stop_error_collection() and
xdebug_get_collected_errors(), which allow you to collect all notices,
warnings and error messages that Xdebug generates from PHP's
error_reporting functionality so that you can output them at a later
point in your script by hand.
+ New settings:
- xdebug.collect_assignments, which enables the emitting of variable
assignments in function traces.
- xdebug.file_line_format, to generate a link with a specific format for
every filename that Xdebug outputs.
- xdebug.overload_var_dump, which allows you to turn off Xdebug's version
of var_dump().
- xdebug.remote_cookie_expire_time, that controls the length of a
remote debugging session. (Patch by Rick Pannen <[email protected]>)
- xdebug.scream, which makes the @ operator to be ignored.
+ Changes:
- Added return values for xdebug_start_code_coverage() and
xdebug_stop_code_coverage() to indicate whether the action was
successful. xdebug_start_code_coverage() will return TRUE if the call
enabled code coverage, and FALSE if it was already enabled.
xdebug_stop_code_coverage() will return FALSE when code coverage wasn't
started yet and TRUE if it was turned on.
- Added an optional argument to xdebug_print_function_stack() to display
your own message. (Patch by Mikko Koppanen).
- All HTML output as generated by Xdebug now has a HTML "class" attribute
for easy CSS formatting.
- Removed features:
- Support for PHP versions lower than PHP 5.1 have been dropped.
- The PHP3 and GDB debugger engines have been removed.
= Fixed bugs:
- Fixed support for showing $this in remote debugging sessions.
- Fixed bug in formatting the display of "Variables in the local scope".
- Possible fix for a threading issue where the headers gathering function
would create stack overflows.
- Possible fix for #324: xdebug_dump_superglobals() only dumps superglobals
that were accessed before, and #478: XDebug 2.0.x can't use %R in
xdebug.profiler_output_name if register_long_arrays is off.
- Fixed bug #505: %s in xdebug.trace_output_name breaks functions traces.
- Fixed bug #494: Private attributes of parent class unavailable when
inheriting.
- Fixed bug #486: feature_get -n breakpoint_types returns out of date list.
- Fixed bug #476: Xdebug doesn't support PHP 5.3's exception chaining.
- Fixed bug #472: Dead Code Analysis for code coverage messed up after goto.
- Fixed bug #470: Catch blocks marked as dead code unless executed.
- Fixed bug #469: context_get for function variables always appear as
"uninitialized".
- Fixed bug #468: Property_get on $GLOBALS works only at top-level, by
adding GLOBALS to the super globals context.
- Fixed bug #453: Memory leaks.
- Fixed bug #445: error_prepend_string and error_append_string are ignored
by xdebug_error_cb. (Patch by Kent Davidson <[email protected]>)
- Fixed bug #442: configure: error: "you have strange libedit".
- Fixed bug #439: Xdebug crash in xdebug_header_handler.
- Fixed bug #423: Conflicts with funcall.
- Fixed bug #419: Make use of P_tmpdir if defined instead of hard coded
'/tmp'.
- Fixed bug #417: Response of context_get may lack page and pagesize
attributes.
- Fixed bug #411: Class/function breakpoint setting does not follow the
specs.
- Fixed bug #393: eval returns array data at the previous page request.
- Fixed bug #391: Xdebug doesn't stop executing script on catchable fatal
errors.
- Fixed bug #389: Destructors called on fatal error.
- Fixed bug #368: Xdebug's debugger bails out on a parse error with the
eval command.
- Fixed bug #356: Temporary breakpoints persist.
- Fixed bug #355: Function numbers in trace files weren't unique.
- Fixed bug #340: Segfault while throwing an Exception.
- Fixed bug #328: Private properties are incorrectly enumerated in case of
extended classes.
- Fixed bug #249: Xdebug's error handler messes up with the SOAP
extension's error handler.
+ DBGP:
- Fixed cases where private properties where shown for objects, but not
accessible.
- Added a patch by Lucas Nealan ([email protected]) and Brian Shire
([email protected]) of Facebook to allow connections to the initiating
request's IP address for remote debugging.
- Added the -p argument to the eval command as well, pending inclusion into
DBGP.
- Added the retrieval of a file's execution lines. I added a new
un-official method called xcmd_get_executable_lines which requires the
stack depth as argument (-d). You can only fetch this information for
stack frames as it needs an available op-array which is only available
when a function is executed.
- Added a fake "CLASSNAME" property to objects that are returned in debug
requests to facilitate deficiencies in IDEs that fail to show the "classname"
XML attribute.
</notes>
</release>
<release>
<version>
<release>2.0.5</release>
<api>2.0.5</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2009-07-03</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<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>
<version>
<release>2.0.4</release>
<api>2.0.4</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2008-12-30</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<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
<[email protected]>).
- Link against the correct CRT library. (Patch by Eric Promislow
<[email protected]>).
- Sort the symbol elements according to name. (Patch by Eric Promislow
<[email protected]>).
- Fixed support for mapped-drive UNC paths for Windows. (Patch by Eric
Promislow <[email protected]>).
- 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
<[email protected]>).
- 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>
<version>
<release>2.0.3</release>
<api>2.0.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2008-04-09</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<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>
<version>
<release>2.0.2</release>
<api>2.0.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2007-11-11</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<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>
<version>
<release>2.0.1</release>
<api>2.0.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2007-10-29</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<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>
<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'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>
<version>
<release>2.0.0RC4</release>
<api>2.0.0RC4</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2007-05-17</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Wed, May 17, 2007 - xdebug 2.0.0rc4
+ 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 %
= 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