forked from xdebug/xdebug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.xml
3997 lines (3599 loc) · 148 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>Xdebug is a debugging and productivity extension for PHP</summary>
<description>
Xdebug and provides a range of features to improve the PHP development
experience.
Step Debugging
A way to step through your code in your IDE or editor while the script is
executing.
Improvements to PHP's error reporting
An improved var_dump() function, stack traces for Notices, Warnings, Errors
and Exceptions to highlight the code path to the error
Tracing
Writes every function call, with arguments and invocation location to disk.
Optionally also includes every variable assignment and return value for
each function.
Profiling
Allows you, with the help of visualisation tools, to analyse the
performance of your PHP application and find bottlenecks.
Code Coverage Analysis
To show which parts of your code base are executed when running unit tests
with PHP Unit.
</description>
<lead>
<name>Derick Rethans</name>
<user>derick</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2022-06-06</date>
<time>16:30:05</time>
<version>
<release>3.1.5</release>
<api>3.1.5</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Mon, Jun 06, 2022 - Xdebug 3.1.5
= Fixed bugs:
- Fixed issue #2056: Install documentation gives wrong arch for installation on M1 Macs
- Fixed issue #2082: phpize --clean removes required clocks.m4 file
- Fixed issue #2083: Constant defined with an enum case produce double "facet" attribute in context_get response
- Fixed issue #2085: Crash when used with source guardian encoded files
- Fixed issue #2090: Segfault in __callStatic() after FFI initialization
</notes>
<contents>
<dir name="/">
<dir name="contrib">
<file name="tracefile-analyser.php" role="doc" />
<file name="xt.vim" role="doc" />
</dir> <!-- /contrib -->
<file name="config.m4" role="src" />
<file name="config.w32" role="src" />
<file name="CREDITS" role="doc" />
<file name="LICENSE" role="doc" />
<file name="xdebug.ini" role="doc" />
<file name="Makefile.frag" role="src" />
<file name="CONTRIBUTING.rst" role="doc" />
<file name="README.rst" role="doc" />
<file name="run-xdebug-tests.php" role="src" />
<file name="xdebug.c" role="src" />
<file name="php_xdebug.h" role="src" />
<file name="php_xdebug_arginfo.h" role="src" />
<dir name="m4">
<file name="clocks.m4" role="src" />
<file name="pkg.m4" role="src" />
</dir>
<dir name="src">
<dir name="base">
<file name="base.c" role="src" />
<file name="base.h" role="src" />
<file name="base_globals.h" role="src" />
<file name="base_private.h" role="src" />
<file name="filter.c" role="src" />
<file name="filter.h" role="src" />
</dir>
<dir name="lib">
<file name="usefulstuff.c" role="src" />
<file name="usefulstuff.h" role="src" />
<file name="compat.c" role="src" />
<file name="compat.h" role="src" />
<file name="crc32.c" role="src" />
<file name="crc32.h" role="src" />
<file name="file.c" role="src" />
<file name="file.h" role="src" />
<file name="hash.c" role="src" />
<file name="hash.h" role="src" />
<file name="headers.c" role="src" />
<file name="headers.h" role="src" />
<file name="lib.c" role="src" />
<file name="lib.h" role="src" />
<file name="log.c" role="src" />
<file name="log.h" role="src" />
<file name="lib_private.h" role="src" />
<file name="llist.c" role="src" />
<file name="llist.h" role="src" />
<file name="mm.h" role="src" />
<file name="php-header.h" role="src" />
<file name="set.c" role="src" />
<file name="set.h" role="src" />
<file name="str.c" role="src" />
<file name="str.h" role="src" />
<file name="timing.c" role="src" />
<file name="timing.h" role="src" />
<file name="var.c" role="src" />
<file name="var.h" role="src" />
<file name="var_export_html.c" role="src" />
<file name="var_export_html.h" role="src" />
<file name="var_export_line.c" role="src" />
<file name="var_export_line.h" role="src" />
<file name="var_export_text.c" role="src" />
<file name="var_export_text.h" role="src" />
<file name="var_export_xml.c" role="src" />
<file name="var_export_xml.h" role="src" />
<file name="vector.h" role="src" />
<file name="xml.c" role="src" />
<file name="xml.h" role="src" />
</dir>
<dir name="coverage">
<file name="branch_info.c" role="src" />
<file name="branch_info.h" role="src" />
<file name="code_coverage.c" role="src" />
<file name="code_coverage.h" role="src" />
<file name="code_coverage_private.h" role="src" />
</dir>
<dir name="develop">
<file name="develop.c" role="src" />
<file name="develop.h" role="src" />
<file name="develop_private.h" role="src" />
<file name="monitor.c" role="src" />
<file name="monitor.h" role="src" />
<file name="php_functions.c" role="src" />
<file name="stack.c" role="src" />
<file name="stack.h" role="src" />
<file name="superglobals.c" role="src" />
<file name="superglobals.h" role="src" />
</dir>
<dir name="debugger">
<file name="com.c" role="src" />
<file name="com.h" role="src" />
<file name="debugger.c" role="src" />
<file name="debugger.h" role="src" />
<file name="debugger_private.h" role="src" />
<file name="handlers.c" role="src" />
<file name="handlers.h" role="src" />
<file name="handler_dbgp.c" role="src" />
<file name="handler_dbgp.h" role="src" />
<file name="ip_info.c" role="src" />
<file name="ip_info.h" role="src" />
</dir>
<dir name="gcstats">
<file name="gc_stats.c" role="src" />
<file name="gc_stats.h" role="src" />
<file name="gc_stats_private.h" role="src" />
</dir>
<dir name="profiler">
<file name="profiler.c" role="src" />
<file name="profiler.h" role="src" />
<file name="profiler_private.h" role="src" />
</dir>
<dir name="tracing">
<file name="tracing.c" role="src" />
<file name="tracing.h" role="src" />
<file name="tracing_private.h" role="src" />
<file name="trace_textual.c" role="src" />
<file name="trace_textual.h" role="src" />
<file name="trace_computerized.c" role="src" />
<file name="trace_computerized.h" role="src" />
<file name="trace_html.c" role="src" />
<file name="trace_html.h" role="src" />
</dir>
</dir>
</dir> <!-- / -->
</contents>
<dependencies>
<required>
<php>
<min>8.0.0</min>
<max>8.2.99</max>
</php>
<pearinstaller>
<min>1.9.1</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>xdebug</providesextension>
<zendextsrcrelease />
<changelog>
<release>
<date>2022-04-04</date>
<time>11:33:07</time>
<version>
<release>3.1.4</release>
<api>3.1.4</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Mon, Apr 04, 2022 - Xdebug 3.1.4
= Fixed bugs:
- Fixed issue #2006: Removing second call breakpoint with same function name
- Fixed issue #2060: XDebug breaks the Symfony "PhpFilesAdapter" cache adapter
- Fixed issue #2061: Possible use after free with GC Stats
- Fixed issue #2063: Can't inspect ArrayObject storage elements
- Fixed issue #2064: Segmentation fault in symfony cache
- Fixed issue #2068: Debug session can be started with "XDEBUG_SESSION_START=anything" when xdebug.trigger_value is set
- Fixed issue #2069: Warn when profiler_append is used together with zlib compression
- Fixed issue #2075: Code coverage misses static array assignment lines
</notes>
</release>
<release>
<date>2022-02-01</date>
<time>16:29:04</time>
<version>
<release>3.1.3</release>
<api>3.1.3</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, Feb 01, 2022 - Xdebug 3.1.3
= Fixed bugs:
- Fixed issue #2049: evaling broken code (still) causes unhandled exception in PHP 7.4
- Fixed issue #2052: Memory leak when a trace file can't be opened because xdebug.trace_output_name is invalid
- Fixed issue #2054: Slowdown when calling a function with long string parameters
- Fixed issue #2055: Debugger creates XML with double facet attribute
</notes>
</release>
<release>
<date>2021-12-01</date>
<time>15:41:13</time>
<version>
<release>3.1.2</release>
<api>3.1.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Wed, Dec 01, 2021 - Xdebug 3.1.2
= Fixed bugs:
- Fixed issue #2036: Segfault on fiber switch in finally block in garbage collected fiber
- Fixed issue #2037: Crash when profile file can not be created
- Fixed issue #2041: __debugInfo is not used for var_dump output
- Fixed issue #2046: Segault on xdebug_get_function_stack inside a Fiber
</notes>
</release>
<release>
<date>2021-10-15</date>
<time>13:19:59</time>
<version>
<release>3.1.1</release>
<api>3.1.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Fri, Oct 15, 2021 - Xdebug 3.1.1
= Fixed bugs:
- Fixed issue #2016: apache gives no output with xdebug 3.1.0b2 installed
- Fixed issue #2024: Apache restarts in a loop under PHP 8.1.0 RC3
- Fixed issue #2029: incorrect and inaccurate date and time displayed in xdebug.log and trace files
- Fixed issue #2030: PhpStorm step-debug not working on PHP 8.0.11
- Fixed issue #2032: Use runtime PHP version in DBGp and info pages instead of compiled-against version
- Fixed issue #2034: Xdebug throws a Segmentation fault when 'set_time_limit' function is disabled
- Fixed issue #2035: Xdebug block everything with localhost in XAMMP
</notes>
</release>
<release>
<date>2021-10-04</date>
<time>09:33:42</time>
<version>
<release>3.1.0</release>
<api>3.1.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>
Mon, Oct 04, 2021 - Xdebug 3.1.0
= Fixed bugs:
- Fixed issue #1472: Add assignments to computer readable trace format
- Fixed issue #1537: Add links to documentation to various different "features" after wizard has run
- Fixed issue #1738: Add xdebug_notify() function to send data through DBGp to a debugging client
- Fixed issue #1853: Enable profile compression for cachegrind files
- Fixed issue #1890: Add connected client and protocol features to diagnostic page
- Fixed issue #1898: API for querying the currently active mode(s)
- Fixed issue #1933: Allow for cloud ID to be set through the trigger
- Fixed issue #1938: Branches in traits aren’t marked as executed
- Fixed issue #1948: Do not redirect warning and error messages to PHP's error log if an Xdebug log is active
- Fixed issue #1949: private properties for internal classes can't be fetched for debugging
- Fixed issue #1963: php exit code = -1073741819 when xdebug.mode = off (Windows Thread Safe Only)
- Fixed issue #1969: Provide breakpoint ID / info in DBGp run command responses
- Fixed issue #1970: xdebug_get_function_stack with unnamed (internal) parameters have wrong index
- Fixed issue #1972: Add support for PHP 8.1 Fibers
- Fixed issue #1974: Add gzip support to trace files
- Fixed issue #1976: Switch debug session cookie to Lax, and remove expiry time
- Fixed issue #1978: Xdebug's log messages are cut off at 512 bytes
- Fixed issue #1980: PHP 8.1: Mark enum classes as "enum"
- Fixed issue #1986: Add support for multiple trigger values
- Fixed issue #1989: Profiling does not output correct class when parent keyword is used
- Fixed issue #1992: Code Coverage with filter produces Segmentation fault on xdebug_stop_code_coverage()
- Fixed issue #1993: eval-ing broken code causes stepping to break
- Fixed issue #1996: Add support for Closure visualisation in traces, debugging, and Xdebug's var_dump
- Fixed issue #1997: Added xdebug_connect_to_client() to attempt a debugging connect while running code
- Fixed issue #1998: Double facet attribute generated for enums that are stored in properties
- Fixed issue #1999: Add "readonly" facet to PHP 8.1 readonly properties
- Fixed issue #2001: Add 'xdebug.use_compression' setting to turn on/off compression for profiling files
- Fixed issue #2004: Figure out what "XDEBUG_SHOW_FNAME_TODO" define is for
- Fixed issue #2007: xdebug 3.x fails to build on OS X 10.11 or earlier due to clock_gettime_nsec_np requirement
- Fixed issue #2008: Using the XDEBUG_SESSION cookie could bypass shared-secret checks
- Fixed issue #2009: xdebug_stop_code_coverage's argument has type mismatch
- Fixed issue #2011: Closures as protected properties have double facet XML attribute
- Fixed issue #2013: Support PHP 8.1
- Fixed issue #2018: zlib compression support on Windows
- Fixed issue #2019: Xdebug crash because of uninitialized memory
- Fixed issue #2020: segfault if xdebug.dump.GET=* and integer key without value in URL
- Fixed issue #2021: Segmentation fault due to NULL bytes in internal anonymous class names
- Fixed issue #2025: Anonymous classes which extend are not detected as anonymous classes since PHP 8.0
</notes>
</release>
<release>
<date>2021-09-07</date>
<time>13:53:49</time>
<version>
<release>3.1.0beta2</release>
<api>3.1.0beta2</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Tue, Sep 07, 2021 - Xdebug 3.1.0beta2
= Fixed bugs:
- This is a packaging fix only release. The package missed a file that were needed
for building on PHP 7.2 and 8.1.
</notes>
</release>
<release>
<date>2021-09-05</date>
<time>16:22:41</time>
<version>
<release>3.1.0beta1</release>
<api>3.1.0beta1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Sun, Sep 05, 2021 - Xdebug 3.1.0beta1
+ New features:
- Fixed issue #1738: Add xdebug_notify() function to send data through DBGp to a debugging client
- Fixed issue #1853: Enable profile compression for cachegrind files
- Fixed issue #1898: API for querying the currently active mode(s)
- Fixed issue #1972: Add support for PHP 8.1 Fibers
- Fixed issue #1974: Add gzip support to trace files
- Fixed issue #1997: Added xdebug_connect_to_client() to attempt a debugging connect while running code
- Fixed issue #2001: Add 'xdebug.use_compression' setting to turn on/off compression for profiling files
- Fixed issue #2013: Support PHP 8.1
+ Improvements:
- Fixed issue #1472: Add assignments to computer readable trace format
- Fixed issue #1890: Add connected client and protocol features to diagnostic page
- Fixed issue #1933: Allow for cloud ID to be set through the trigger
- Fixed issue #1969: Provide breakpoint ID / info in DBGp run command responses
- Fixed issue #1976: Switch debug session cookie to Lax, and remove expiry time
- Fixed issue #1980: PHP 8.1: Mark enum classes as "enum"
- Fixed issue #1986: Add support for multiple trigger values
- Fixed issue #1996: Add support for Closure visualisation in traces, debugging, and Xdebug's var_dump
- Fixed issue #1999: Add "readonly" facet to PHP 8.1 readonly properties
= Fixed bugs:
- Fixed issue #1938: Branches in traits aren’t marked as executed
- Fixed issue #1948: Do not redirect warning and error messages to PHP's error log if an Xdebug log is active
- Fixed issue #1949: private properties for internal classes can't be fetched for debugging
- Fixed issue #1963: php exit code = -1073741819 when xdebug.mode = off (Windows Thread Safe Only)
- Fixed issue #1970: xdebug_get_function_stack with unnamed (internal) parameters have wrong index
- Fixed issue #1978: Xdebug's log messages are cut off at 512 bytes
- Fixed issue #1989: Profiling does not output correct class when parent keyword is used
- Fixed issue #1992: Code Coverage with filter produces Segmentation fault on xdebug_stop_code_coverage()
- Fixed issue #1993: eval-ing broken code causes stepping to break
- Fixed issue #1998: Double facet attribute generated for enums that are stored in properties
- Fixed issue #2004: Figure out what "XDEBUG_SHOW_FNAME_TODO" define is for
- Fixed issue #2008: Using the XDEBUG_SESSION cookie could bypass shared-secret checks
- Fixed issue #2009: xdebug_stop_code_coverage's argument has type mismatch
- Fixed issue #2011: Closures as protected properties have double facet XML attribute
+ Documentation
- Fixed issue #1537: Add links to documentation to various different "features" after wizard has run
</notes>
</release>
<release>
<date>2021-04-08</date>
<time>10:32:42</time>
<version>
<release>3.0.4</release>
<api>3.0.4</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Thu, Apr 08, 2021 - Xdebug 3.0.4
= Fixed bugs:
- Fixed issue #1802: Improve xdebug.org home page
- Fixed issue #1944: tracing is started without trigger, when profiler is also enabled
- Fixed issue #1947: xdebug_info() settings section does not show the modes that are overridden by XDEBUG_MODE
- Fixed issue #1950: Assignment trace with ASSIGN_OBJ_REF crashes
- Fixed issue #1954: Calling xdebug_start_trace without mode including tracing results in a fatal error
</notes>
</release>
<release>
<date>2021-02-22</date>
<time>10:53:09</time>
<version>
<release>3.0.3</release>
<api>3.0.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Mon, Feb 22, 2021 - Xdebug 3.0.3
= Fixed bugs:
- Fixed issue #1930: No local variables with trigger and xdebug_break()
- Fixed issue #1931: xdebug_info() output misses configuration settings if phpinfo() has been called
- Fixed issue #1932: One line in multi-line string concatenation is not covered
- Fixed issue #1940: Wrong type used for showing GC Stats reports
</notes>
</release>
<release>
<date>2021-01-04</date>
<time>17:08:58</time>
<version>
<release>3.0.2</release>
<api>3.0.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Mon, Jan 04, 2021 - Xdebug 3.0.2
= Fixed bugs:
- Fixed issue #1907: Empty exception message when setting the $message property to a stringable object
- Fixed issue #1910: Code coverage misses constructor property promotion code
- Fixed issue #1914: Compillation failure on OpenBSD
- Fixed issue #1915: Debugger should only start with XDEBUG_SESSION and not XDEBUG_PROFILE
- Fixed issue #1918: Warn if PHP's Garbage Collection is disabled in gc_stats mode
- Fixed issue #1919: Crash when enabling filter without the right mode active
- Fixed issue #1921: Xdebug does not start step debugging if start_with_request=trigger
- Fixed issue #1922: Code coverage misses array assignment lines
- Fixed issue #1924: Deprecated INI settings displayed in phpinfo()
- Fixed issue #1925: xdebug.start_with_request and start_upon_error display inconsistent values
- Fixed issue #1926: Add Xdebug mode's source to xdebug_info() output
- Fixed issue #1927: Crash when calling xdebug_stop_trace without a trace in progress
- Fixed issue #1928: xdebug_stop_gcstats() can also return false
</notes>
</release>
<release>
<date>2020-12-04</date>
<time>15:53:10</time>
<version>
<release>3.0.1</release>
<api>3.0.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Fri, Dec 4, 2020 - xdebug 3.0.1
= Fixed bugs:
- Fixed issue #1893: Crash with ext-fiber and xdebug.mode=coverage
- Fixed issue #1896: Segfault with closures that are not created from user code
- Fixed issue #1897: Crash when removing a breakpoint
- Fixed issue #1900: Update README and add run-xdebug-tests.php to package
- Fixed issue #1901: Stack traces are shown (with a broken time) when Xdebug's mode includes 'debug' but not 'develop' or 'trace'
- Fixed issue #1902: Compillation failure on AIX
- Fixed issue #1903: Constants should always be available, regardless of which mode Xdebug is in
- Fixed issue #1904: Profile and trace files using %t or %u do not get the right names
- Fixed issue #1905: Debugger does not disable request timeouts
</notes>
</release>
<release>
<date>2020-11-25</date>
<time>16:00:00</time>
<version>
<release>3.0.0</release>
<api>3.0.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>
Wed, Nov 25, 2020 - xdebug 3.0.0
Xdebug 3 includes major changes in functionality compared to Xdebug 2. The
primary way how you turn on functionality is through the new xdebug.mode PHP
configuration setting. This made it possible to massively increase performance
in many of Xdebug's sub systems as Xdebug is now much more conservative in
which hooks are enabled.
Configuration changes, massive performance improvements, and PHP 8 support are
the primary features in Xdebug 3, but there is much more. The upgrade guide
lists the changes in great detail, please read it:
https://xdebug.org/docs/upgrade_guide
-------------
+ New features:
- Implemented issue #1762: Introduce feature modes
- Implemented issue #1793: Add xdebug.start_upon_error setting to cover the removed xdebug.remote_mode=jit feature.
- Implemented issue #1797: Implement generic logging
- Implemented issue #1801: Rename mode 'display' to mode 'develop'
- Implemented issue #1831: Add diagnostics function xdebug_info()
- Implemented issue #1833: Add links to documentation in diagnostic log
- Implemented issue #1837: Support for associative variadic variable names (PHP 8)
- Implemented issue #1841: Add support for PHP 8 'match' keyword
+ Improvements:
- Implemented issue #1680: Update var dumping routines to include relevant information for interned strings and immutable arrays
- Implemented issue #1712: Add unit to profiler data types
- Implemented issue #1743: Figuring out whether a call is a closure uses string comparisions instead of checking the ACC flag (Benjamin Eberlei)
- Implemented issue #1752: Use a stack pool to manage stack entries instead of allocating and deallocating entries
- Implemented issue #1755: Overload pcntl_fork() to prevent performance degradation by calling xdebug_get_pid often (Carlos Granados)
- Implemented issue #1781: Include 'Xdebug' in max nesting level error message
- Implemented issue #1783: Stacktrace needs vertical scrolling on small screens (Tobias Tom)
- Implemented issue #1789: Provide PHP stubs for Xdebug's functions
- Implemented issue #1807: Document Xdebug installation with yum and apt
- Implemented issue #1813: Make sure that the xdebug_init_*_globals don't do more than they need to, and that init is only done when xdebug.mode != off
- Implemented issue #1817: Switch filename storage from char*/size_t to zend_string*
- Implemented issue #1818: Switch variable storage from char*/size_t to zend_string*
- Implemented issue #1820: Increase time tracing precision (Michael Voříšek)
- Implemented issue #1824: Allow Xdebug's mode to be set through an environment variable
- Implemented issue #1825: Improve profiler performance by not calling fflush after every function (Michael Voříšek)
- Implemented issue #1826: Reduce profiler memory allocation and call overhead
- Implemented issue #1829: Switch to 10ns profiler resolution (Michael Voříšek)
- Implemented issue #1832: If connect back host can not be contacted, fallback to remote_host/port
- Implemented issue #1858: Only open/close log if there is an actual message to log
- Implemented issue #1860: Allow xdebug.cloud_id to be set through an environment variable
- Implemented issue #1814: Don't obtain the current time when it's not needed
- Implemented issue #1835: Add current trace and profile file name, to diagnostic page
- Implemented issue #1885: Change xdebug.start_with_ settings to PHP_INI_SYSTEM|PHP_INI_PERDIR
- Implemented issue #1889: max_nesting_level should only trigger in "develop" mode
- Removed features:
- Implemented issue #1795: Deprecate PHP 7.1 support
- Implemented issue #1786: Remove idekey value fallback to USER/USERNAME environment variable
- Implemented issue #1809: Remove "overload_var_dump" setting
- Implemented issue #1810: Remove collect_vars and xdebug_get_declared_vars()
- Implemented issue #1812: Remove show_mem_delta setting
- Implemented issue #1838: Remove collect_params setting, and always default it to "4"
- Implemented issue #1847: Remove xdebug.remote_cookie_expire_time setting
- Implemented issue #1016: Removed support for pause-execution (introduced in beta1)
- Implemented issue #1868: Remove xdebug_disable and xdebug_enabled
- Implemented issue #1883: Function xdebug_is_enabled has been removed
= Changes:
- Implemented issue #1378: Unfortunate coupling of default_enable=1 and remote_mode=jit
- Implemented issue #1773: Replace all xdebug.*_output_dir settings with xdebug.output_dir
- Implemented issue #1785: Replace xdebug.remote_mode and xdebug.auto_trace with generic "start-with-request" setting
- Implemented issue #1791: Replace xdebug.*trigger*, xdebug.*trigger_value*, with xdebug.start_with_request=trigger and xdebug.trigger_value
- Implemented issue #1792: Change start_with_request=always/never to start_with_request=yes/no
- Implemented issue #1794: Replace the filter's blacklist/whitelist with exclude/include
- Implemented issue #1811: Remove xdebug.collect_includes setting and always include them
- Implemented issue #1843: Adjust XDEBUG_CONFIG checks, and document what can be set through it
- Implemented issue #1844: Add deprecation warning for removed and renamed configuration setting names
- Implemented issue #1845: Rename xdebug.remote_{host,port} to xdebug.client_{host,port}
- Implemented issue #1846: Rename setting xdebug.remote_timeout to xdebug.connect_timeout_ms
- Implemented issue #1848: Change default Xdebug port from 9000 to 9003
- Implemented issue #1850: Change array variable output in tracing to use modern [] syntax
- Implemented issue #1856: Rename xdebug.remote_connect_back to xdebug.discover_client_host
- Implemented issue #1857: Rename xdebug.remote_addr_header to xdebug.client_discovery_header
= Fixed bugs:
- Fixed issue #1608: XDEBUG_CONFIG env var make sessions automatically START ever (at least send the XDEBUG_SESSION cookie)
- Fixed issue #1726: Memory leaks spotted in various places in typical error code paths
- Fixed issue #1757: Pause-execution feature degrades performance
- Fixed issue #1864: Incompatibility with PCS and protobuf extensions
- Fixed issue #1870: XDEBUG_SESSION_START URL parameter does not override XDEBUG_SESSION cookie
- Fixed issue #1871: The "idekey" is not set when debugging is started through XDEBUG_SESSION cookie
- Fixed issue #1873: xdebug_info() segfaults if the diagnostic buffer is empty
- Fixed issue #1874: Incompatibility with protobuf extension
- Fixed issue #1875: Overflow with large amounts of elements for variadics
- Fixed issue #1878: Compilation failure: Socket options TCP_KEEPCNT and TCP_KEEPINTVL do not exist on Solaris 10 Sparc
- Fixed issue #1880: Bundled unit test tests/debugger/bug00886.phar misses to load phar extension
- Fixed issue #1887: Crash bug with xdebug_call_class and xdebug_call_file
- Fixed issue #1756: Php process won't exit after running connected to a client
- Fixed issue #1823: Profiler generates negative data for memory usage
- Fixed issue #1834: Return type must be bool in overloaded set_time_limit
- Fixed issue #1888: Make headers sticky in xdebug_info() output
+ Documentation
- Fixed issue #1865: Document XDEBUG_TRIGGER environment variable
- Fixed issue #1866: Document comma separated xdebug.mode values
- Fixed issue #1884: Document where Xdebug's settings can be set
- Fixed issue #1892: Document changed/removed ini settings in the upgrade guide with the links provided
</notes>
</release>
<release>
<date>2020-11-16</date>
<time>10:08:58</time>
<version>
<release>3.0.0RC1</release>
<api>3.0.0RC1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Mon, Nov 16, 2020 - xdebug 3.0.0RC1
This is a BETA release, and not ready for production environments.
Xdebug 3 has many changes. Please read the upgrade guide at
https://3.xdebug.org/docs/upgrade_guide
Xdebug 3 documentation is available at https://3.xdebug.org/docs
-------------
+ Improvements:
- Implemented issue #1814: Don't obtain the current time when it's not needed
- Implemented issue #1885: Change xdebug.start_with_ settings to PHP_INI_SYSTEM|PHP_INI_PERDIR
- Removed features:
- Implemented issue #1016: Removed support for pause-execution (introduced in beta1)
- Implemented issue #1868: Remove xdebug_disable and xdebug_enabled
- Implemented issue #1883: Function xdebug_is_enabled has been removed
= Fixed bugs:
- Fixed issue #1608: XDEBUG_CONFIG env var make sessions automatically START ever (at least send the XDEBUG_SESSION cookie)
- Fixed issue #1757: Pause-execution feature degrades performance
- Fixed issue #1864: Incompatibility with PCS and protobuf extensions
- Fixed issue #1870: XDEBUG_SESSION_START URL parameter does not override XDEBUG_SESSION cookie
- Fixed issue #1871: The "idekey" is not set when debugging is started through XDEBUG_SESSION cookie
- Fixed issue #1873: xdebug_info() segfaults if the diagnostic buffer is empty
- Fixed issue #1874: Incompatibility with protobuf extension
- Fixed issue #1875: Overflow with large amounts of elements for variadics
- Fixed issue #1878: Compilation failure: Socket options TCP_KEEPCNT and TCP_KEEPINTVL do not exist on Solaris 10 Sparc
- Fixed issue #1880: Bundled unit test tests/debugger/bug00886.phar misses to load phar extension
- Fixed issue #1887: Crash bug with xdebug_call_class and xdebug_call_file
+ Documentation
- Fixed issue #1865: Document XDEBUG_TRIGGER environment variable
- Fixed issue #1866: Document comma separated xdebug.mode values
- Fixed issue #1884: Document where Xdebug's settings can be set
</notes>
</release>
<release>
<date>2020-10-14</date>
<time>16:08:58</time>
<version>
<release>3.0.0beta1</release>
<api>3.0.0beta1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Wed, Oct 14, 2020 - xdebug 3.0.0beta1
This is a BETA release, and not ready for production environments.
Xdebug 3 has many changes. Please read the upgrade guide at
https://3.xdebug.org/docs/upgrade_guide
Xdebug 3 documentation is available at https://3.xdebug.org/docs
-------------
+ New features:
- Implemented issue #1762: Introduce feature modes
- Implemented issue #1793: Add xdebug.start_upon_error setting to cover the removed xdebug.remote_mode=jit feature.
- Implemented issue #1797: Implement generic logging
- Implemented issue #1801: Rename mode 'display' to mode 'develop'
- Implemented issue #1831: Add diagnostics function xdebug_info()
- Implemented issue #1833: Add links to documentation in diagnostic log
- Implemented issue #1837: Support for associative variadic variable names (PHP 8)
- Implemented issue #1841: Add support for PHP 8 'match' keyword
- Removed features:
- Implemented issue #1795: Deprecate PHP 7.1 support
- Implemented issue #1786: Remove idekey value fallback to USER/USERNAME environment variable
- Implemented issue #1809: Remove "overload_var_dump" setting
- Implemented issue #1810: Remove collect_vars and xdebug_get_declared_vars()
- Implemented issue #1812: Remove show_mem_delta setting
- Implemented issue #1838: Remove collect_params setting, and always default it to "4"
- Implemented issue #1847: Remove xdebug.remote_cookie_expire_time setting
= Changes:
- Implemented issue #1378: Unfortunate coupling of default_enable=1 and remote_mode=jit
- Implemented issue #1773: Replace all xdebug.*_output_dir settings with xdebug.output_dir
- Implemented issue #1785: Replace xdebug.remote_mode and xdebug.auto_trace with generic "start-with-request" setting
- Implemented issue #1791: Replace xdebug.*trigger*, xdebug.*trigger_value*, with xdebug.start_with_request=trigger and xdebug.trigger_value
- Implemented issue #1792: Change start_with_request=always/never to start_with_request=yes/no
- Implemented issue #1794: Replace the filter's blacklist/whitelist with exclude/include
- Implemented issue #1811: Remove xdebug.collect_includes setting and always include them
- Implemented issue #1844: Add deprecation warning for removed and renamed configuration setting names
- Implemented issue #1845: Rename xdebug.remote_{host,port} to xdebug.client_{host,port}
- Implemented issue #1846: Rename setting xdebug.remote_timeout to xdebug.connect_timeout_ms
- Implemented issue #1848: Change default Xdebug port from 9000 to 9003
- Implemented issue #1850: Change array variable output in tracing to use modern [] syntax
- Implemented issue #1856: Rename xdebug.remote_connect_back to xdebug.discover_client_host
- Implemented issue #1857: Rename xdebug.remote_addr_header to xdebug.client_discovery_header
+ Improvements:
- Implemented issue #1680: Update var dumping routines to include relevant information for interned strings and immutable arrays
- Implemented issue #1712: Add unit to profiler data types
- Implemented issue #1743: Figuring out whether a call is a closure uses string comparisions instead of checking the ACC flag (Benjamin Eberlei)
- Implemented issue #1752: Use a stack pool to manage stack entries instead of allocating and deallocating entries
- Implemented issue #1755: Overload pcntl_fork() to prevent performance degradation by calling xdebug_get_pid often (Carlos Granados)
- Implemented issue #1781: Include 'Xdebug' in max nesting level error message
- Implemented issue #1783: Stacktrace needs vertical scrolling on small screens (Tobias Tom)
- Implemented issue #1789: Provide PHP stubs for Xdebug's functions
- Implemented issue #1807: Document Xdebug installation with yum and apt
- Implemented issue #1813: Make sure that the xdebug_init_*_globals don't do more than they need to, and that init is only done when xdebug.mode != off
- Implemented issue #1817: Switch filename storage from char*/size_t to zend_string*
- Implemented issue #1818: Switch variable storage from char*/size_t to zend_string*
- Implemented issue #1820: Increase time tracing precision (Michael Voříšek)
- Implemented issue #1824: Allow Xdebug's mode to be set through an environment variable
- Implemented issue #1825: Improve profiler performance by not calling fflush after every function (Michael Voříšek)
- Implemented issue #1826: Reduce profiler memory allocation and call overhead
- Implemented issue #1829: Switch to 10ns profiler resolution (Michael Voříšek)
- Implemented issue #1832: If connect back host can not be contacted, fallback to remote_host/port
- Implemented issue #1858: Only open/close log if there is an actual message to log
- Implemented issue #1860: Allow xdebug.cloud_id to be set through an environment variable
= Fixed bugs:
- Fixed issue #1756: Php process won't exit after running connected to a client
- Fixed issue #1823: Profiler generates negative data for memory usage
- Fixed issue #1834: Return type must be bool in overloaded set_time_limit
</notes>
</release>
<release>
<date>2020-09-28</date>
<time>11:21:33</time>
<version>
<release>2.9.8</release>
<api>2.9.8</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Mon, Sep 28, 2020 - xdebug 2.9.8
= Fixed bugs:
- Fixed issue #1851: Paths are not counted as coveraged with loops calling function
- Fixed issue #1855: Build issues on FreeBSD
</notes>
</release>
<release>
<date>2020-09-16</date>
<time>15:11:45</time>
<version>
<release>2.9.7</release>
<api>2.9.7</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Wed, Sep 16, 2020 - xdebug 2.9.7
= Fixed bugs:
- Fixed issue #1839: Add keepalive options to debugging socket
</notes>
</release>
<release>
<date>2020-05-29</date>
<time>11:43:03</time>
<version>
<release>2.9.6</release>
<api>2.9.6</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Fri, May 29, 2020 - xdebug 2.9.6
= Fixed bugs:
- Fixed issue #1782: Cookie "XDEBUG_SESSION" will be soon rejected because it has the “sameSite” attribute set to none
- Fixed issue #1787: Branch coverage data does not always follow the lines/functions format
- Fixed issue #1790: Segfault in var_dump() or while debugging with protobuf extension
</notes>
</release>
<release>
<date>2020-04-25</date>
<time>14:56:10</time>
<version>
<release>2.9.5</release>
<api>2.9.5</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Sat, Apr 25, 2020 - xdebug 2.9.5
= Fixed bugs:
- Fixed issue #1772: Crash with exception thrown inside a destructor
- Fixed issue #1775: Segfault when another extension compiles a PHP file during RINIT
- Fixed issue #1779: Nested multi-line built-in function in namespace are not covered
</notes>
</release>
<release>
<date>2020-03-23</date>
<time>11:12:20</time>
<version>
<release>2.9.4</release>
<api>2.9.4</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Mon, Mar 23, 2020 - xdebug 2.9.4
= Fixed bugs:
- Fixed issue #1763: Crash while setting opcode overrides in ZTS mode.
- Fixed issue #1766: Using the DBGp detach command disables remote debugging for the whole process.
</notes>
</release>
<release>
<date>2020-03-13</date>
<time>16:49:40</time>
<version>
<release>2.9.3</release>
<api>2.9.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Fri, Mar 13, 2020 - xdebug 2.9.3
= Fixed bugs:
- Fixed issue #1753: Resolved breakpoints use information from wrong files
- Fixed issue #1758: Xdebug changes error_get_last results inside a try catch
- Fixed issue #1759: User registered opcode handlers should call ones already set by other extensions
</notes>
</release>
<release>
<date>2020-01-31</date>
<time>09:47:21</time>
<version>
<release>2.9.2</release>
<api>2.9.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Fri, Jan 31, 2020 - xdebug 2.9.2
= Fixed bugs:
- Fixed issue #1735: DBGp eval warning promoted to Exception can cause out-of-sync responses
- Fixed issue #1736: Segmentation fault when other extensions run PHP in RINIT