forked from xdebug/xdebug
-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.xml
4492 lines (4016 loc) · 165 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="ISO-8859-1"?>
<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>2024-05-31</date>
<time>09:21:23</time>
<version>
<release>3.4.0alpha1</release>
<api>3.4.0alpha1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="https://xdebug.org/license/1.03" filesource="LICENSE">Xdebug-1.03</license>
<notes>
Fri, May 31, 2024 - Xdebug 3.4.0alpha1
= Fixed bugs:
- Fixed issue #2239: Add 'XDEBUG_IGNORE' GET/POST/COOKIE/ENV to make the step debugger ignore that specific request
- Fixed issue #2262: PHP 8.4: Closure names need different wrapping algorithm
</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" />
<file name="ctrl_socket.c" role="src" />
<file name="ctrl_socket.h" role="src" />
</dir>
<dir name="lib">
<file name="usefulstuff.c" role="src" />
<file name="usefulstuff.h" role="src" />
<file name="cmd_parser.c" role="src" />
<file name="cmd_parser.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_computerized.c" role="src" />
<file name="trace_computerized.h" role="src" />
<file name="trace_flamegraph.c" role="src" />
<file name="trace_flamegraph.h" role="src" />
<file name="trace_html.c" role="src" />
<file name="trace_html.h" role="src" />
<file name="trace_textual.c" role="src" />
<file name="trace_textual.h" role="src" />
</dir>
</dir>
</dir> <!-- / -->
</contents>
<dependencies>
<required>
<php>
<min>8.0.0</min>
<max>8.4.99</max>
</php>
<pearinstaller>
<min>1.9.1</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>xdebug</providesextension>
<zendextsrcrelease />
<changelog>
<release>
<date>2024-04-15</date>
<time>12:51:20</time>
<version>
<release>3.3.2</release>
<api>3.3.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://xdebug.org/license/1.03" filesource="LICENSE">Xdebug-1.03</license>
<notes>
Mon, Apr 15, 2024 - Xdebug 3.3.2
= Fixed bugs:
- Fixed issue #2216: With PHP8.3 and Apache 2.4.58 error_reporting() causing Apache process to hang
- Fixed issue #2230: Crash when xdebug and blackfire extensions are active
- Fixed issue #2233: High and continuous Apache server CPU use
</notes>
</release>
<release>
<date>2023-12-14</date>
<time>17:36:35</time>
<version>
<release>3.3.1</release>
<api>3.3.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://xdebug.org/license/1.03" filesource="LICENSE">Xdebug-1.03</license>
<notes>
Thu, Dec 14, 2023 - Xdebug 3.3.1
= Fixed bugs:
- Fixed issue #2220: Test failure
- Fixed issue #2221: Crash when other extensions run PHP code without the stack being initialised yet
- Fixed issue #2223: Xdebug's constants are not available with `xdebug.mode=off`
- Fixed issue #2226: xdebug_get_function_stack(['from_exception']) does not always find stored trace
- Fixed issue #2227: Crash with return value and observers
- Fixed issue #2228: Return value can not be fetched with property_get if top frame is an internal function
</notes>
</release>
<release>
<date>2023-11-30</date>
<time>16:27:19</time>
<version>
<release>3.3.0</release>
<api>3.3.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://xdebug.org/license/1.03" filesource="LICENSE">Xdebug-1.03</license>
<notes>
Thu, Nov 30, 2023 - Xdebug 3.3.0
+ New features:
- Fixed issue #2171: Support for PHP 8.3
- Fixed issue #1732: Add support for flame graph outputs
- Fixed issue #2219: Add control socket on Linux to obtain information and initiate debugger or breakpoint
- Fixed issue #1562: Add 'local_vars' option to 'xdebug_get_function_stack' to include variables for each st
- Fixed issue #2194: Add 'params_as_values' option to 'xdebug_get_function_stack' to return data as values
- Fixed issue #2195: Add 'from_exception' option to 'xdebug_get_function_stack' to return the stack trace where an exception was thrown
+ Improvements:
- Fixed issue #2077: Bring back xdebug.collect_params
- Fixed issue #2170: Show contents of Spl's ArrayIterator
- Fixed issue #2172: Show contents of SplDoublyLinkedList and SplPriorityQueue
- Fixed issue #2183: Bubble up exception message when using code evalution through protocol
- Fixed issue #2188: Step over with fibers does still step into fiber routines
- Fixed issue #2197: Add time index and memory to output of xdebug_get_function_stack
- Fixed issue #2203: Increase default max nesting time out from 256 to 512
- Fixed issue #2206: Optimise debugger breakpoints checking
- Fixed issue #2207: Add filenames for include and friends to flamegraph output
- Fixed issue #2217: xdebug://gateway pseudo host does not support IPv6
= Fixed bugs:
- Fixed issue #450: "Incomplete" backtraces when an exception gets rethrown
- Fixed issue #476: Exception chaining does not work properly
- Fixed issue #1155: Local variables are not shown when execution break in error_handler
- Fixed issue #2000: Debugger evaluate expression: "can't evaluate expression"
- Fixed issue #2027: Branch/path code coverage for traits drops trait name since 3.1.0
- Fixed issue #2132: Errors when mountinfo does not have enough information for finding systemd private tmp directory
- Fixed issue #2200: PECL package file has wrong max PHP version number, and peclweb refuses the package
- Fixed issue #2208: Superfluous `...` (three omission dots) in var_dump()
- Fixed issue #2210: Flamegraphs crash when using `start_with_request`
- Fixed issue #2211: File wrappers get wrong filename location in stack.
- Fixed issue #2214: Array keys aren't escaped in traces
</notes>
</release>
<release>
<date>2023-10-19</date>
<time>15:42:30</time>
<version>
<release>3.3.0alpha3</release>
<api>3.3.0alpha3</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="https://xdebug.org/license/1.03" filesource="LICENSE">Xdebug-1.03</license>
<notes>
Thu, Oct 19, 2023 - Xdebug 3.3.0alpha3
= Fixed bugs:
- Fixed issue #1732: Add support for flame graph outputs
- Fixed issue #2000: Debugger evaluate expression: "can't evaluate expression"
- Fixed issue #2077: Bring back xdebug.collect_params
- Fixed issue #2203: Increase default max nesting time out from 256 to 512
- Fixed issue #2206: Optimise debugger breakpoints checking
</notes>
</release>
<release>
<date>2023-09-06</date>
<time>12:53:26</time>
<version>
<release>3.3.0alpha2</release>
<api>3.3.0alpha2</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="https://xdebug.org/license/1.03" filesource="LICENSE">Xdebug-1.03</license>
<notes>
Wed, Sep 06, 2023 - Xdebug 3.3.0alpha2
= Fixed bugs:
- Fixed issue #2200: PECL package file has wrong max PHP version number, and peclweb refuses the package
</notes>
</release>
<release>
<date>2023-09-06</date>
<time>09:53:58</time>
<version>
<release>3.3.0alpha1</release>
<api>3.3.0alpha1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="https://xdebug.org/license/1.03" filesource="LICENSE">Xdebug-1.03</license>
<notes>
Wed, Sep 06, 2023 - Xdebug 3.3.0alpha1
+ New features:
- Fixed issue #2171: Support for PHP 8.3
+ Improvements:
- Fixed issue #1562: Add 'local_vars' option to 'xdebug_get_function_stack' to include variables for each st
- Fixed issue #2170: Show contents of Spl's ArrayIterator while debugging
- Fixed issue #2172: Show contents of SplDoublyLinkedList and SplPriorityQueue while debugging
- Fixed issue #2183: Bubble up exception message when using code evalution through protocol
- Fixed issue #2188: Step over with fibers does still step into fiber routines
- Fixed issue #2194: Add 'params_as_values' option to 'xdebug_get_function_stack' to return data as values
- Fixed issue #2195: Add 'from_exception' option to 'xdebug_get_function_stack' to return the stack trace where an exception was thrown
- Fixed issue #2197: Add time index and memory to output of xdebug_get_function_stack
= Fixed bugs:
- Fixed issue #450: "Incomplete" backtraces when an exception gets rethrown
- Fixed issue #476: Exception chaining does not work properly
- Fixed issue #2132: Errors when mountinfo does not have enough information for finding systemd private tmp directory
</notes>
</release>
<release>
<date>2023-07-14</date>
<time>09:14:53</time>
<version>
<release>3.2.2</release>
<api>3.2.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://xdebug.org/license/1.03" filesource="LICENSE">Xdebug-1.03</license>
<notes>
Fri, Jul 14, 2023 - Xdebug 3.2.2
= Fixed bugs:
- Fixed issue #2175: Crash with EXC_BAD_ACCESS in xdebug_str_create
- Fixed issue #2180: Crash on extended SplFixedArray
- Fixed issue #2182: Segfault with ArrayObject on stack
- Fixed issue #2186: Segfault with trampoline functions and debugger activation
</notes>
</release>
<release>
<date>2023-03-21</date>
<time>16:35:27</time>
<version>
<release>3.2.1</release>
<api>3.2.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://xdebug.org/license/1.03" filesource="LICENSE">Xdebug-1.03</license>
<notes>
Tue, Mar 21, 2023 - Xdebug 3.2.1
= Fixed bugs:
- Fixed issue #2144: Xdebug 3.2.0 ignores xdebug.mode and enables all features
- Fixed issue #2145: Xdebug 3.2.0 crash PHP on Windows if xdebug.mode = off
- Fixed issue #2146: apache2 segfaulting with version 3.2.0 on PHP 8.0
- Fixed issue #2148: Icon for link to docs in xdebug_info() HTML output does not always render correctly
</notes>
</release>
<release>
<date>2022-12-08</date>
<time>18:53:55</time>
<version>
<release>3.2.0</release>
<api>3.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>
Thu, Dec 08, 2022 - Xdebug 3.2.0
+ New features:
- Fixed issue #1819: Allow a list of headers in 'xdebug.client_discovery_header'
- Fixed issue #2079: Add pseudo hosts xdebug://gateway and xdebug://nameserver
- Fixed issue #2086: Include return value in return breakpoint interruption response
- Fixed issue #2087: Introduce step for the return state and virtual property for return value
+ Improvements:
- Fixed issue #2062: Xdebug now records whether systemd's PrivateTmp is used in its diagnostics information
- Fixed issue #2104: Add support for PHP 8.2 "SensitiveParameter" attribute
- Fixed issue #2117: Removed emulated properties for closures, as PHP 8.2 adds debug information for them
- Fixed issue #2122: Local variables are now available when using start_upon_error
- Fixed issue #2123: Add warning in log and diagnositics information when a breakpoint is set on a non-existing file
- Fixed issue #2138: Step debugger now disconnects and continues running the script, when the debugging client closes the connection
- Fixed issue #2136: Duplicate line/conditional breakpoints are now rejected
- Deprecations:
- Fixed issue #2014: Drop support for PHP 7.2
- Fixed issue #2102: Drop support for PHP 7.3
- Fixed issue #2103: Drop support for PHP 7.4
= Fixed bugs:
- Fixed issue #2002: xdebug_trace_handler_t handler members are not always checked for NULL when executing
- Fixed issue #2045: Inapproriate frowny face
- Fixed issue #2089: Alpine Linux does not support res_ninit
- Fixed issue #2093: Fatal error: linux/rtnetlink.h: No such file or directory linux/rtnetlink.h
- Fixed issue #2098: With breakpoint_include_return_value enabled step_out break at every function
- Fixed issue #2105: 3.2.0alpha1 package misses the php-header.h file
- Fixed issue #2108: Segfault on PHP8.1 with PHPUnit 10 when path coverage is enabled
- Fixed issue #2113: Crash at step_into after thrown exception with return value debugging en
- Fixed issue #2121: Xdebug does not use local independent float-to-string functions
- Fixed issue #2124: Xdebug incorrectly reports that there are no children for static closure properties, even though there are
- Fixed issue #2125: Crash with PHP 8.2 on 32-bit due to change in "not set" value with CATCH opcode
- Fixed issue #2126: Problems with retrieving global variables
- Fixed issue #2127: Tracing does not handle NUL char in anonymous closure scope
- Fixed issue #2133: Warning with regards to extra NUL character in xdebug_setcookie call
- Fixed issue #2134: Xdebug stops at the line where the exception is created, not where it is thrown
- Fixed issue #2135: Xdebug stops twice at the same line after a call breakpoint or xdebug_break()
</notes>
</release>
<release>
<date>2022-11-10</date>
<time>09:56:57</time>
<version>
<release>3.2.0RC2</release>
<api>3.2.0RC2</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD style</license>
<notes>
Thu, Nov 10, 2022 - Xdebug 3.2.0RC2
= Fixed bugs:
- Fixed issue #2100: "Fatal error: debuginfo() must return an array" when Exception is thrown from debugInfo in PHP 8.x
- Fixed issue #2101: When a temporary breakpoint is hit, breakpoint_list should show it as disabled
- Fixed issue #2126: Problems with retrieving global variables
- Fixed issue #2127: Tracing does not handle NUL char in anonymous closure scope
- Fixed issue #2129: Cannot read snapshot Gzip-compressed data is corrupt
- Fixed issue #2133: Warning with regards to extra NUL character in xdebug_setcookie call
- Fixed issue #2134: Xdebug stops at the line where the exception is created, not where it is thrown
- Fixed issue #2135: Xdebug stops twice at the same line after a call breakpoint or xdebug_break()
- Fixed issue #2136: Duplicate line/conditional breakpoints are not rejected
</notes>
</release>
<release>
<date>2022-10-10</date>
<time>15:52:03</time>
<version>
<release>3.2.0RC1</release>
<api>3.2.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, Oct 10, 2022 - Xdebug 3.2.0RC1
= Fixed bugs:
- Fixed issue #2113: Crash at step_into after thrown exception with return value debugging en
- Fixed issue #2117: Removed emulated properties for closures, as PHP 8.2 adds debug information for them
- Fixed issue #2121: Xdebug does not use local independent float-to-string functions
- Fixed issue #2122: Local variables are not available when using start_upon_error
- Fixed issue #2123: Add warning in log and diagnositics information when a breakpoint is set on a non-existing file
- Fixed issue #2124: Xdebug incorrectly reports that there are no children for static closure properties, even thought there are
- Fixed issue #2125: Crash with PHP 8.2 on 32-bit due to change in "not set" value with CATCH opcode
</notes>
</release>
<release>
<date>2022-08-24</date>
<time>09:21:42</time>
<version>
<release>3.2.0alpha3</release>
<api>3.2.0alpha3</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, Aug 24, 2022 - Xdebug 3.2.0alpha3
+ Improvements:
- Fixed issue #2112: Force 'return_value' breakpoint information and step to 'on' temporarily
</notes>
</release>
<release>
<date>2022-07-25</date>
<time>10:07:50</time>
<version>
<release>3.2.0alpha2</release>
<api>3.2.0alpha2</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, Jul 25, 2022 - Xdebug 3.2.0alpha2
= Fixed bugs:
- Fixed issue #2105: 3.2.0alpha1 package misses the php-header.h file
</notes>
</release>
<release>
<date>2022-07-20</date>
<time>15:57:59</time>
<version>
<release>3.2.0alpha1</release>
<api>3.2.0alpha1</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, Jul 20, 2022 - Xdebug 3.2.0alpha1
+ New features:
- Fixed issue #1819: Allow a list of headers in 'xdebug.client_discovery_header'
- Fixed issue #2079: Add pseudo hosts xdebug://gateway and xdebug://nameserver
- Fixed issue #2087: Introduce step for the return state and virtual property for return value
- Fixed issue #2104: Add support for PHP 8.2 "SensitiveParameter" attribute
+ Improvements:
- Fixed issue #2086: Include return value in return breakpoint interruption response
- Removed features:
- Fixed issue #2014: Drop support for PHP 7.2
- Fixed issue #2102: Drop support for PHP 7.3
- Fixed issue #2103: Drop support for PHP 7.4
= Fixed bugs:
- Fixed issue #2002: xdebug_trace_handler_t handler members are not always checked for NULL when executing
- Fixed issue #2045: Inapproriate frowny face
- Fixed issue #2062: Profiler can't able to write cachegrind file at /tmp
- Fixed issue #2089: Alpine Linux does not support res_ninit
- Fixed issue #2093: Fatal error: linux/rtnetlink.h: No such file or directory linux/rtnetlink.h
- Fixed issue #2098: With breakpoint_include_return_value enabled step_out break at every function
</notes>
</release>
<release>
<date>2022-11-08</date>
<time>13:08:25</time>
<version>
<release>3.1.6</release>
<api>3.1.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>
Tue, Nov 08, 2022 - Xdebug 3.1.6
= Fixed bugs:
- Fixed issue #2100: "Fatal error: debuginfo() must return an array" when Exception is thrown from debugInfo in PHP 8.x
- Fixed issue #2101: When a temporary breakpoint is hit, breakpoint_list should show it as disabled
- Fixed issue #2129: Cannot read snapshot Gzip-compressed data is corrupt
</notes>
</release>
<release>
<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>
</release>
<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>