-
Notifications
You must be signed in to change notification settings - Fork 0
/
datadog_trace.json
1434 lines (1434 loc) · 157 KB
/
datadog_trace.json
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
{
"category": "Benchmarking",
"deprecated": false,
"description": "The Datadog PHP Tracer brings APM and distributed tracing to PHP.",
"latestReleaseDate": "2024-10-21T10:52:45+00:00",
"latestVersion": "1.4.2",
"license": "BSD 3-Clause",
"name": "datadog_trace",
"php8Mentioned": true,
"releases": {
"1.4.2": {
"version": "1.4.2",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2024-10-21T10:52:45+00:00",
"releaseNotes": "## Tracer\n\n### Changed\n- Disable sidecar sending on lambda #2904\n\n### Fixed\n- Fix exception property offset computation for PHP 8.1+ #2901\n- Prevent Laravel Queue hooks from stacking up #2899\n- Fix crash with missing name in span in debug mode #2893\n- Restrict remote config path to a definite 31 chars DataDog/libdatadog#676\n\n## Application Security Management\n\n### Changed\n- Update event obfuscation regex #2897\n\n### Fixed\n- Fix abort() call on appsec helper unload #2900",
"get": "https://pecl.php.net/get/datadog_trace-1.4.2",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"1.4.1": {
"version": "1.4.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2024-10-14T13:23:58+00:00",
"releaseNotes": "## Tracer\n\n### Fixed\n- Fix: MongoDBIntegration condition typo #2884\n- Fix crash in profiler when span stack switch causes GC run #2885\n- Support build with disabled zend signals #2886\n- Send git tags via remote config #2890\n- Fix memory leak with sidecar trace sender #2875\n\n## Profiling\n\n### Fixed\n- Fix profiler ZTS build on alpine #2887\n\n## Application Security Management\n\n### Fixed\n- AppSec: improve behavior with empty DD_SERVICE/DD_ENV #2888",
"get": "https://pecl.php.net/get/datadog_trace-1.4.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"1.4.0": {
"version": "1.4.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2024-10-08T17:34:02+00:00",
"releaseNotes": "## Tracer\n\nThe default value for datadog.trace.cli_enabled is now set to true (except for composer), meaning that CLI processes will be traced by default.\n\n### Added\n- Dynamic configuration #2796\n- Dynamic instrumentation #2796\n - Can be enabled with datadog.dynamic_instrumentation.enabled=1.\n- Exception replay #2796\n - Can be enabled with datadog.exception_replay_enabled=1.\n- Track peak memory usage in root span metrics #2840\n\n### Changed\n- Enable sidecar trace sender on PHP 8.3 #2729\n- Optimize sending traces via sidecar Datadog/libdatadog#598\n- Add new ini config datadog.crashtracking_enabled #2850\n- Add ionCube to the list of incompatible extensions + add INI setting to ignore incompatible extensions #2858\n- Enable CLI by default #2871\n\n### Fixed\n- Crashtracker: fix a use-after-free error #2843\n- Fix curl integration race condition #2847\n- Fix memory leak with sidecar trace sender #2875\n- OpenTelemetry: Missing addLink method and Fiber handling #2849\n- Mongodb: Deprecated exception in v1.20+ #2870\n- Fix leaking sidecar sessions Datadog/libdatadog#642\n- Implement deadlock watchdog for sidecar Datadog/libdatadog#647\n\n### Internal\n- Fix testsuite flakiness #2841, #2846, #2848, #2867\n- Fix telemetry metric name Datadog/libdatadog#666\n\n### SSI Loader changes\n- Add SSI requirements.json file #2813\n- Disable the tracer in case of a potential incompatibility (extension/jit) #2853\n\n## Profiling\n\n### Internal\n- bump to Rust 1.76 #2876\n\n## Application Security Management\n\n### Changed\n- Move helper to sidecar remote config #2864\n\n### Fixed\n- Fix improper symbol exports in appsec ext/helper #2854\n- Remove gid from socket/lock path of helper #2855\n- appsec ext: retry on connection refused #2860\n- Fix orderly helper appsec shutdown #2859\n\n### Internal changes\n- Add appsec benchmarks #2791",
"get": "https://pecl.php.net/get/datadog_trace-1.4.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"1.3.2": {
"version": "1.3.2",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "iamluc",
"releaseDate": "2024-09-26T13:55:32+00:00",
"releaseNotes": "## Tracer\n\n### Fixed\n- Fix crash with git metadata injection",
"get": "https://pecl.php.net/get/datadog_trace-1.3.2",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"1.3.1": {
"version": "1.3.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2024-09-06T15:12:14+00:00",
"releaseNotes": "## Tracer\n\n### Fixed\n- Fix DD_AUTOLOAD_NO_COMPILE #2833\n- Loader: Use the same version number as for other extensions #2838\n- Consider ifunc symbols also defined Datadog/libdatadog#609\n- Fix crash with double parent key in tracestate #2837\n- Fix #2831: Failure with LTO #2839\n\n### Internal\n- Avoid using non-bundled rust git dependencies #2827",
"get": "https://pecl.php.net/get/datadog_trace-1.3.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"1.3.0": {
"version": "1.3.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2024-08-30T13:06:54+00:00",
"releaseNotes": "## Tracer\n\nThe default value for datadog.log_backtrace is now set to true, meaning that on compatible systems, a segmentation fault will cause the process's backtrace to be printed in the log.\n\n### Added\n- Add SpanEvents support for DD and OTEL #2754\n- Symfony Messenger Integration #2749\n- Add crashtracker #2763\n\n### Changed\n- Updates the expected telemetry tags for OTel env-var mapping in line with the latest RFC #2775\n\n### Fixed\n- Multiple Workers in SWOOLE_BASE mode #2778\n- Fix ini creation when `--extension-dir` is used #2789\n- Fix fatal error when reading uninit $meta on a span #2790\n- Fix JIT crash with instrumented generators #2797\n- Handle absolute paths in extension_dir containing forward slashes #2798\n- Fix setup with spaces in path to php binary #2803\n- Fix #2774: shared hooks removal caused xdebug end handler to be skipped #2780\n- Fix error message for not loaded/not available #2810\n- Implement fallback for when memfd is not available on Linux Datadog/libdatadog#591\n- Use the Windows User ID as sidecar identifier instead of the Session ID Datadog/libdatadog#558\n- Fix error check in trampoline.c Datadog/libdatadog#569\n- Do not implicitly fall back to spl_autoload() if no autoloader is registered on PHP 7 #2822\n- Prevent crash in shutdown if hook was not stored #2824\n\n### Internal\n- Send x-datadog-test-session-token metric and send metrics to request-replayer #2802\n- Only warn on missing `json` extension #2805\n- Fix compilation after alpine container upgrade #2811\n- Telemetry v2 schema for app-started payload requires 'configuration' Datadog/libdatadog#543\n\n## Profiling\n\n### Added\n- Add timestamp to exception sample #2793\n\n### Internal\n- Perf: remove profiler mutex #2714\n\n## Application Security Management\n\n### Added\n- Automated user ID collection modes #2782\n- Report backtraces #2715\n\n### Changed\n- Support loading appsec helper in sidecar Datadog/libdatadog#565\n\n### Fixed\n- Refactor the sampler to fix errors #2761",
"get": "https://pecl.php.net/get/datadog_trace-1.3.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"1.2.0": {
"version": "1.2.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2024-07-23T11:55:23+00:00",
"releaseNotes": "This release adds beta support for PHP Single Step Instrumentation, allowing the instrumentation\nof your PHP applications without the manual installation of the dd-trace-php extension.\n\nRead https://docs.datadoghq.com/tracing/trace_collection/automatic_instrumentation/single-step-apm/ for\nmore details.\n\n## Tracer\n\n### Added\n- Add span field meta_struct #2673\n- Add config to disable obfuscation in memcached queries #2725\n- Add PDO spans to orphans removal #2743\n- Make generators replaceable #2718\n- Source Code Integration #2731\n- OpenAI Integration #2685\n- Add support for Single Step Instrumentation #2684 #2723\n\n### Fixed\n- Fix PHP binary detection in package post-install script #2707\n- Handle OTel HTTP semantic conventions < 1.21.0 #2717\n- Respect the active service/env/version for metric tags #2742\n- Fix post bailout hook execution in 8.3 unoptimized builds #2737\n- Fix env&version tags leaking in metrics #2745\n- Fix global priority sampling #2728\n- Fix crash in OpenTelemetry Span::getCurrent() when accessing span link #2767\n\n### Internal\n- Compile sidecar and extension separately, to link them together later #2741\n- Sync with libdatadog for telemetry flush data intval #2757\n\n## Profiling\n\n### Internal\n- Keep string cache data alive longer #2668\n- Extract func is_internal() #2736\n- Less unsafe code #2739\n- Refactor fork handling #2747\n\n## Application Security Management\n\n### Fixed\n- Refactor the sampler to fix errors #2761\n\n### Internal\n- Upgrade helper to use WAF 1.18.0 #2660\n- Add more logs around schema extraction #2755",
"get": "https://pecl.php.net/get/datadog_trace-1.2.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"1.1.0": {
"version": "1.1.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2024-06-10T21:31:43+00:00",
"releaseNotes": "## Tracer\n\n### Added\n- Implement OTel config remapping #2691\n- Remap OTel to DD status code #2695\n\n### Fixed\n- Apply some fixes with sidecar trace sender #2680, #2686, #2689, #2698, #2700\n- Don't treat Symfony 2 differently from other versions #2693\n- Ensure DDTRACE_G(active_stack) is always NULL when the root span is being pushed #2701\n\n### Internal\n- Switch 2 logs to logev to avoid useless work #2679\n- shrink size of Rust artifacts #2696\n\n## Profiling\n\n### Added\n- Add `thread id` label on every sample #2692\n\n### Internal\n- Reduce memory usage by upgrading libdatadog to v10 #2697",
"get": "https://pecl.php.net/get/datadog_trace-1.1.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"1.0.0beta1": {
"version": "1.0.0beta1",
"state": "beta",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2024-04-17T08:09:28+00:00",
"releaseNotes": "This beta release contains all breaking changes planned for dd-trace-php 1.0. An upgrade guide can be found at https://github.com/DataDog/dd-trace-php/blob/1.0.0beta1/UPGRADE-1.0.md.\n\n## Tracer\n\n### Added\n- Add --ini and --extension-dir installation option #2620\n- CodeIgniter 3 Compatibility #2515\n- Add CakePHP 3+ Support #2618\n\n### Changed\n- Cleanup deferred loader and remove some PHP 5 compat code #2527\n- Change DD_TRACE_SAMPLING_RULES_FORMAT default from regex to glob #2534\n- Raise API errors instead of debug logs when wrong arguments are passed #2542\n- Change WordPress Default Behavior #2525\n- [OTel] Only set resource info on root spans #2558\n- Remove early code execution and use an autoloader instead #2530\n- Remove deprecated configuration keys or APIs #2574\n- Drop Configuration classes from API #2596\n\n### Fixed\n- Elasticsearch: Hook not being removed #2616\n- Fix shared compilation on macOS\n- Fix host Scopes not being removed #2624\n- Add note about update_span_duration semantics #2622\n\n### Internal\n- Use a global version and change installer tests to use the version #2537\n- Clean PHP 5 checks #2584\n- Collect 'logs_created' internal metric #2604\n- Make the root Makefile macOS compatible #2614\n- Add stats reporting for sidecar and telemetry #2621\n- Clean Integration configuration #2598\n- Re-added spans_created telemetry metric Datadog/libdatadog#391\n\n## Application Security Management\n\n### Fixed\n- Disable Appsec when FrankenPHP SAPI is detected #2617",
"get": "https://pecl.php.net/get/datadog_trace-1.0.0beta1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.99.1": {
"version": "0.99.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "anilm3",
"releaseDate": "2024-04-05T08:30:48+00:00",
"releaseNotes": "## Tracer\n\n### Changed\n- revert ?Send spans_created telemetry metric #2577? to fix a memory leak\n\n### Fixed\n- Fix compilation on macOs #2613",
"get": "https://pecl.php.net/get/datadog_trace-0.99.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.99.0": {
"version": "0.99.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2024-04-03T11:18:19+00:00",
"releaseNotes": "## Tracer\n\nWindows x64 support is officially GA (generally available).\n\nSome performance work has been undertaken to primarily reduce the overhead of telemetry reporting.\nThe next release will be version 1.0 and remove deprecated and some unused code and APIs.\n\n### Added\n- Support the [FrankenPHP](https://frankenphp.dev/) SAPIs #2602\n- Add zts support for alpine #2564\n- Swoole Integration #2595\n\n### Changed\n- w3c phase 2: add last parent_id to tracestate #2549\n\n### Fixed\n- Handle relative ext/ paths and test the windows installer #2559\n- Fix exec integration build on PHP 8.4 #2543\n- Fix Orphans not being sampled-out #2550\n- Fix fibers with tracer disabled #2576\n- Update update_span_duration return type #2586\n- Fix #2563: ddtrace overrides php error log permissions #2583\n- Allow hooking an inherited internal constructor #2591\n- Distinguish architectures on windows #2593\n- Fix the ExecIntegration name #2597\n\n### Internal\n- Get rid of some bitwise checking in ddog_shall_log #2539\n- Use faster bincode for ipc #2544\n- Update to use DDOG_CHARSLICE_C and new DDOG_CHARSLICE_C_BARE helpers #2565\n- Slightly Improve OTel Performances #2561\n- Send spans_created telemetry metric #2577\n\n## Profiler\n### Added\n- add [FrankenPHP](https://frankenphp.dev/) to the list of recognised SAPIs #2523\n- enabled allocation profiling for PHP ZTS #2506\n- report PHP build (`nts-ndebug` vs `zts-ndebug`) #2536\n\n### Internal\n- add tests for exception profiling in ZTS builds #2562\n- update to libdatadog v7 #2605\n\n## Application Security Management\n### Added\n- Add DD_API_SECURITY_ENABLED flag #2532\n- Add DD_APPSEC_SCA_ENABLED new configuration variable #2557\n\n### Fixed\n- Make Laravel appsec login success event more accurate #2600\n- Enable appsec by ini only when enable-appsec present #2567\n- Provide path params to appsec #2395",
"get": "https://pecl.php.net/get/datadog_trace-0.99.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.98.1": {
"version": "0.98.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2024-03-04T17:58:52+00:00",
"releaseNotes": "## Tracer\n\n### Fixed\n- Always include the whole of src/ in the Windows and PECL build (#2533)\n- Ensure the permissions of the log file are actually really 0666 (#2528)\n- Avoid remapping freed memory in trace sender fallback (#2541)\n- Fix possible crash in dd_patched_zend_call_known_function on early PHP 8.0 and 8.1 versions (#2548)\n- Make ddtrace_disable a true global to avoid crashes in ZTS with unsupported SAPI/extensions (#2545)",
"get": "https://pecl.php.net/get/datadog_trace-0.98.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.98.0": {
"version": "0.98.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2024-02-20T10:42:26+00:00",
"releaseNotes": "### Fixes across all extensions\n- Handle Apache graceful restarts more accurately #2483\n- Mark config as immutable and interned to avoid refcounting race conditions #2516\n\n## Tracer\nThis release includes Windows dlls for the tracer starting with PHP 7.2. #2230\n\nWindows support is in beta. We recommend carefully deploying the tracer to staging environments and testing it there before putting it to production. We are looking towards stabilizing Windows quickly, so any feedback and issue reports are welcome.\n\n### Added\n- Enhance logging #2490\n - This features two new logging options:\n - `datadog.trace.log_level` allows more fine-grained control over logging (`error`, `warn`, `info`, `debug`, `trace`). It follows the RUST_LOG standard. Note that `datadog.trace.debug` still takes precedence if set.\n - `datadog.trace.log_file` allows specifying a dedicated target file for any datadog trace logs instead of the default php error location.\n - More log lines were added to allow for observing submitted spans (debug level) and hook invocations (trace level).\n- Add http.route to Wordpress #2491\n\n### Changed\n- Have datadog.trace.db_client_split_by_instance also affect mysqli and sqlsrv #2508\n- Record nested exceptions in the integrations #2514\n- Evaluate numbers and bools in tags and metrics for sampling rules #2521\n\n### Fixed\n- Access to undefined method `attempts` in LaravelQueueIntegration #2485\n- Include generated curl_exec spans of curl_multi_exec() in metrics #2505\n- Remove Symfony Command Hook After Execution #2492\n- Add zend_try around closing and flushing spans #2507\n- Make PDO split-by coherent with other DB split-by with service name flattening #2524\n\n### Internal\n- No longer compile the mockgen as part of the rust build #2512\n- Add TEA Benchmarks #2438\n- Reduce CI and Local Flakiness #2496, #2518\n\n## Profiling\nThis release requires System INIs to be used to configure the profiler settings which control the enabling/disabling of individual features. If you are configuring the profiler using `php datadog-setup.php config set`, you should be fine. We recommend switching to use the [config mode of datadog-setup.php](https://docs.datadoghq.com/profiler/enabling/php/?tab=gnuclinux#installation) to configure profiling.\n\n### Added\n- Enable timeline by default #2480. This can be disabled by setting the INI setting datadog.profiling.timeline_enabled to 0 or false. Using the datadog-setup.php script is recommended, for example:\n\n php datadog-setup.php config set --php-bin all -ddatadog.profiling.timeline_enabled=0\n- PHP ZTS support for CPU- and Wall Time profiling #2470\n- Add exception message to exception sample (opt-in) #2434\n\n### Changed\n- Breaking-change: require system INIs for profiling features #2468\n\n### Internal\n- Update dependencies and pin `ahash` #2479\n- Fix clippy::single-match #2482\n- Update to libdatadog 6 #2513\n- Refactor: use SystemSettings in locals #2487\n- Fix accidentally skipped tests #2517\n\n## Application Security Management\nThis release introduces support for the Roadrunner application server and extends threat detection and blocking on XML and JSON request payloads. Request and response payloads are now also used to expand the already existing API security features.\n\n### Added\n- Roadrunner appsec support #2443\n- Provide server.response.body #2489\n- Support json/xml request bodies #2499\n\n### Changed\n- Change ip header parsing/header reporting #2503\n\n### Fixed\n- Fix blocking on PHP 7.0-7.1 ZTS #2502\n- Ensure logs are committed to disk upon shutdown #2495 \n\n### Internal\n- Upgrade libddwaf and ruleset #2520",
"get": "https://pecl.php.net/get/datadog_trace-0.98.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.97.0": {
"version": "0.97.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2024-01-18T12:14:19+00:00",
"releaseNotes": "## Tracer\n### Added\n- Add span links capabilities to the OTel API #2451\n- Add exec integration #2361, #2455, #2459\n\n### Changed\n- Implement http.route for Yii #2430\n- Implement http.route for Slim #2402\n\n### Fixed\n- Remove Symfony controller hook after execution #2436\n- Move the dummy function of call_attribute_constructor onto the VM stack #2446\n- Avoid resolving unresolved functions and classes #2450\n- Fix removal of the directly accessed hook after binding in DDTrace\\remove_hook #2449\n- Handle async requests using Guzzle #2460\n- Fix removing an end observer with other observers active #2469\n- Fix fibers on PHP 8.1.2 #2473\n\n### Internal Changes\n- Add MicroBenchmarks #2435, #2456, #2458\n- Add Symfony 7.0 test suite #2437\n- Track DD_TRACE_DEBUG=1 errors in integration and web tests #2472\n- Reduce noise in composer package download #2401\n\n## Profiling\n### Added\n- prevent emitting empty profiles #2397\n\n### Fixed\n- potential allocation profiling crashes with certain opcodes #2352\n\n### Internal Changes\n- test with address sanitizer on bookworm with GH actions #2432\n- make the profiler compile in ZTS PHP #2463\n- extract wall_time.rs file #2467\n\n## Application Security Management\n### Internal changes\n- Change schema extraction zip compression to PHP_ZLIB_ENCODING_GZIP #2447",
"get": "https://pecl.php.net/get/datadog_trace-0.97.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.96.0": {
"version": "0.96.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "pierotibou",
"releaseDate": "2023-12-20T13:03:41+00:00",
"releaseNotes": "Exception profiling is now enabled by default. You can manage it using the `DD_PROFILING_EXCEPTION_ENABLED` environment variable or the `datadog.profiling.exception_enabled` setting in the INI file. Although the `DD_PROFILING_EXPERIMENTAL_EXCEPTION_ENABLED` environment variable and `datadog.profiling.experimental_exception_enabled` INI setting still work, the new ones take precedence.\n\n## Tracer\n\n### Added\n- Implement extended sampling #2384\n\n### Fixed\n- Add PHP 8.3 to supported versions #2417 (thank you @markwalet)\n- OTel: Fix analytics.event override (#2409)\n- Fix dddbs service mapping #2413\n- WordPress: Avoid Setting User ID When Unauthenticated #2424\n\n### Internal Changes\n- CI: Handle latest Alpine 3.19 image #2418\n- CI: Complements PHP 8.3 test suites #2419\n\n## Profiling\n\n### Added\n- GA exception profiling #2403\n- allow enabling all experimental features using `datadog.profiling.experimental_features_enabled` #2385\n\n### Internal Changes\n- run prof-correctness nightly in `master` branch #2420",
"get": "https://pecl.php.net/get/datadog_trace-0.96.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.95.0": {
"version": "0.95.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "anilm3",
"releaseDate": "2023-12-07T14:11:34+00:00",
"releaseNotes": "This release introduces support for arm64 and PHP 8.3 for appsec. Additionally, it adds schema extraction and classification to appsec, which forms the foundation for API security. Finally, the appsec extension has been officially incorporated into the dd-trace-php repository and will adhere to the same versioning scheme as the tracer and profiler.\n\n## Tracer\n### Added\n- Add http.route to CodeIgniter #2379\n\n### Fixed\n- Use http_code instead of connect_time to detect curl errors #2391\n- Fix handling of invalid persistent JSON #2381\n- Zero pad the tid and exclude it from OTel tracestate #2386\n\n### Internal changes\n- Update CI images to use PHP 8.3.0rc6, pin mongodb for PHP 7.2-7.3 #2382\n- Update CI images to 8.1.26, 8.2.13 and 8.3.0 and XDedug to 3.3.0 #2400 #2405\n- Add macrobenchmark runs #2408\n\n## Profiling\n### Internal changes\n- add allocation and exception count to event.json #2392\n\n## Application Security Management\n### Added\n- Implement sampler and processor trigger DataDog/dd-appsec-php#308\n- Zip long schemas DataDog/dd-appsec-php#315\n- Add compression library to helper DataDog/dd-appsec-php#316\n- Always serialize schemas when available #2406\n- Upgrade libddwaf to v1.15.1 #2377\n### Internal changes\n- Fix fuzzer build & increase RSS limit DataDog/dd-appsec-php#313\n- Build AppSec extension & helper in CI with support for Arm64 and PHP 8.3 #2344\n- AppSec extension & helper unit tests in CI #2349\n- Package appsec using new builds #2369",
"get": "https://pecl.php.net/get/datadog_trace-0.95.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.94.1": {
"version": "0.94.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "pierotibou",
"releaseDate": "2023-11-29T10:25:36+00:00",
"releaseNotes": "This release fixes a regression in the profiler which would make it emit profiles even though the profiler is disabled.\n\n## Profiler\n### Fixes\n- do not emit profiles when profiler is disabled #2393",
"get": "https://pecl.php.net/get/datadog_trace-0.94.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.94.0": {
"version": "0.94.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2023-11-21T09:23:11+00:00",
"releaseNotes": "This release adds support to OpenTelemetry so that you can use the OpenTelemetry API to generate Datadog spans. This is off by default. Enable it with the environment variable `DD_TRACE_OTEL_ENABLED=1` or INI setting `datadog.trace.otel_enabled=1. Also, the tracer now generates 128 bits trace ids by default, in an effort to match OpenTelemetry standards.\n\n## Tracer\n### Added\n- Set _dd.base_service when overriding service name for a span #2275\n- OpenTelemetry API #2332\n- Add tracing for curl_multi_exec() #2347\n- CakePHP http.route implementation #2360\n\n### Changed\n- Enable 128-bit trace ID generation by default #2358, #2368\n- Respect DD_LOGS_INJECTION default value #2365\n- Completely avoid instrumenting the PSR NullLogger #2367\n- Inject the _dd.dbm_trace_injected tag only when full propagation is enabled #2346\n- Retain tracestate from tracecontext if extracted at all #2359\n\n### Fixed\n- Handle extra arguments for internal overrideArgs #2348\n- Fix possible double-free with hooks on internal methods inherited by user classes #2372\n- Fix crash with functions with no run_time_cache yet #2373\n- Workaround php bug #81634 in PHP 8.0-8.1.0 #2353\n- Fix PHP5: The Magento Integration is not part of PHP5 #2363\n- Fix orphans removal when 128-bit is enabled #2366\n- Use _dd.agent_psr instead of _dd.rule_psr for agent sampling #2370\n\n### Internal changes\n- Add xfail for Zend/tests/stack_limit/stack_limit_013.phpt on PHP 8.3 #2371\n\n## Profiling\n### Added\n- Add idle phases to timeline #2343\n\n### Fixed\n- perf: increase allocation sampling distance #2350, #2364\n\n### Internal changes\n- add DD_PROFILING_WALLTIME_ENABLED for testing #2316",
"get": "https://pecl.php.net/get/datadog_trace-0.94.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.93.2": {
"version": "0.93.2",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "pierotibou",
"releaseDate": "2023-11-13T13:14:18+00:00",
"releaseNotes": "## Tracer\n### Fixed\n- [PDO] injectDBIntegration should be public. #2351",
"get": "https://pecl.php.net/get/datadog_trace-0.93.2",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.93.1": {
"version": "0.93.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "anilm3",
"releaseDate": "2023-10-31T17:48:11+00:00",
"releaseNotes": "## Tracer\n### Fixed\n- Reset distributed context on request init #2340",
"get": "https://pecl.php.net/get/datadog_trace-0.93.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.93.0": {
"version": "0.93.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "pierotibou",
"releaseDate": "2023-10-30T11:10:32+00:00",
"releaseNotes": "This release adds support for PHP 8.3 for the tracer and the profiler. Please be aware that we are currently building against PHP 8.3.0 RC3.\n\n## Tracer\n### Added\n- Add Magento 2 Integration #2274\n- Support for PHP 8.3 #2098, #2282\n- Add a configuration flag to disable laravel queue distributed tracing #2304\n- Laminas RESTful methods handling #2322\n- Expand arrays in meta and metrics into nested-tag format #2302, #2333\n- Report extensions used in telemetry #2295\n\n### Changed\n- Redis Span Removal and Priority Sampling Orphans Cleanup #2306\n- Subclass SpanData with RootSpanData #2309\n- Refactor tightly coupled extraction state #2314\n\n### Fixed\n- Propagate env to telemetry #2313\n- Fix ZAI config handling for .htaccess with php-fpm #2298\n- Explicitly drop dd.p.dm if provided in propagated tags when the incoming sampling priority is reject #2310\n- Strictly validate dd.p.tid #2303\n- Fix PHP 5: The Drupal integration is not part of PHP 5 #2326\n- Avoid %.*s in places where longer strings are used #2330\n- Respect service mapping when propagating for DBM #2321\n- Specify the odbc driver in db.system and exclude the Ingres driver from DBM #2334\n- Fix daemonization of sidecar closing stderr properly DataDog/libdatadog#271\n\n## Profiling\n\n### Added\n- Support for PHP 8.3 #2098, #2282\n\n### Fixed\n- neighboring extension handling in `gc_mem_caches()` #2297\n- panic after shutdown of forked child when `USE_ZEND_ALLOC=0` #2301\n- fix typo in info log message #2307\n- sampling distance in exception profiling #2323\n- reuse thread RNG and poisson sampler #2320\n\n### Internal changes\n- fix reliability environment deployment #2289\n- upgrade to `libdatadog` v5 #2299\n- add memory benchmark #2319\n- fix flaky exception correctness test #2331\n\n## Application Security Management (0.14.3)\n### Fixed\n- Set sampling priority using ddtrace_set_priority_sampling_on_root DataDog/dd-appsec-php#311",
"get": "https://pecl.php.net/get/datadog_trace-0.93.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.92.2": {
"version": "0.92.2",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "anilm3",
"releaseDate": "2023-10-06T15:47:51+00:00",
"releaseNotes": "## Tracer\n### Fixed\n- Fix ZAI config handling for .htaccess with php-fpm #2298\n\n## Application Security Management (0.14.2)\n### Fixed\n- Always update enabled status on RINIT DataDog/dd-appsec-php#307\n- Fix ZAI config handling for .htaccess with php-fpm #2298",
"get": "https://pecl.php.net/get/datadog_trace-0.92.2",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.92.1": {
"version": "0.92.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2023-10-02T13:20:49+00:00",
"releaseNotes": "## Tracer\n### Fixed\n- Handle UnwindExit in sandbox error reporting #2288\n- Add a safeguard nullcheck for the sidecar into telemetry reporting #2293\n\n## Profiling\n### Fixed\n- Do not leak module entry on purpose #2291\n- Fix allocation profiling shutdown with USE_ZEND_ALLOC=0 crashing #2294\n\n## Application Security Management (0.14.1)\n### Fixed\n- Improve tracer state detection DataDog/dd-appsec-php#305\n- Fix setting perdir INI setting for multiple ZAI config users #2277",
"get": "https://pecl.php.net/get/datadog_trace-0.92.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.92.0": {
"version": "0.92.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2023-09-26T17:36:30+00:00",
"releaseNotes": "This release adds experimental exception profiling to the profiler. This is off by default. Enable it with the environment variable DD_PROFILING_EXPERIMENTAL_EXCEPTION_ENABLED=1 or INI setting datadog.profiling.experimental_exception_enabled=1.\n\nIn Application Security Management, this release introduces the latest version of the WAF v1.14.0 and the latest ASM ruleset v1.8.0, as well as a fix to ensure runtime IDs reported by the remote configuration client are always valid and consistent with those reported by the Tracer.\n\n## Tracer\n### Added\n- Add Drupal Integration #2188\n- Implement sidecar tracing #2234\n\t- This functionality is currently experimental and guarded behind a configuration option DD_TRACE_SIDECAR_TRACE_SENDER=1 or INI setting datadog.trace.sidecar_trace_sender=1. It replaces the sending of traces through a dedicated thread.\n\n### Fixed\n- Do not emit a deprecated diagnostic for DD_LOGS_INJECTION #2253\n- Set peer.service as dddbs when available #2260\n- Fix toggling datadog.trace.enabled with perdir configuration #2269\n- Enable auto flush for artisan commands #2270\n\n### Internal changes\n- Keep doctrine/dbal to major version 2 in symfony 5.2 tests #2254\n- docs: Explain minimum and nice-to-have from LLVM #2264\n\n## Profiling\n### Added\n- Add exception profiling #2197, #2262\n- Do not disable allocation profiling on fixed PHP versions with active JIT #2246\n\n### Fixed\n- Add missing `end_timestamp_ns` to string compilation event #2251\n- store customized heap #2261\n- remove ?BETA? in `datadog-setup.php` as the profiler is not beta anymore #2278\n- use-after-free with Closure trampolines #2280\n\n### Internal changes\n- add tests for timeline #2192\n\n## Application Security Management (0.14.0)\n### Added\n- Add default processors and scanners DataDog/dd-appsec-php#298\n- Exchange more types between extension and helper DataDog/dd-appsec-php#299\n- API security configuration settings DataDog/dd-appsec-php#300\n\n### Fixed\n- Propagate Runtime IDs and keep a valid pool in the RC client DataDog/dd-appsec-php#301\n\n### Internal changes\n- Add nginx container to integration tests DataDog/dd-appsec-php#294\n- Upgrade WAF to 1.14.0 DataDog/dd-appsec-php#295\n- Upgrade tracer to v0.91.0 and remove master build downloads DataDog/dd-appsec-php#296\n- Upgrade ruleset to 1.8.0 DataDog/dd-appsec-php#302\n- Merge appsec repository as subtree #2267",
"get": "https://pecl.php.net/get/datadog_trace-0.92.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.91.2": {
"version": "0.91.2",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2023-09-14T16:48:21+00:00",
"releaseNotes": "## Tracer\n### Fixed\n- fix: Use DD_SERVICE if available (Laravel) #2256",
"get": "https://pecl.php.net/get/datadog_trace-0.91.2",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.91.1": {
"version": "0.91.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "levim",
"releaseDate": "2023-09-08T17:01:45+00:00",
"releaseNotes": "## Profiling\n### Fixed\n- detect an uninitialized runtime cache #2250",
"get": "https://pecl.php.net/get/datadog_trace-0.91.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.91.0": {
"version": "0.91.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2023-09-06T16:43:13+00:00",
"releaseNotes": "This release adds an enhanced WordPress integration, which can be enabled through datadog.trace.wordpress_enhanced_integration=1 in INI. Even more extensive span collection can be enabled through datadog.trace.wordpress_callbacks=1.\n\n### Added\n- Add automated login events to Wordpress #2162\n- Enhance the WordPress Integration #2126\n- Implement agent sampling #2223\n- Add Laravel 9.X & 10.X tests #2237\n- Add http.route to laravel #2204 #2241\n\n### Fixed\n- (Legacy OpenTracing API) Check if the active span has a parent #2177\n- Handle killed workers and change root span initialization in the integrations #2176\n- fix: add Symfony command's exception to the root span #2194\n- Fix #2174: Can't pass less args to an untyped function than originally passed #2227, #2243\n- Fix #2232: Add Cargo.lock to pecl #2233\n- fix: wrong service name on some laravel.event.handle spans #2235\n- fix: PHP7 compatibility in logs correlation #2236\n- Store library_dependencies in memfd, referenced via /proc/self/fd/X DataDog/libdatadog#221\n- fix `datadog-setup.php` when INI file is a symlink #2242\n- update webpki and other dependencies #2247\n\n### Internal Changes\n- Add log levels #2158\n- Add `zai_option_str` and use it in config #2205, #2213\n- Refactor zai_string_view APIs and use them more #2203\n- Rename zai_string_view to zai_str #2206, #2207, #2212\n- Require zai_str.ptr to not be null #2214\n- Add zai_string and use it in zai_config #2217\n- Fix tests: allocate less TLS space by putting uhook HashTables into module globals #2219\n- Add sidecar metrics into their own namespace, fix seq id Datadog/libdatadog#220\n\n## Profiling\n\nThis release reduces CPU overhead to collect stacks, and also reduces overhead when services are idle or partially idle. It also reduces the average amount of memory used.\n\n### Added\n- attach fiber's function name as a label #2169\n\n### Fixed\n- enable allocation profiling only if profiling is enabled #2185\n- enable timeline only if profiling is enabled and lower overhead when disabled #2189\n- fix empty profiles with timeline due to `end_timestamp_ns` unit being set #2244\n\n### Internal changes\n- perf: speed up stack walking by using function run_time_cache #1998, #2182\n- perf: only wake every 10ms if PHP is serving a request #2168\n- refactor: extract ZaiStringView::to_string #2175\n- build: update Cargo.lock #2183\n- refactor: simplify string tables #2186\n- perf: use u32 instead of usize for string table indices #2187\n- test: add Datadog\\Profiling\\trigger_time_sample #2201\n- build: Update to Rust 1.71 / LLVM 16 #2208\n- Bump libdatadog to v3.0.0 #2210\n- fix(profiling): clippy lints #2215\n- style(profiler): use let-else syntax #2216\n- build(profiling): bump dependencies including libdatadog v4.0.0 #2228\n\n## Application Security Management (0.13.1)\n\n### Added\n- Add trusted IPs capability DataDog/dd-appsec-php#279\n- Add extra_services configuration DataDog/dd-appsec-php#282\n\n### Fixed\n- Ensure ddtrace is also enabled DataDog/dd-appsec-php#281\n- Fix service name alias configuration DataDog/dd-appsec-php#293\n\n### Internal changes\n- Add automated login events integration test for Laravel and Symfony DataDog/dd-appsec-php#270\n- Upload suppressions and fix current ones DataDog/dd-appsec-php#280\n- WAF upgrade to 1.13.1 Datadog/dd-appsec-php#292\n- Send events even when limiter does not force manual keep Datadog/dd-appsec-php#290\n- Update ruleset to 1.7.2 Datadog/dd-appsec-php#291",
"get": "https://pecl.php.net/get/datadog_trace-0.91.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.90.0": {
"version": "0.90.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2023-07-17T11:30:14+00:00",
"releaseNotes": "This release adds logs correlation and telemetry support:\n- Used configurations, libraries and integrations will be collected. This may be disabled with `DD_INSTRUMENTATION_TELEMETRY_ENABLED=0`.\n- Logs written by common logging libraries will be attached metadata about the trace and span the log line was generated in. This may be disabled with `DD_LOGS_INJECTION=0`.\n\n### Added\n- Add Logs Correlation #2118\n- Add network destination name to http client spans #2134\n- Add peer.service to Mysqli instrumentation #2142\n- Add peer.service to PHPRedis instrumentation #2152\n- Add peer.service to PDO instrumentation #2148\n- Add peer.service to SQLSRV instrumentation #2155\n- Add peer.service to Mongodb instrumentation #2147\n- Add peer.service to Memcached clients instrumentation #2145\n- Add peer.service to http client instrumentations #2134\n- Add automated login events to Symfony #2132 #2146\n- Opt-in to flat service names #2163\n\n### Changed\n- Move all integrations to deferred loading #2153\n- Reflect changes to datadog.version and datadog.env in existing spans #2165\n- Evaluate the service name after the service mapping for a sampling decision #2166\n\n### Fixed\n- Add invalid regex handling for sampling rules #2160\n\n### Internal Changes\n- Add SpanData::peerServiceSources #2130\n- Handle peer.service-related post-process in the extension #2135\n- Enable instrumentation telemetry by default #2153\n\n## Profiling\n\n### Added\n- doc(profiling): make phpinfo() output more helpful #2144\n- timeline: add eval() timings #2150\n\n### Fixed\n- Explicit shutdown allocation profiling on fork() #2149\n- Optimize event timestamp for timeline #2157\n\n### Internal changes\n- refactor(profiling): apply clippy suggestions #2141",
"get": "https://pecl.php.net/get/datadog_trace-0.90.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.89.0": {
"version": "0.89.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "estringanadd",
"releaseDate": "2023-07-04T06:00:43+00:00",
"releaseNotes": "This release adds timeline support to the profiler. This is off by default. Enable it with the environment variable DD_PROFILING_EXPERIMENTAL_TIMELINE_ENABLED=1 or INI setting datadog.profiling.experimental_timeline_enabled=1.\n\n### Added\n- Add horizon as artisan queue command #2124 Thanks, @markwalet.\n- Add network destination name to http client spans #2134\n- Add automated Laravel user tracking events #2100\n- Add DD_HTTP_SERVER_ROUTE_BASED_NAMING config to enforce <method> <path> resources #2138\n\n### Fixed\n- Fix a memory leak when overriding default arguments in install_hook (PHP7.2-) #2107\n- Generate runtime-id on first request #2137\n- Better GC workaround on PHP 7.3 and below for cycle collected span stacks #2123\n- Use proper variable for php-config #2114\n- Generate runtime-id on first request #2137\n\n### Internal Changes\n- Add note about cargo in README, make debug symbols included by default for manual compilation #2110\n\n\n## Profiling\n### Added\n- Add timeline support #1997, #2108\n- Add endpoint counts #2111\n- Add file compilation times to timeline #2119\n\n### Internal changes\n- ci: add stack walking benchmark #2041, #2133, #2136\n- ??build: bump indexmap to v2.0.0 #2127\n- build: bump bindgen to 0.66.1 #2128\n\n\n## Application Security Management (0.10.0)\n\n#### Added\n- Add automated user login events DataDog/dd-appsec-php#272\n- Add sign up event DataDog/dd-appsec-php#275\n\n#### Fixed\n- Persist top-most root span from RINIT DataDog/dd-appsec-php#273\n\n#### Internal Changes\n- Rename system-test scenario DataDog/dd-appsec-php#271\n- Support multiple traces and spans but provide only the root span on integration tests DataDog/dd-appsec-php#274\n- Set libddwaf as git `safe.directory` on `build package` step DataDog/dd-appsec-php#276",
"get": "https://pecl.php.net/get/datadog_trace-0.89.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.88.1": {
"version": "0.88.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2023-06-16T21:40:12+00:00",
"releaseNotes": "### Fixed\n- Add note about cargo in README, make debug symbols included by default for manual compilation #2110\n- Fix commit hashes in profiling release versions #2105",
"get": "https://pecl.php.net/get/datadog_trace-0.88.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.88.0": {
"version": "0.88.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2023-06-15T12:15:46+00:00",
"releaseNotes": "### Added\n- Add support for environment variable syntax to config mode in datadog-setup.php #2050\n\n### Changed\n- Use span links in the RabbitMQ Integration #2092\n- Disable root span generation and removes orphans for Laravel Horizon #2091\n\n### Fixed\n- datadog-setup.php: remove return types for compatibility with PHP 5 #2059 Thanks @dserodio!\n- Work around fiber->execute_data only being correct upon yielding #2072\n- Skip error assignment on the root span for 5xx errors that shouldn't be reported #2089\n- Ensure no crashes happen with multiple observers installed #2093\n- Fix incorrect offset access in Laminas Integration #2094\n\n### Internal Changes\n- build: delete unused C components #2055\n- build: bump cmake and catch2 versions #2056\n- build: reduce Laravel queues' tests flakiness #2057\n- testing: add snapshot testing #2058\n- build: pin guzzlehttp/promises to ^1.5.3 #2071\n- Update removed methods used in Guzzle V6 & V7 test suites #2073\n- build: drop now-unused uuid component #2096\n- Prepare instrumentation telemetry #2029, #2086, #2099\n- build: Add rebuild with ASAN section to randomized tests README.md #2084\n\n## Profiling\nAllocation profiling is now enabled by default. You can manage it using the `DD_PROFILING_ALLOCATION_ENABLED` environment variable or the `datadog.profiling.allocation_enabled` setting in the INI file. Although the `DD_PROFILING_EXPERIMENTAL_ALLOCATION_ENABLED` environment variable and `datadog.profiling.experimental_allocation_enabled` INI setting still work, the new ones take precedence.\n\n### Added\n- GA allocation profiling #2038\n- disable allocation profiling if JIT is enabled #2088\n\n### Fixed\n- fixed segfault in test suite #2077\n\n### Internal changes\n- move allocation profiling to its own module #2090\n\n## Application Security Management (0.9.0)\n\n### Fixed\n- Use /proc/self/fd to avoid rlimit iteration starvation DataDog/dd-appsec-php#265\n\n### Internal changes\n- Update ruleset to 1.7.1 and libddwaf to 1.11.0 DataDog/dd-appsec-php#267\n- Update fuzzer corpus DataDog/dd-appsec-php#268",
"get": "https://pecl.php.net/get/datadog_trace-0.88.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.87.2": {
"version": "0.87.2",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "anilm3",
"releaseDate": "2023-05-19T13:12:34+00:00",
"releaseNotes": "## Application Security Management (0.8.1)\n### Fixed\n- Remove max payload size on remote config calls DataDog/dd-appsec-php#256\n- Improve output of phpinfo DataDog/dd-appsec-php#259\n- Avoid emitting errors when blocking on RSHUTDOWN DataDog/dd-appsec-php#261\n- Improve RSHUTDOWN blocking and add logging DataDog/dd-appsec-php#264",
"get": "https://pecl.php.net/get/datadog_trace-0.87.2",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.87.1": {
"version": "0.87.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2023-05-16T10:55:37+00:00",
"releaseNotes": "### Fixed\n- Fix opline being replaced by ZEND_HANDLE_EXCEPTION in uncaught finally on PHP 7 #2052\n- Won't set 4xx errors on Laravel root span every time an Exception is caught #2053",
"get": "https://pecl.php.net/get/datadog_trace-0.87.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.87.0": {
"version": "0.87.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2023-05-12T10:42:30+00:00",
"releaseNotes": "### Added\n- Add config mode to datadog-setup.php #1951\n- Add file hooking to DDTrace\\install_hook #1989\n- Allow DDTrace\\install_hook to take any callable #1991\n- Add Laminas integration #1990\n- Add php-amqp integration #1996\n- Add Laravel Queue integration with Span Links #2026\n- Add SQLSRV Integration #2031\n- Implement replacing of return values #2018\n\n### Changed\n- Allow for consuming an array via DDTrace\\consume_distributed_tracing_headers #2010\n- Allow DDTrace\\install_hook to take any callable #1991\n- Do not force cycle collection at runtime on flush by default #2046\n\n### Fixed\n- Add fixes for parametric testsuite #1988\n- Fix exceptions and errors in auto_prepend_file #1987\n- [Yii] Do not use module property if it doesn't exist #1999\n- Load API files relative to the ComposerBootstrap.php instead of the ddtrace autoloader #2013\n- Avoid side effects from errors within the sandbox #2015\n- Prevent execution of install_hook() hooks after disabling tracer #2016\n- Fix install_hook on functions returning by-reference #2017\n- Fix #2012: Remove PHP 7-only types from signatures #2021 Thanks, @jmakuc, for reporting the issue.\n- Ensure internal server errors are set on the root span in Laravel #2026\n- Starting multiple traces in parallel does not confuse the limiter #2026\n- Fix #2030: Segmentation fault with autoloaders bailing out #2037 Thanks, @NickStallman, for reporting the issue.\n- Possible segfault when instrumenting `curl_setopt()` in PHP 7 #2039\n- Fix resolving hooks within files declaring many functions on PHP 7.2 - 8.1 #2045\n\n### Internal changes\n- Increase the number of configuration entries in zai config #2020\n- Reduce the allocated heap size of the elasticsearch7 container #2040\n\n## Profiling\n\nThe profiling version number is now in sync with the tracer for stable releases.\n\n\n### Changed\n- Sync profiling version number with tracer #1992\n- refactor: move upscaling to `libdatadog` #1984\n- perf: raise sampling distance for allocations to 2048 KB #2036\n\n### Fixed\n- Fix crashes when allocation sampling occurs in certain places #2039\n\n### Internal changes\n- add test to ensure we do not crash with fibers #2003\n- add stack walking test #2034\n\n## Application Security Management (0.8.0)\n### Fixed\n- Amend issue when getting agent host and port DataDog/dd-appsec-php#230\n- Flush socket on body limit DataDog/dd-appsec-php#233\n- Set appsec disabled when ddtrace is not enabled DataDog/dd-appsec-php#245\n- Cap retry to five minutes rc polling DataDog/dd-appsec-php#246\n- Avoid updating waf when no updates provided on poll DataDog/dd-appsec-php#250\n\n### Added\n- Custom rules support DataDog/dd-appsec-php#235\n- Engine update batcher DataDog/dd-appsec-php#248\n\n### Changed\n- Refactor capabilities DataDog/dd-appsec-php#227\n- Refactor service DataDog/dd-appsec-php#229\n- Update ip algorithm DataDog/dd-appsec-php#237\n- Handle request-lifecycle atomically DataDog/dd-appsec-php#249\n- Update-only engine listener and atomic config handling DataDog/dd-appsec-php#253\n\n### Internal Changes\n- Upgrade tracer to 0.85.0 DataDog/dd-appsec-php#226\n- Setup python 3.9 for system tests DataDog/dd-appsec-php#228\n- Update WAF to 1.9.0, Ruleset to 1.6.0 and Tracer to 0.86.1 DataDog/dd-appsec-php#234\n- Disable apache2 restart test on ZTS DataDog/dd-appsec-php#236\n- Implement abstract methods of listener on test DataDog/dd-appsec-php#239\n- Add test to ensure path parser does not count on /config ending DataDog/dd-appsec-php#240\n- Update ruleset to 1.7.0 DataDog/dd-appsec-php#252\n- Update html blocked template DataDog/dd-appsec-php#254\n- Upgrade WAF to 1.10.0 and add custom_rules capability DataDog/dd-appsec-php#255",
"get": "https://pecl.php.net/get/datadog_trace-0.87.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.86.3": {
"version": "0.86.3",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "anilm3",
"releaseDate": "2023-04-06T08:42:48+00:00",
"releaseNotes": "## Application Security Monitoring (0.7.2)\n### Fixed\n- Flush socket on body limit DataDog/dd-appsec-php#233",
"get": "https://pecl.php.net/get/datadog_trace-0.86.3",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.86.2": {
"version": "0.86.2",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "anilm3",
"releaseDate": "2023-04-04T14:44:22+00:00",
"releaseNotes": "## Tracer\n- [Tracer][YII] Do not use module property if it doesn't exist #1999\n\n## Application Security Monitoring (0.7.1)\n\n### Fixed\n\n- Fallback to default agent host and port DataDog/dd-appsec-php#231\n- Support `DD_TRACE_AGENT_URL` DataDog/dd-appsec-php#231",
"get": "https://pecl.php.net/get/datadog_trace-0.86.2",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.86.1": {
"version": "0.86.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "levim",
"releaseDate": "2023-03-30T19:14:44+00:00",
"releaseNotes": "## Profiling (0.15.1)\n\n### Fixed\n\n- Fix crash by reverting \"perf(profiling): speed up stack walking by using function run_time_cache\" #1994. Thanks, @zeroxs for reporting.",
"get": "https://pecl.php.net/get/datadog_trace-0.86.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.86.0": {
"version": "0.86.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "anilm3",
"releaseDate": "2023-03-23T13:30:11+00:00",
"releaseNotes": "### Added\n- Add MemcacheIntegration #1981\n- Add PSR18 tracing support in any PSR18 ClientInterface #1938\n\n### Fixed\n- Restrict backends on DBM propagation #1983\n- Allow for hooking of extended internal classes #1976\n\n### Internal changes\n- Include the circleci URL for 1.0.0-nightly installers #1977\n\n## Profiling (0.15.0)\n\n### Fixed\n- Fix issues when preloading and non-root php-fpm user are used #1975\n\n### Changed\n- perf: speed up stack walking by using function run_time_cache #1949\n\n### Internal changes\n- Fix system ini handling of invalid values in zai config #1982\n\n## Application Security Monitoring (v0.7.0)\n\n### Breaking Changes\n- Delete `enabled_on_cli` ini setting DataDog/dd-appsec-php#182\n\n### Fixed\n- Add uid and gid to sock and lock files DataDog/dd-appsec-php#183\n\n### Added\n- Remote configuration client DataDog/dd-appsec-php#115\n- Plug remote config service DataDog/dd-appsec-php#163\n- Add `config_sync` helper command DataDog/dd-appsec-php#164\n- Add ASM_DATA Product Listener DataDog/dd-appsec-php#188\n- IP Blocking DataDog/dd-appsec-php#188\n- Redirect support DataDog/dd-appsec-php#195\n- Add `request_exec` helper command DataDog/dd-appsec-php#196\n- ASM_DD Product Listener DataDog/dd-appsec-php#207\n- ASM Product Listener DataDog/dd-appsec-php#210\n- Rule Blocking DataDog/dd-appsec-php#210\n- Check if RC is available before polling DataDog/dd-appsec-php#212\n- User Blocking DataDog/dd-appsec-php#213\n\n### Internal Changes\n- Support actions and refactor DataDog/dd-appsec-php#184\n- Update `engine::subscriber` rule data DataDog/dd-appsec-php#186\n- Blocking templates, missing traces fix and set blocking parameters DataDog/dd-appsec-php#187\n- Upgrade tracer to v0.84.0 DataDog/dd-appsec-php#193\n- Upgrade WAF 1.8.2 DataDog/dd-appsec-php#202\n- Add init / commit stage to listeners DataDog/dd-appsec-php#208\n- Ruleset 1.5.2 DataDog/dd-appsec-php#213\n- Allow new and old default rules file to be loaded DataDog/dd-appsec-php#215\n- Fallback to local IP on extraction DataDog/dd-appsec-php#216",
"get": "https://pecl.php.net/get/datadog_trace-0.86.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.84.0": {
"version": "0.84.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2023-02-03T16:31:24+00:00",
"releaseNotes": "### Added\n- Add component tag #1834\n- Add W3C tracecontext propagation and propagate full 128 bit B3 headers #1856\n- Implement #[DDTrace\\Trace] attribute #1867\n- Add 128-bit trace id generation and propagation via _dd.p.tid #1875\n- Allow IP Collection, disabled by default #1895\n- Add support for tracing Dispatched Events in Laravel 5.8+ #1897 (Thanks @ralphschindler)\n\n### Changed\n- Show error message when PDO returns an error #1839\n\n### Fixed\n- Make active_stack infallible: there always exists a stack #1883\n- Fix DDTrace\\flush() with DD_AUTOFINISH_SPANS=1 #1892\n- Null the parent span of span stacks when resetting the tracer #1899\n\n### Internal changes\n- style(datadog-setup.php): reformat file #1869\n- refactor(datadog-setup.php): cleanup PhpStorm warnings #1870\n- Add test Wordpress 6.1 application #1884\n- Revert bogus revert commit #1888\n- Add apt update before fetching codecov dependencies #1893\n- Fix running CI in external PRs #1898\n- Add Symfony 6.2 testsuite #1900\n- Add exported function to close all spans and flush #1902, #1901\n\n## Profiling (0.13.0)\n\nThis release adds new profile types: allocation size and allocations samples. They are off by default. Enable them with the environment variable DD_PROFILING_EXPERIMENTAL_ALLOCATION_ENABLED=1 or INI setting datadog.profiling.experimental_allocation_enabled=1.\n\n### Added\n- Add allocation profiling beta #1815, #1865, #1874, #1878\n\n### Fixed\n- Do not send empty profile samples #1872, #1885\n\n### Changed\n- Bump profiling version for release #1879, #1881\n\n### Internal changes\n- docs: wall-time and cpu-time #1850\n- refactor: fix clippy::too_many_arguments #1871\n- tests: Add test for the fix in #1885 #1887\n\n## Application Security Monitoring (v0.6.0)\n\n#### Added\n- Add zai config DataDog/dd-appsec-php#114\n- Replace actor.ip with http.client_ip DataDog/dd-appsec-php#128\n- PHP 8.2RC support DataDog/dd-appsec-php#151\n- Generate IP on appsec DataDog/dd-appsec-php#155\n- Support PHP 8.2 Release DataDog/dd-appsec-php#166\n- Login and custom event SDK DataDog/dd-appsec-php#174\n- Update SDK with separate success/failure functions DataDog/dd-appsec-php#177\n\n### Fixed\n- Return error response in helper when incoming message can't be adequately handled DataDog/dd-appsec-php#120\n- Avoid creating log file as root DataDog/dd-appsec-php#124\n- Reset context on shutdown DataDog/dd-appsec-php#130\n- Handle errors on request_shutdown DataDog/dd-appsec-php#132\n- Avoid regenerating ip when multiple headers are already present DataDog/dd-appsec-php#170\n\n### Internal changes\n- Upgrade WAF to 1.5.0 and ruleset to 1.4.0 DataDog/dd-appsec-php#117\n- Update ip extraction module DataDog/dd-appsec-php#125\n- Make test use latest version of ddtrace 0.79.0 DataDog/dd-appsec-php#129\n- Update ddtrace-basic test to be compatible with older tracers DataDog/dd-appsec-php#142\n- Fix package / release build DataDog/dd-appsec-php#152\n- Update LLVM script DataDog/dd-appsec-php#153\n- Fix package build DataDog/dd-appsec-php#172\n- WAF upgrade to 1.6.0 and ruleset to 1.4.2 DataDog/dd-appsec-php#175\n- Upgrade deprecated actions and ruleset to 1.4.3 DataDog/dd-appsec-php#176",
"get": "https://pecl.php.net/get/datadog_trace-0.84.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.83.1": {
"version": "0.83.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2023-01-18T20:53:34+00:00",
"releaseNotes": "### Fixed\n- Use the HttpWorker instead of the Psr7Worker for Roadrunner for more generic usage #1864\n- Fix trace_id reset in DDTrace\\set_distributed_tracing_context() #1863\n- Work around broken enum functions run_time_cache on PHP 8.2.0 and 8.2.1 #1862",
"get": "https://pecl.php.net/get/datadog_trace-0.83.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.83.0": {
"version": "0.83.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2023-01-13T18:34:18+00:00",
"releaseNotes": "### Added\n- Add span.kind tagging #1801, #1843\n\n### Changed\n- Change error.msg to error.message #1821\n- Change process_id to metrics tag #1826\n- Remove libexecinfo on Alpine #1838\n- Always interpolate error message placeholders to avoid confusion #1849\n\n### Fixed\n- Fix installer name in help output in datadog-setup.php #1829\n- Fix #1828: crash when copying an immutable array #1832\n- Fix CodeIgniter integration to not depend on CI_Controller class #1835\n- (PHP 7) Fix memory leak with custom CURLOPT_READFUNCTION #1841\n- Support custom ini names in installer #1846, #1851\n- Clear the active closed stack head when resetting the tracer #1853\n\n### Internal changes\n- Speed up \"Attaching workspace\" step in CI #1823\n- Improve test suite flakiness & randomized asan #1817\n\n## Profiling (0.12.0)\n\n### Added\n- Add configuration to save profiles to disk #1837\n\n### Changed\n- Bump libdatadog to 1.0 #1825\n- Bump profiling version for release #1848\n\n### Internal changes\n- Fix compile time warnings when compiling without features #1819\n- Avoid putting .package-cache into the cache, commit Cargo.lock #1852",
"get": "https://pecl.php.net/get/datadog_trace-0.83.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.82.0": {
"version": "0.82.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "pierotibou",
"releaseDate": "2022-12-06T16:59:58+00:00",
"releaseNotes": "### Added\n- PHP-8.2 support #1800\n- Add Elasticsearch 8 support #1808\n- Add a Roadrunner integration #1813\n\n### Changed\n- Change system.pid to process_id #1796\n\n### Fixed\n- Extract priority sampling whenever is string or int #1789\n- Fix crash during preloading on 8.1+ #1799\n- Fix $integration->setError() to also accept \\Error instances #1802\n- Fix ZEND_CATCH chaining logic #1803, #1814\n- Fix misbehaviour with 256+ hooks on a same function #1809\n- FIX PSR-4 autoloading in ComposerBootstrap class #1816 (Thanks @ls-youssef-jlidat)\n- Fix dropped spans causing an infinite loop #1818\n\n### Internal changes\n- Avoid deprecated zend_atol on PHP 8.2 #1778\n- Retry docker images not starting in CI #1807\n\n## Profiling (0.11.0)\n\nProfiling now defaults to being enabled. This removes one step in onboarding as the environment variable DD_PROFILING_ENABLED no longer needs to be set to 1, which can be difficult in some situations. The recommended way to configure profiling is to use .ini settings, which is generally easier.\n\n### Added\n- Add .ini support #1775.\n- Groundwork for allocation profiling #1794\n\n### Changed\n- Bump libdatadog to 0.9 #1782.\n- Bump env_logger to 0.9.3 #1804.\n\n### Internal Changes\n- Add troubleshooting to README #1761",
"get": "https://pecl.php.net/get/datadog_trace-0.82.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.81.1": {
"version": "0.81.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2022-11-03T12:24:03+00:00",
"releaseNotes": "#### Fixed\n- Fix span limiter not being reset in long running processes #1785",
"get": "https://pecl.php.net/get/datadog_trace-0.81.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.81.0": {
"version": "0.81.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2022-11-02T11:27:01+00:00",
"releaseNotes": "### Added\n- Rate limiting support #1769\n- Add span stacks #1746\n\n### Changed\n- Stop collecting IP on tracer #1774\n- Amend wording when uninstalling datadog #1756\n\n### Fixed\n- Guzzle Integration not initialized correctly #1762.\n- Do not create root spans for certain Symfony methods #1771. Thanks, @radykal-com!\n- ldconfig not found by installer #1773\n- Fix crash in ddtrace_curl_multi_get_gc #1779\n\n### Internal changes\n- Fix in-tree compilation #1760\n- Reusability of zai config across products #1765\n- Avoid deprecated zend_atol on PHP 8.2 #1778\n\n## Profiling (v0.10.2)\n\n### Fixed\n- Prevent deadlocks when forking #1752\n- Fix linking on arm64 mac #1759\n\n## Application Security Monitoring (v0.4.4)\n\n#### Added\n- Generate ip and duplicate ip headers on appsec DataDog/dd-appsec-php#141",
"get": "https://pecl.php.net/get/datadog_trace-0.81.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.80.0": {
"version": "0.80.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "krakjoe",
"releaseDate": "2022-09-29T06:06:56+00:00",
"releaseNotes": "### Added\n\n### Changed\n- Make sampling priorities public API again #1742\n\n### Fixed\n- Fix behaviour of return false in trace hooks #1749\n- Handle non-binaries in installer #1743\n- Fix mishandling of payload size limit #1750\n\n### Internal changes\n\n\n## Profiling (v0.10.1)\n\n### Fixed\n- Match the service names of the tracer when unset or empty #1733\n- Avoid crashing when pcntl_fork is called #1745\n\n## Application Security Monitoring (v0.4.3)\n\n### Fixed\n- Return error response in helper when incoming message can't be unpacked DataDog/dd-appsec-php#120 \n- Avoid creating a log file during MINIT/MSHUTDOWN DataDog/dd-appsec-php#124 \n- Handle helper errors gracefully DataDog/dd-appsec-php#127 \n- Reset context on shutdown DataDog/dd-appsec-php#130\n- Handle errors on request shutdown DataDog/dd-appsec-php#132 \n\n### Internal changes\n- Enable CI on all relevant branches DataDog/dd-appsec-php#123",
"get": "https://pecl.php.net/get/datadog_trace-0.80.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.79.0": {
"version": "0.79.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2022-09-09T14:11:27+00:00",
"releaseNotes": "### Added\n- Integrate with Symfony console commands #1724\n\n### Changed\n\n### Fixed\n- Fix #1709 appsec attempting to load erroneously #1711\n- Fix symfony service and root span name #1723 (Thanks @numyx)\n- Initialize hooks and config early to prevent conflicts with code executed in early startup #1726\n- Fix hook dynamic data zeroing when new hooks are added during hook execution #1730\n\n### Internal changes\n- Fix compilation on MacOS #1716\n- Deduplicate PHP 7 and PHP 8 source files #1722\n\n\n## Profiling (v0.10.0)\n\n#### Added\n- Add Endpoint Profiling #1720\n\n#### Internal changes\n- Extract C API module; refactor Uuid #1710",
"get": "https://pecl.php.net/get/datadog_trace-0.79.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.78.0": {
"version": "0.78.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "krakjoe",
"releaseDate": "2022-08-24T12:00:07+00:00",
"releaseNotes": "### Added\n- Instrument pcntl_fork and reset tracing when it is called #1633 (Thanks @jlesueur)\n- ARM64 support (Build arm images in CI) #1701\n\n### Changed\n- Accept pseudonym on via header as specified by rfc7230 #1696\n- Add agent target URL to flush-message to help with debugging #1705\n- Add IPv6 support to DD_AGENT_HOST #1707\n\n### Fixed\n- Fix span memory leak and packaging #1697\n- Fix datadog-setup.php failing in environments without scan directory #1702\n- Fix random number generator usage #1704\n- Set root span name only in HttpKernel::boot() to avoid side effects on CLI #1706\n- Fix meta information loss in PDOIntegration #1708\n\n### Internal changes\n- Update artifact URL for v0.77.0 gitlab deployments #1686\n- Update relenv to use datadog-setup.php #1689\n- Add arm support to docker images #1699\n\n## Application Security Monitoring (v0.4.0)\n\n#### Fixed\n- Fix interned string invalidation on PHP <= 7.2 DataDog/dd-appsec-php#99\n- Replace `php_error_docref` with `php_log_err` DataDog/dd-appsec-php#101\n\n#### Changed\n- Log helper communication DataDog/dd-appsec-php#97\n- Set environment values at rinit on php-fpm DataDog/dd-appsec-php#105\n\n#### Internal changes\n- Update development documentation DataDog/dd-appsec-php#98\n- Update system tests with new variants DataDog/dd-appsec-php#102\n- Add helper test for config DataDog/dd-appsec-php#108\n- Fix missing helper header coverage DataDog/dd-appsec-php#109\n- Upgrade integration test tracer version to 0.76.1 DataDog/dd-appsec-php#110\n- Add a way to include local changes to the cmake build process DataDog/dd-appsec-php#111\n- libddwaf upgraded to 1.4.0 DataDog/dd-appsec-php#116\n\n## Profiling (v0.9.0)\n\n#### Added\n - Add Unix Domain Socket (UDS) support #1698\n\n#### Fixed\n - Avoid PHP per-request interning #1700\n\n#### Internal changes\n - Add phpt tests for profiling #1690",
"get": "https://pecl.php.net/get/datadog_trace-0.78.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.77.0": {
"version": "0.77.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2022-08-03T01:33:55+00:00",
"releaseNotes": "?? The tracer and profiling packages for PHP 7 and 8 are built on CentOS 7. These packages will not run on older GNU Linux versions like CentOS 6, Debian 7, and Ubuntu 12.04.\n\n### Added\n- Add single span ingestion mechanism #1628\n- Add \"recurse\" => true option to hook/trace config array #1677\n\n### Changed\n- Allow Symfony EventDispatcher::dispatch hooks to recurse #1678\n\n### Fixed\n- Fix JIT compatibility under macOS #1661\n- Fix -Werror=address-of-packed-member #1664\n- Add support for ports on x-forwarded-for header #1675. Thanks, @estringana!\n\n### Internal changes\n- Move to CentOS 7; begin adding profiling deps #1660\n- Add profiling sources #1606\n- Build and package datadog-profiling in CI #1663\n- Fix profiler config in randomized tests #1682\n\n## Profiling (v0.8.0)\n\n### Added\n - Add `process_id` and `runtime_version` tags #1606.\n - Add support for changing env vars per request, such as per-directory env var settings in Apache #1606.\n - Add fake frame when truncating stacks #1679. This way users can tell when the stack is truncated.\n\n### Changed\n - Switch <php> to <?php #1680\n - Raise max stack depth to 512 #1681\n - Enable CPU Time profile by default #1663. This can disabled by setting the environment variable `DD_PROFILING_EXPERIMENTAL_CPU_TIME_ENABLED` to `0`, `off`, or `no`.\n - Change logging format #1606. Add a new log level `trace`, which is even more verbose than `debug`.\n - Stop sending a profile on every `phpinfo()` (or the equivalent command line option `--ri datadog-profiling`) #1606",
"get": "https://pecl.php.net/get/datadog_trace-0.77.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.76.2": {
"version": "0.76.2",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "krakjoe",
"releaseDate": "2022-07-28T14:56:44+00:00",
"releaseNotes": "### Fixed\n- Check for datadog-profiling in startup only instead of inside a message_handler #1670. This fixes a possible crash when all of tracer, profiler and appsec are loaded.\n- Add opcode shutdown handlers, fix integrations after repeated minit #1669. This fixes a crash when using reload on apache (sending SIGUSR1).\n- (PHP 7) Fix curl wrapper use after free #1662. This fixes a possible crash when curl handles are manually released within destructors inside the PHP shutdown sequence.\n- Fix -Werror=address-of-packed-member (#1664).\n\n### Internal changes\n- Skip curl test if curl is not loaded #1668\n\n## Profiling (v0.7.2)\n- Fix crash with SAPI env vars DataDog/dd-prof-php#46\n- Avoid .message_handler due to upstream bug DataDog/dd-prof-php#47",
"get": "https://pecl.php.net/get/datadog_trace-0.76.2",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.76.1": {
"version": "0.76.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "krakjoe",
"releaseDate": "2022-07-14T19:43:57+00:00",
"releaseNotes": "### Fixed\n\n- Bump PHP minimum version in PECL #1652\n- PHP 7.3+ Fix compatibility with opcache #1656\n\n### Internal changes\n\n- %d resource ids in language tests #1657",
"get": "https://pecl.php.net/get/datadog_trace-0.76.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.76.0": {
"version": "0.76.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2022-07-08T14:28:41+00:00",
"releaseNotes": "### Added\n- Add B3 headers injection and extraction #1629\n- Collect http.client_ip #1621\n\n### Changed\n- Filter x-datadog-tags for _dd.p. prefix and add DDTrace\\add_distributed_tag #1618\n- Rename query string obfuscation variable #1630\n- Collect query string by default and obfuscate #1615\n- Update regex to account for URL encoding #1622\n- Update library versions used in tests + support plesk paths #1632\n- Remove service name propagation #1635, #1636\n- Add integration loaded output for deferred integrations on DD_TRACE_DEBUG=1 #1639\n- Reduce memory footprint of strpprintf #1640\n- New implementation for hooks #1617\n- (PHP 5) Add g1a/composer-test-scenarios and symfony/flex to composer allow-plugin list #1647\n\n### Fixed\n- Fix crash with numerical value in $_SERVER array #1634\n- Fix missing query string on http.url from integrations #1642\n\n### Internal changes\n- Add link to compatibility requirements in README.md #1610\n- Manually build PHP for randomized tests images #1616\n- Eliminate PHP 5 references from master #1626\n- Remove PHP 5 from CI and fetch it instead from the latest PHP-5 branch build #1624\n- Fix test_web on PHP 8.0 #1631\n- Add g1a/composer-test-scenarios and symfony/flex to composer allow-plugin list #1637\n- (PHP 5) Run Wordpress testsuite actually against PHP 5 #1638\n- Test debian bullseye instead of stretch in CI #1644\n- Update rel env to use 0.75.0 (#1620)\n- Disable clang format check in CI #1619\n- Add one more allow-plugins in root composer.json #1646\n- (PHP 5) Add g1a/composer-test-scenarios and symfony/flex to composer allow-plugin list #1647\n\n## Profiling (v0.7.0)\n# Changed\n- Do not upload empty profiles. See DataDog/dd-prof-php@e03ff23e5216f863061285e13170d011d0c04bc8 for details.\n\n# Fixed\n- Fix a small memory leak with env var handling.\n\n# Added\n- Add SAPI as profile tag.\n- Add support for `DD_PROFILING_EXPERIMENTAL_CPU_TIME_ENABLED` env var. It previously supported this functionality under a different, undocumented name.",
"get": "https://pecl.php.net/get/datadog_trace-0.76.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.75.0": {
"version": "0.75.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2022-06-10T17:39:51+00:00",
"releaseNotes": "## Tracer\n### Added\n- Add a new decision maker mechanism #1598\n- Rename DD_TRACE_X_DATADOG_TAGS_PROPAGATE_SERVICE to DD_TRACE_PROPAGATE_SERVICE #1612, #1613\n- Add support for unix domain sockets #1601\n- Add RedisCluster split by host #1602 (Thanks to @radykal-com)\n- Add http.useragent to root span #1607\n\n### Fixed\n- Fix #1582: *_id keys in meta and metrics are wrongly encoded #1599\n- Fix dlerror logging format #1605\n- Fix DD_TRACE_URL_AS_RESOURCE_NAMES_ENABLED accidentally guarding http.method and http.url as well #1608\n\n### Internal changes\n- Fix downstream job trigger for deployments to rel-env #1597\n- Update dd-trace-php link for reliability environment #1595\n- Move request-replayer from our internal deprecated repository to dd-trace-php #1600\n- Support restricting PHP versions while running randomized tests #1604\n- Transition to non-legacy circleci images #1609",
"get": "https://pecl.php.net/get/datadog_trace-0.75.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.74.0": {
"version": "0.74.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2022-05-12T13:12:17+00:00",
"releaseNotes": "## Tracer\n### Added\n- Add configurations for retaining select query string parameters in resources and http.url #1566\n\n### Changed\n- Respect autofinish on flush(), add warnings in debug mode when having unbalanced spans #1564, #1569\n- Loose restrictions around distributed tracing context setting #1571\n\n### Fixed\n- Fix dispatch resetting #1570\n- Fix run_time_cache initialization for closure calls with foreign scope on PHP 7.4-8.1 #1578\n- Eliminate the separate span id stack, fix distributed tracing trace_id #1586\n- Fix handling of INI and ENV changes post minit, pre runtime #1593\n- Fix inconsistent module load and unload sequence #1585\n- Fix installer setting check for extensions #1584\n\n### Internal changes\n- Pin composer on PHP 7 docker containers to version 2.2 #1565\n- Disable flaky test on PHP 5.4 #1583\n- Remove Symfony 4.2 from PHP 7.4 web tests #1587\n- Add the scenario name to the randomized test docker name #1590\n- Fix ownership of files within release artifact tars #1591\n\n## Profiling (v0.6.1)\n### Fixed\n- Bump profiling to v0.6.1 #1588. This re-initializes static variables on startup/minit which may help prevent Apache reload from crashing.\n- Enable profiling installation on PHP 8.1 #1576\n\n## Application Security Monitoring (v0.3.2)\n### Fixed\n- Fix hybrid extension initialisation [#92](https://github.com/DataDog/dd-appsec-php/pull/92)",
"get": "https://pecl.php.net/get/datadog_trace-0.74.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.73.0": {
"version": "0.73.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2022-04-28T08:48:17+00:00",
"releaseNotes": "## Application Security Monitoring\n### v0.3.1\n#### Fixes\n- Fix relative module order with ddtrace on PHP 7.3 issue [#88](https://github.com/DataDog/dd-appsec-php/issues/88) - [#86](https://github.com/DataDog/dd-appsec-php/pull/86)\n\n### v0.3.0\n#### Breaking Changes\n- Rename ini settings from `datadog.appsec.rules_path` to `datadog.appsec.rules` [#74](https://github.com/DataDog/dd-appsec-php/pull/74)\n- Interpret `datadog.appsec.waf_timeout` as microseconds rather than milliseconds [#74](https://github.com/DataDog/dd-appsec-php/pull/74)\n\n### Fixes\n- Add obfuscator strings when initialising WAF from client settings [#83](https://github.com/DataDog/dd-appsec-php/pull/83)\n\n#### Additions\n- Add WAF metrics and errors to traces [#79](https://github.com/DataDog/dd-appsec-php/pull/79)\n- Actor IP resolution from request headers [#80](https://github.com/DataDog/dd-appsec-php/pull/80)\n- Add support for WAF event obfuscator [#82](https://github.com/DataDog/dd-appsec-php/pull/82)\n- Add obfuscator regex for values [#84](https://github.com/DataDog/dd-appsec-php/pull/84)\n\n#### Miscellaneous Changes\n- Update installer links in documentation and tests [#76](https://github.com/DataDog/dd-appsec-php/pull/76)\n- Add `parameter_view` for non-ownership of WAF parameters [#78](https://github.com/DataDog/dd-appsec-php/pull/78)\n- Accept IP list on `X-Cluster-Client-IP` header [#81](https://github.com/DataDog/dd-appsec-php/pull/81)\n- Update ruleset to v1.3.1 [#82](https://github.com/DataDog/dd-appsec-php/pull/82)\n- libddwaf upgraded to v1.3.0 [#82](https://github.com/DataDog/dd-appsec-php/pull/82)\n- Update installation instructions [#84](https://github.com/DataDog/dd-appsec-php/pull/84)",
"get": "https://pecl.php.net/get/datadog_trace-0.73.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.72.0": {
"version": "0.72.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2022-04-07T12:21:44+00:00",
"releaseNotes": "### Added\n- Add support for memcached on PHP 8 #1558\n\n### Fixed\n- Fix #1544: Handle hook dummy span hack when assigning parent #1557\n\n### Internal changes\n- Add gdbinit files for php 8.0 and 8.1 #1556\n- Add system tests in CI #1552\n- Use latest 8.0.17 in buster images #1559\n- Update flex to v1.18.5 in composer.lock files for Symfony 4.0 and 5.0 #1560\n- Add a single test to xfail after upgrade of docker image to 8.0.18 #1561\n- Update link to download 0.71.1 in the reliability environment #1555",
"get": "https://pecl.php.net/get/datadog_trace-0.72.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.71.1": {
"version": "0.71.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2022-03-31T15:02:52+00:00",
"releaseNotes": "### Fixed\n\n- Use -1 as uninitialized op_array_extension marker #1550\n\n### Internal changes\n\n- Use latest ubuntu images in CI #1543\n- Use 8.1.4 in development buster images #1553\n- Add randomized tests for PHP 8.1 and make buster containers arm64 ready #1551\n- Remove regressions from randomized tests #1547",
"get": "https://pecl.php.net/get/datadog_trace-0.71.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.71.0": {
"version": "0.71.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2022-03-15T11:22:15+00:00",
"releaseNotes": "### Changed\n- Do not disable tracing when ionCube loader is detected #1520\n\n### Added\n- Added ES integration support for newer PHP and ES versions #1516\n- Add support for wordpress on PHP 8 and use a different hook #1522\n- Add Code Hotspots #1517\n- Implement split by instance in PDO #1498\n\n### Fixed\n- Trigger profiling interrupt function before internal observer_end #1499\n- Fix compatibility with PHP 8.2 (master) #1521\n\n### Internal changes\n- Clean up Tea SAPI and allow ddtrace to run there #1502\n- Use a new curl session for each writer iteration and clear it after #1504\n- Increase bgs backlog by 20% #1506\n- Always include the Tea SAPI Catch2 test header #1507\n- Add is_nil function to UUID component #1515\n- Fix randomized testsuite memory limits and background sender curl handling #1525\n- Run cmake-format on TEA's CMakeLists.txt #1527\n- Simplify calls (zai symbols), add support for generators #1529\n- Update profiling to v0.5.0 #1537\n- Update profiling to v0.5.1 #1541\n- Move from checking status code reported by vegeta to check error logs #1540\n- Fix ZAI symbols on PHP 7.3+ (randomized tests failures) #1536\n- ??Add a test case for guzzle url no schema + split by domain #1534\n- Point rel-env deployment to GH release 0.70.1 #1531\n- Tea ZE Suppport #1526\n- Show curl response status code in tests #1524\n- Add long running script memory check to randomized tests #1356\n- Add a test for sub path and wildcards normalization #1505",
"get": "https://pecl.php.net/get/datadog_trace-0.71.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.70.1": {
"version": "0.70.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2022-03-02T16:11:15+00:00",
"releaseNotes": "### Changed\n- Disable x-datadog-tags header propagation #1528\n### Fixed\n- Fix Laravel exceptions being over-reported #1361\n- Fix too aggressive symbol exporting #1523\n- Hide the dummy span during trace hooks away #1519\n- (PHP 5) Remove empty multi_curl handles hashtables #1513\n- Do not mess with the span duration in curl integration #1512\n- Fix #1510 post-install not detecting required extension #1511\n- ??Explicitly depend on ext/standard and fix in-tree builds #1509",
"get": "https://pecl.php.net/get/datadog_trace-0.70.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.70.0": {
"version": "0.70.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2022-02-07T08:45:29+00:00",
"releaseNotes": "### Changed\n- Make the legacy API a pure proxy to internal spans #1471\n- Load the legacy tracer only when actually used #1449\n- Update profiling to v0.4.0 #1495\n\n### Added\n- Add appsec library to the release bundle #1469\n- Add appsec installation #1470\n\n### Fixed\n- Always emit NoopSpans if the tracer extension is disabled #1475\n- fix dd_update_upstream_services on php5 #1476\n- Setup: Error if profiling is given but unavailable #1477\n- Ensure dropped spans are distinguishable from unfinished spans #1480\n- Fix Span::setError docblock #1481\n- Fix invalid reads in background sender #1483\n- Restore support for manual distributed tracing #1484\n- Remove version number from datadog-setup.php's help output #1487\n- Improve error detection for datadog-setup.php #1489\n\n### Internal changes\n- Add parallelism to makefile for builds and test runs #1382\n- Add profiling module to randomized tests #1412\n- Run randomized internal API stress testing in CI #1445\n- Switch to Symbols interface, cleanup tests #1465\n- Improve Symbol Call interface, introduce closure support #1467\n- Support in-tree builds of Tea #1472\n- Sandbox Bailout #1473\n- Patch zend_alloc.c to not crash in CI for PHP 7.0 to 7.2 #1478\n- build tea once during development #1479\n- Update PHP 8.1 dependencies, include laravel testing #1482\n- Inline queue function pointers #1490\n- Adjust stack sample max stack depth #1491\n- Remove unused profiling components #1492",
"get": "https://pecl.php.net/get/datadog_trace-0.70.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.69.0": {
"version": "0.69.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2022-01-24T16:57:30+00:00",
"releaseNotes": "### Breaking changes\n- Query string is now not included in `http.url` in Nette integration and in generic web frameworks tracing.\n\n### Added\n- Implement x-datadog-tag propagation and _dd.p.upstream_services #1405\n\n### Changed\n- Get rid of ini-ignoring and redundant checking of ddtrace being enabled #1448\n- Strip query string from http.url in generic web tracing #1454\n- Use internal root spans in Integrations in place of using the legacy API #1383\n- Hard-code version in installer, remove --url option, rename it #1463\n- Remove generator support on PHP 7 #1464\n\n### Fixed\n- Ensure a proper sampling decision is also evaluated when distributed tracing is used #1450\n- Fix ObjectKVStore compatibility with throwing autoloaders #1451\n- Properly report error for artisan command in Laravel 7+ #1456 (thank you @ls-paul-julien-vauthier)\n\n### Internal changes\n- Migrate ZAI tests to use ZAI SAPI harness #1457\n- Move ZAI SAPI to root directory #1411 #1443\n- ZAI methods on PHP 5: Args and retval #1401\n- Implement ZAI Value interface #1453\n- Implement ZAI SAPI test harness (catch2) #1455\n- Implement ZAI SAPI test fixture (catch2) #1458\n- Refactor ZAI SAPI into Tea SAPI, brings various improvements #1462\n- Implement ZAI Symbols interface #1452\n- Address Sanitizer check for ZAI SAPI - 1459\n- Fix ZaiSapi_ROOT path in Makefile #1443",
"get": "https://pecl.php.net/get/datadog_trace-0.69.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.68.2": {
"version": "0.68.2",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2022-01-07T20:02:57+00:00",
"releaseNotes": "### Changed\n- Clean up generate-final-artifact.sh #1442\n\n### Fixed\n- Replace direct access of meta/metrics zvals by safe array access in most places #1440\n- Always separate meta and metrics arrays on access #1441\n- Bump profiling to v0.3.0-rc.6 (fixes some linking bugs) #1444",
"get": "https://pecl.php.net/get/datadog_trace-0.68.2",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.68.1": {
"version": "0.68.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-12-30T17:03:17+00:00",
"releaseNotes": "### Fixed\n- Do not diagnostics when ddtrace is disabled #1434\n- Fix json symbol address resolving logic #1432\n- Disable tracing when PHP is executed during RINIT #1429\n- Change Predis integration type to \"redis\" #1427",
"get": "https://pecl.php.net/get/datadog_trace-0.68.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.68.0": {
"version": "0.68.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-12-22T18:29:07+00:00",
"releaseNotes": "### Added\n- Bring priority sampling to internal #1366\n- SpanData::$parent property #1369\n- Add queue and channel components #1388\n- Add log component #1390\n- Add arena component #1391\n- Add stack sample component #1392\n- Add uuid component #1393\n- Add time component #1394, #1408\n- Add profiler installation #1422\n- Zai/json #1378, #1397\n- Add Code Coverage #1389\n\n### Changed\n- (PHP 8) Migrate ObjectKVStore to WeakMap internally #1362\n- Adjust components #1387\n- Export only specific symbols #1407\n- Sanitize user information from urls #1396\n- Split INI setting in installer so they can be added separately when missing #1415\n- Use the new targz bundle format with the new PHP installer #1421\n- Have both legacy and new installer to fail when json PHP extension is not enabled #1410\n\n### Fixed\n- Fix Laravel unnamed route with caching and domain specification #1364\n- Fix http.url of internal root span #1360\n- Add small framework to stress test our internal API with bogus inputs #1365\n- PDOIntegration::parseDSN fails to parse some DSN #1373\n- Fix constructor of OpenTracing wrapper when no Datadog tracer is provided #1406 - thanks @OGKevin for the reproduction case\n- Fix parsing of urls without schema into host name #1385",
"get": "https://pecl.php.net/get/datadog_trace-0.68.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.67.0": {
"version": "0.67.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-11-02T09:58:28+00:00",
"releaseNotes": "### Added\n- (PHP 5) Add zai config, internal spans, and exception handling (#1339)\n- (PHP 7, 8) Add mongodb instrumentation (#1345)\n- PHP installation script (beta) (#1335)\n\n### Changed\n- (PHP 5, 7) Move _dd.origin handling to internal #1347\n\n### Fixed\n- (PHP 7, 8) Fix exception handling with opcache cfg optimization enabled (#1344)\n- (PHP 7, 8) Fix memory leaks in curl and error handling (#1350)\n- Use ObjectKVStore in place of internal registry to store PDO connection parameters (#1355)",
"get": "https://pecl.php.net/get/datadog_trace-0.67.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.66.0": {
"version": "0.66.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-10-11T14:56:30+00:00",
"releaseNotes": "### Breaking changes\n* Global tags are now assigned early. This means that users have to make sure to not overwrite `meta`, but only add to it instead, if they don't want to lose global tags. Wrong: `$span->meta = [ 'some' => 'tag' ]`. Correct `$span->meta['some'] = 'tag'`.\n* Support for legacy param `DD_TRACE_RESOURCE_URI_MAPPING` has been dropped with the migration to C code, after more than a year of deprecation. Use `DD_TRACE_RESOURCE_URI_FRAGMENT_REGEX`, `DD_TRACE_RESOURCE_URI_MAPPING_INCOMING`, and `DD_TRACE_RESOURCE_URI_MAPPING_OUTGOING ` instead. See [resource mapping](https://docs.datadoghq.com/tracing/setup_overview/setup/php/?tab=containers#map-resource-names-to-normalized-uri) for more details.\n\n### Added\n\n- (PHP 8) Migrate _dd.origin and distributed header sending to internal (#1267)\n- (PHP 5) Add headers ZAI implementation (#1308)\n- Add support for PHP 8.1 (#1297)\n\n### Changed\n- (PHP 7, 8) Internal (root) span initialization (#1329)\n\n### Fixed\n\n- (PHP 5, 7, 8) Remove all lines containing zai_sapi from config.m4 (#1333)\n- (PHP 7, 8) Fix unnamed service spans caused by improper handling of `DD_TRACE_ENABLED` (#1332)",
"get": "https://pecl.php.net/get/datadog_trace-0.66.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.65.1": {
"version": "0.65.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-09-21T16:37:16+00:00",
"releaseNotes": "### Fixed\n- Prevent flushing traces of requests without actual PHP code #1327",
"get": "https://pecl.php.net/get/datadog_trace-0.65.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.65.0": {
"version": "0.65.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-09-20T16:13:26+00:00",
"releaseNotes": "**WARNING**: Resource names for ?Lumen? applications will change by default to `GET /actual/uri/path` from the previous format `GET action_name` or `GET App\\Controller@action_method`. You might need to adjust your monitors and filters for the change. In order to go back to the previous behavior, instead, you can temporarily set `DD_TRACE_URL_AS_RESOURCE_NAMES_ENABLED=false`\n\n### Added\n- Add functions ZAI support for PHP 5 and 7 #1300\n- Add properties and exceptions ZAI implementations for PHP 5 #1306\n- Enhance exception reporting on Laravel 5+ #1322\n\n### Changed\n- Remove src/dd-doctor.php #1316\n- Honor DD_TRACE_URL_AS_RESOURCE_NAMES_ENABLED in Lumen resource naming #1318\n\n### Fixed\n- Fix CLI processes emitting empty root spans when CLI tracing is not enabled #1320",
"get": "https://pecl.php.net/get/datadog_trace-0.65.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.64.1": {
"version": "0.64.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-09-08T13:55:42+00:00",
"releaseNotes": "**WARNING**: Users doing manual instrumentation using the `GlobalTracer::get()->startActiveSpan()` api should update to this version from 0.63.0 and 0.64.0.\n\n### Fixed\n- Fix span start times of userland spans (#1312)",
"get": "https://pecl.php.net/get/datadog_trace-0.64.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.64.0": {
"version": "0.64.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-09-03T14:07:21+00:00",
"releaseNotes": "**WARNING**: With this release the file `_generated.php` is not used anymore and files `_generated_api.php` and `_generated_internal.php` are generated instead. This only impacts users having a very custom installation procedure that requires custom builds and manual copy of files.\n\n### Added\n- Bring ZAI config, internal spans, and improved exception handling to PHP 7 #1293\n\n### Fixed\n- Disable flaky ext/ftp tests on PHP <8.1 #1296\n- Compatibility with PHP 7.4+ preloading #1298 (thank you @olsavmic for the investigation and reproduction case)\n- Check for php8 binary in package/post-install.sh script #1301 (thank you for the contribution @daiwai)\n- Support userland spans with custom root spans created internally #1303\n- Fix memory leak of already defined global tags #1304",
"get": "https://pecl.php.net/get/datadog_trace-0.64.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.63.0": {
"version": "0.63.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-08-18T16:04:30+00:00",
"releaseNotes": "### Added\n\n- ZAI config (#1260)\n- Use exceptions ZAI for PHP 7 as well (#1283)\n\n### Fixed\n\n- Fix arginfo of error & exception handler (#1291)",
"get": "https://pecl.php.net/get/datadog_trace-0.63.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.62.1": {
"version": "0.62.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "bwoebi",
"releaseDate": "2021-07-28T17:05:48+00:00",
"releaseNotes": "### Fixed\n- Add linux/securebits.h to CentOS docker container, to have it present in linux build artifacts #1286\n- Handle an additional case of capabilities being dropped within our background sender #1287",
"get": "https://pecl.php.net/get/datadog_trace-0.62.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.62.0": {
"version": "0.62.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-07-21T14:28:59+00:00",
"releaseNotes": "### Added\n- ZAI env #1250\n- Add ZAI component for reading headers #1256\n- (PHP 8) Add proper exception and error reporting #1272\n- (PHP 8) Register SpanData->exception property and store exception info there instead of internally #1281\n### Changed\n- Refactor internal span objects to be allocated together with their internal data #1254\n- Enforce metrics to be floats in internal serializer #1258\n- Allow for global debug mode, add zai testing to Makefile and more minor testing improvements #1265\n- Move DDTrace\\Format to src/api #1271\n- Moving spans from userland to extension #1262\n### Fixed\n- Fix msgpack serialization of empty arrays #1259\n- Set SECBIT_NO_SETUID_FIXUP to prevent crashes after setuid() calls #1276\n- Apply original curl headers when curl_setopt_array() fails #1279\n- Fix owner of files included in the distributed .tar.gz archive #1280\n- Fix tests: Pin Symfony 4 tests to laminas/laminas-code < 4.4 #1266",
"get": "https://pecl.php.net/get/datadog_trace-0.62.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.61.0": {
"version": "0.61.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-07-13T09:33:50+00:00",
"releaseNotes": "### Added\n- Add \\DDTrace\\get_current_context #1227\n- Create property ZAI seam for PHP 8 #1246\n- Create exceptions ZAI seam for PHP 8 #1248\n- Run mongodb-driver testsuite in CI with and without the tracer #1255\n### Changed\n- Move mapping-settings to be deserialized as a zend_array * #1253\n### Fixed\n- Remove TSRMLS_C from \\DDTrace\\current_context #1249",
"get": "https://pecl.php.net/get/datadog_trace-0.61.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.60.0": {
"version": "0.60.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-05-28T13:31:55+00:00",
"releaseNotes": "**Breaking change**: Users that are not explicitly setting or using json encoding are not impacted but this breaking change. Users either requiring json encoding for special purposes to send traces to their own custom targets or relying on the Stream class (that was not part of the public api in src/api) will have to manually clone the classes from the previous release SHA and register themselves. This is discouraged because as of today, json causes a fallback to blocking sync transmission to the Datadog agent, while using messagepack we support the unblocking async transport to our agent.\n\n### Added\n- Zend Abstract Interface: Method call seam (PHP 5) #1186\n- ZAI Sandbox #1213\n- Auto-flushing (PHP 5) #1189\n- Nette integration (v2 and v3) #504 #1220 (thanks @kozaktomas for the original contribution and thanks @Anilm3 for reviving the original PR)\n- Begin documenting architecture #1225\n- Detect ZAI ZMM leaks #1229\n- ZAI function-call seam (PHP 8) #1234\n### Changed\n- Update Docker ci docs #1202\n- Remove Json encoder and Stream transport #1235\n- Move from uint63 to uint64 for trace_id span_id and parent_id #1237\n- Remove redundant dd_trace_tracer_is_limited() calls #1239\n- Change config.m4 to allow in-tree build #1238\n- Eliminate \"innerhook\" from trace_method and trace_function #1240\n- Remove TSRMLS_* macros from PHP 7 and PHP 8 #1241\n- Deferred loading with ZAI function-call seam (PHP 8) #1243\n- Speed up randomized testing using a post #1192 version #1245\n- Self update composer in the image we use to prepare the code in CI (#1221)\n### Fixed\n- Fix meta header name for language version in BGS agent request #1244\n- Fix flaky PCNTL tests (#1232)",
"get": "https://pecl.php.net/get/datadog_trace-0.60.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.59.0": {
"version": "0.59.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-05-06T17:24:02+00:00",
"releaseNotes": "### Added\n- [ZAI SAPI] Zai\\trigger_error() SAPI function #1212\n- Autocomplete Makefile target names in buster dev images #1224\n\n### Changed\n- Use new buster containers in CI #1210\n- remove _tmp suffix from development buster images #1217\n- Tidy the components/ #1216\n- Tidy up the docker-compose file a bit #1223\n\n### Fixed\n- Disable PCNTL in forked processes #1196\n- Updated contributing and fixed typo on Makefile::test_all #1218\n- Fix ingestion control reporting #1222\n- Skip tests that have development environment dependencies #1215 (thanks for the report @remicollet)\n- Always resolve curl class entry symbols at runtime (PHP 8) #1209 (thanks for the report @metaxy)",
"get": "https://pecl.php.net/get/datadog_trace-0.59.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.58.0": {
"version": "0.58.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-04-21T18:40:49+00:00",
"releaseNotes": "### Added\n- ZAI SAPI #1204\n- [ZAI SAPI] Add test helpers #1208\n- Add a Kubernetes example to container tagging tests #1206\n- Add Buster containers for PHP 5.4 through 7.4 #1201\n### Changed\n- Remove PHP version prefix from buster development containers #1203\n### Fixed\n- handle laravel 7+ generated:: prefix for unnamed routes #1198",
"get": "https://pecl.php.net/get/datadog_trace-0.58.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.56.0": {
"version": "0.56.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-03-04T16:52:34+00:00",
"releaseNotes": "### Added\n- Add randomized testing to test hundreds of different scenarios #1131\n- Add configured http headers to root span #1154\n- Add the possibility to freeze a regression in a specific randomized tests scenario #1153\n### Changed\n- Remove non php7 code from ext/php7 folder #1162\n- Remove non php5 code from ext/php5 folder #1164\n### Fixed\n- Add missing dependency on curl extension for PHP 8 #1144 (Thanks @remicollet!)\n- Fix initialization of `curl_multi_init()` for distributed tracing #1159\n- Add comment to long running example for method instead of function #1149\n- Fix linting + xfail a flaky test #1147\n- Update links in README.md to configuration and OT docs #1069\n- Fix clang-format installation after circleci image update to buster #1141",
"get": "https://pecl.php.net/get/datadog_trace-0.56.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.55.0": {
"version": "0.55.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-02-04T19:35:19+00:00",
"releaseNotes": "### Added\n- Slim 4 integration #1136\n- Add support for redis cluster #1137",
"get": "https://pecl.php.net/get/datadog_trace-0.55.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.54.0": {
"version": "0.54.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2021-01-20T16:59:04+00:00",
"releaseNotes": "### Added\n- Support distributed tracing for calls to curl_multi_exec() #1119\n### Changed\n- Refactor PHP 7 curl distributed tracing #1123\n- Real package verification on nginx, cli, apache #1129",
"get": "https://pecl.php.net/get/datadog_trace-0.54.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.53.0": {
"version": "0.53.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-12-30T21:32:47+00:00",
"releaseNotes": "### Added\n- Add function to correctly extract trace id in all contexts #1125\n### Fixed\n- Attach fatal errors to userland root span on PHP 5.6 + PHP 5.5 #1109\n- Rebuild CentOS 6 containers #1116\n- NullLogger is essential, not optional #1113\n- Make Uri to resource name normalization case insensitive #1120\n- Avoid empty resource names in Yii in case of root `/` paths #1122\n- Fix multiple deferred integration loading on PHP from 7.0 to 7.2 #1121\n- Fix error in case of x-datadog-origin header in distributed tracing on PHP 7.0-7.2 #1124",
"get": "https://pecl.php.net/get/datadog_trace-0.53.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.52.0": {
"version": "0.52.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-11-30T22:25:43+00:00",
"releaseNotes": "### Added\n- Laravel 8 support #1100 #1102\n- Enable Yii 2 on PHP 8 #1106\n- Add PHP 8 asan tests #1108\n\n### Changed\n- Use the observer API on PHP 8 #1089\n- Remove integrations that do not yet support PHP 8 #1103\n- Update containers to PHP 8.0.0 #1111\n\n### Fixed\n- Fix distributed tracing on PHP 8 #1099",
"get": "https://pecl.php.net/get/datadog_trace-0.52.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.51.0": {
"version": "0.51.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "labbati",
"releaseDate": "2020-11-17T18:00:23+00:00",
"releaseNotes": "### Added\n- Support service split by host in PHPRedis integration #1084\n- Support service split by host in Predis integration #1094\n- Load WordPress 5 integration on PHP 5 #1086\n- Custom pre-RC5 build #1093\n- Second custom pre-RC5 build #1096\n\n\n### Changed\n- Consolidate 3rd party code into vendor directory #1082\n- Separate extension code by PHP major version #1085\n- Make include paths relative to ext/ #1087\n- Copy PHP 7 extension code to php8 directory #1088\n- Upgrade to composer 2 #1075\n- Fix composer self-update on master properly handling cached directories #1092\n- Make execution of ext tests locally faster and easier #1091",
"get": "https://pecl.php.net/get/datadog_trace-0.51.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.50.0": {
"version": "0.50.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-11-05T22:03:23+00:00",
"releaseNotes": "### Added\n- Experimental support for PHP 8.0.0 RC 2 & RC 3 (Provided for testing only and not intended for use on production) #1039 #1053 #1054 #1076\n- Trace Symfony controller and more #1048\n- Add example for long running processes #1049\n- Add tests and support for WordPress 5 on PHP 7 #1058 #1059 #1081\n- Add tests for Symfony 5 #1060 #1062\n\n### Changed\n- Build alpine packages on alpine and add e2e package verification #774\n- Add fatal error info to `DDTrace\\Tracer` made root spans on PHP 7 #1040",
"get": "https://pecl.php.net/get/datadog_trace-0.50.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.49.0": {
"version": "0.49.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-10-14T23:04:08+00:00",
"releaseNotes": "### Added\n- Add .gdbinit files from released PHP versions #996\n- Support PHP 5.5 #1008, #1018, #1020, #1030, #1032\n- Add PHP 5.4 support to PECL package #1019\n- Add Levi and Luca as lead developers to package.xml #1025\n- Close open spans on fatal errors #1028\n- Attach fatal errors to all open internal spans #1034\n- Experimental PHP 8.0.0 RC 1 support (Provided for testing only and not intended for use on production) #1027 #1036 #1041\n\n### Changed\n- Enable the background sender by default on PHP 5.4 #991\n- Remove userland references to sandboxing #1003\n- Sandbox flush in limited mode on PHP 5.4 #1009\n- Defer loading of PDO, Memcached, Slim, WordPress, and Yii integrations until first usage #1006\n- Clear separation in testing of src/api vs src/DDTrace #1017\n- Harden curl integration #1024\n- Compile src/DDTrace/version.php into _generated.php to avoid loading it at runtime #1026\n- Disable instrumenting generators on PHP 5 #1050\n\n### Fixed\n- Fix pecl-build for real releases #998\n- Properly group traces sent in batch during long running scripts #1029\n- Add back support for trace analytics to curl integration #1031",
"get": "https://pecl.php.net/get/datadog_trace-0.49.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.48.3": {
"version": "0.48.3",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-09-21T18:08:50+00:00",
"releaseNotes": "### Fixed\n- Fix sigsegv in deferred loading #1022",
"get": "https://pecl.php.net/get/datadog_trace-0.48.3",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.48.2": {
"version": "0.48.2",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-09-10T20:40:25+00:00",
"releaseNotes": "### Changed\n- Update excluded modules #1011\n- Deprecate dd-doctor.php #1014\n\n### Fixed\n- PHP 5.4 build in ZTS mode #1011\n- Call ddtrace_engine_hooks_{rinit,rshutdown} #1013",
"get": "https://pecl.php.net/get/datadog_trace-0.48.2",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.48.1": {
"version": "0.48.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-08-31T20:25:53+00:00",
"releaseNotes": "### Fixed\n- Symfony HttpException with status less than 500 should not be considered an error #995, #1002 (thanks, @franek!)\n- Block Zend signals from background sender thread #1000\n- Fix out-of-sync issue if span stack is closed while a closure is running #1001",
"get": "https://pecl.php.net/get/datadog_trace-0.48.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.48.0": {
"version": "0.48.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-08-25T23:10:26+00:00",
"releaseNotes": "## Important!\nThe legacy API for custom instrumentation `dd_trace()` is now a no-op in this release. See the [upgrade guide](https://docs.datadoghq.com/tracing/custom_instrumentation/php/?tab=tracingfunctioncalls#legacy-api-upgrade-guide) for instructions on upgrading.\n\nThe way PHP 5.4 and 5.6 hook into the engine has changed. Please read [deep call stacks on PHP 5](https://docs.datadoghq.com/tracing/troubleshooting/php_5_deep_call_stacks/) for more information on potential issues.\n\nAll calls to `DDTrace\\trace_function` or `DDTrace\\trace_method` functions need to happen before the first invocation of the target e.g. `DDTrace\\trace_function('foo', ...)` should be done before `foo` is called for the first time. In the future this may need to be done before the target is even defined. This was previously noted in 0.45.0, but is now enforced for all PHP versions.\n\n\n### Added\n\n- Deferred initialization of integrations, and matching integration to a callable at compile time #891 #972\n- Test for non-zero durations #950\n- Add support for PHPRedis 3 extension on PHP 7 #948\n- Add support for PHPRedis 4 extension on PHP 7 #982\n- Add support for PHPRedis 5 extension on PHP 7 #983\n- Add non-tracing API (hook_function/hook_method) #984\n\n### Changed\n\n- Improve CGI usage in test suite #952 (thank you @remicollet!)\n- Remove `ddtrace.strict_mode` INI setting #955\n- Sandbox PHP 5.6 using `zend_execute_ex` + `zend_execute_internal` #970\n- Package `_generated.php` with PECL #980\n- Move startup logs behind debug mode #986\n- Split PHP 7's opcode handlers for previous case #987\n- Sandbox PHP 5.4, cache negative lookups on PHP 5, and delete integrations using dd_trace #988\n- Cleanup PHP 7 curl handlers #989\n- Update dd_trace warning for being a no-op #990\n- Defer loading of PHPRedis #992\n- Defer loading of Predis #994\n\n### Fixed\n\n- Compatibility issues with PECL #845 (thank you @remicollet!)\n- Fix package.xml validation for PECL #954\n- Removed obsolete pre-integrations loading check from dd-doctor.php #956\n- Fix off-by-one error with longest config name for integrations #985",
"get": "https://pecl.php.net/get/datadog_trace-0.48.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.47.1": {
"version": "0.47.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-07-30T19:35:55+00:00",
"releaseNotes": "**Deprecation notice**: The following environment variable names have changed. The old names are deprecated. See #969 for more details.\n\n| Old Name | New Name |\n| ---------------------------------------------- | ---------------------------------------------------- |\n| `DD_<INTEGRATION>_ANALYTICS_ENABLED` | `DD_TRACE_<INTEGRATION>_ANALYTICS_ENABLED` |\n| `DD_<INTEGRATION>_ANALYTICS_SAMPLE_RATE` | `DD_TRACE_<INTEGRATION>_ANALYTICS_SAMPLE_RATE` |\n| `DD_INTEGRATIONS_DISABLED` | `DD_TRACE_<INTEGRATION>_ENABLED` |\n\n### Added\n\n- Add `DD_TRACE_AGENT_URL` environment support #926 (thank you @nurcahyo!) #962\n- Support for `DD_TRACE_<INTEGRATION>_<SUFFIX>` env vars #969\n- Deeper instrumentation of Symfony 4.4 #967\n\n### Fixed\n\n- Move startup logging to first RINIT #961\n- Fix propagation of `DD_ENV` and `DD_VERSION` to children spans #963\n- Remove query string when new resource mapper is used #973",
"get": "https://pecl.php.net/get/datadog_trace-0.47.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.47.0": {
"version": "0.47.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-07-08T19:55:44+00:00",
"releaseNotes": "**Deprecation notice**:\n- Setting service name via `DD_SERVICE_NAME` is now deprecated and will be removed in a future release. Use `DD_SERVICE` instead for consistency with other Datadog tracers and services.\n- Setting global tags via `DD_TRACE_GLOBAL_TAGS` is now deprecated and will be removed in a future release. Use `DD_TAGS` instead (with the same format) for consistency with other Datadog tracers and services.\n- `DD_TRACE_RESOURCE_URI_MAPPING` is deprecated now that it has been split into `DD_TRACE_RESOURCE_URI_MAPPING_INCOMING` and `DD_TRACE_RESOURCE_URI_MAPPING_OUTGOING`.\n- The functions `dd_trace` and `dd_trace_forward_call` are deprecated and will be made a no-op in the next release. See #924 for how to migrate.\n\n### Added\n\n- Apply new uri to resource normalization rules #928\n- Add DDTrace namespace for internal functions #930\n- Startup logging (can be disabled by setting `DD_TRACE_STARTUP_LOGS=0`) #935\n\n### Changed\n\n- Sandboxed cURL (PHP 5) #911, #938\n- Sandbox Lumen (PHP 5) #945\n- Sandboxed Symfony (PHP 5) #946\n- Add support for service name configuration via DD_SERVICE #919\n- Add support for DD_TAGS, fallback to DD_TRACE_GLOBAL_TAGS #920\n- Add support for DD_VERSION and DD_ENV variables #803 - thanks @brettlangdon\n- Enable OpenTracing test suite in CI #921\n- Defaults for name and resource on SpanData #923\n- Refactor dispatch.{c,h} #932\n- Extract ddtrace_sandbox_begin/ddtrace_sandbox_end helpers #940\n- Warn on dd_trace usage if DD_TRACE_WARN_LEGACY_DD_TRACE #941\n\n### Fixed\n\n- Only build on 64-bit platforms #929 (thanks for the report @remicollet)\n- (PHP 5.4) Make compilation to single file compatible with `include __DIR__ . '...'` in files #943",
"get": "https://pecl.php.net/get/datadog_trace-0.47.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.46.0": {
"version": "0.46.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-06-02T22:15:21+00:00",
"releaseNotes": "## Important behavior changes in this release\nIf you use the OpenTracing API, the OpenTracing compatible tracer will no longer be returned from `OpenTracing\\GlobalTracer::get` automatically. See #899 or [the documentation](https://docs.datadoghq.com/tracing/opentracing/php/) for more details.\n\nOn PHP 7, `dd_trace` will no longer work on internal functions e.g. `curl_exec`; use `dd_trace_method` or `dd_trace_function` instead. Additionally, when targeting internal functions they also need to be added to the environment variable `DD_TRACE_TRACED_INTERNAL_FUNCTIONS` which is a comma separated list e.g. `DD_TRACE_TRACED_INTERNAL_FUNCTIONS=array_sum,mt_rand,DateTime::add`. These two changes enable a significant performance optimization.\n\n### Changed\n- Avoid usage of spl_autoload_register while still allowing noop manual instrumentation without ext installed #877\n- Sandbox Slim integration #878\n- Sandbox Lumen integration #884\n- Sandbox CakePHP integration #898\n- Remove legacy hook for OpenTracing #899\n- Noop the legacy API when a potentially conflicting module detected #900, #905\n- Move the request init hook to `auto_prepend_file` #907\n- Optimize internal functions handlers at startup (PHP 7) #895\n\n### Fixed\n- Fix early return in dd-doctor #894 (thank @tatsuo48!)\n- Fix opcache check in dd-doctor #896 - thanks @tatsuo48\n- Update CONTRIBUTING.md #897 - thanks @askkaz",
"get": "https://pecl.php.net/get/datadog_trace-0.46.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.45.1": {
"version": "0.45.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-05-18T21:07:54+00:00",
"releaseNotes": "### Fixed\n\n- Fix uncaught exceptions with auto flushing enabled #882\n- Prevent curl and guzzle from inheriting top level app name #885\n- Change PDO service name to lowercase #886",
"get": "https://pecl.php.net/get/datadog_trace-0.45.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.45.0": {
"version": "0.45.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-05-12T19:00:20+00:00",
"releaseNotes": "## Important behavior changes in this release\nIf you are using `dd_trace`, `dd_trace_function`, or `dd_trace_method` then you need to call these functions before the first invocation of the target e.g. `dd_trace('foo', ...)` should be done before `foo` is called for the first time.\n\n### Changed\n\n- Compile to one single file #840, #874\n- Simplify configuration #833, #870\n- Refactor module blacklist #852\n- Cache that a function is not traced #854, #863\n- Simplify spl_autoload_register instrumentation #867\n- Use normalized URL as the resource name for curl #869 (thanks, @akdh!)\n- Sandbox header and http_response_code #875\n\n### Fixed\n\n- Fix variadic args with empty function signature #872\n- Bump phpstan to 0.12 and fix issues #841",
"get": "https://pecl.php.net/get/datadog_trace-0.45.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.44.1": {
"version": "0.44.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-04-29T23:01:19+00:00",
"releaseNotes": "### Fixed\n\n- Revert \"Merge pull request #815 from DataDog/levi/ddtrace_moment\" #859\nThis fixes issue #855.",
"get": "https://pecl.php.net/get/datadog_trace-0.44.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.44.0": {
"version": "0.44.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-04-28T18:26:00+00:00",
"releaseNotes": "### Fixed\n\n- Fix ddtrace_config_* functions to use sapi_getenv #848\n- Fix curl integrations #851\n\n### Changed\n\n- Whitelist the `cgi-fcgi` SAPI #835\n- Add ddtrace_hash_find_ptr_lc which stack-allocates small strings #839",
"get": "https://pecl.php.net/get/datadog_trace-0.44.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.43.0": {
"version": "0.43.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-04-22T18:14:51+00:00",
"releaseNotes": "**Note: This release comes with minor behavior changes for tracing closures on PHP 7. Please see [the PR for details](https://github.com/DataDog/dd-trace-php/pull/762).**\n\n### Added\n\n- Service mapping with `DD_SERVICE_MAPPING=pdo:payments-db,mysqli:orders-db` #801, #817\n- Auto flushing with `DD_TRACE_AUTO_FLUSH_ENABLED=1` (PHP 7) #819, #826\n- Disable automatic root-span creation with `DD_TRACE_GENERATE_ROOT_SPAN=0` #834\n\n### Changed\n\n- Always return unaltered VM dispatch (PHP 7) #762\n- Uri to resource name ON by default #798\n- Sandbox Guzzle #809, #816\n- Sandbox predis integration #813\n- Sandbox curl (PHP 7) #814, #817, #831\n- Convert pid from long to string for internal spans #825\n- Move some Configuration methods to functions written at the C level #829",
"get": "https://pecl.php.net/get/datadog_trace-0.43.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.42.0": {
"version": "0.42.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-04-01T18:05:06+00:00",
"releaseNotes": "### Added\n\n- Close open sandboxed spans on exit (PHP 5) #780\n- Prehook feature to run tracing closures before the original call #784\n\n### Changed\n\n- Enable background sender (BGS) by default #796, #800\n- Improves alpine extensions build/verify process #774\n- Refactor Symfony integration #786\n- Let curl calculate Content-Length header value when sending requests to the agent #804\n\n### Fixed\n\n- Pass return value as null to tracing closure when value IS_UNDEF #791 (thanks for the report @wajdisawaf!)\n- Set a sane memory limit when running php from inside post-install hook #792",
"get": "https://pecl.php.net/get/datadog_trace-0.42.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.41.1": {
"version": "0.41.1",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-03-10T18:05:21+00:00",
"releaseNotes": "### Fixed\n- Fix pecl installs #781\n- Fix background sender logging for ZTS #783",
"get": "https://pecl.php.net/get/datadog_trace-0.41.1",
"SPDX-License-Identifier": "BSD-3-Clause"
},
"0.41.0": {
"version": "0.41.0",
"state": "stable",
"license": "BSD 3-Clause",
"releasedBy": "sammyk",
"releaseDate": "2020-03-02T18:56:30+00:00",
"releaseNotes": "### Added\n- Put compile_file hook behind a feature flag, default on #757\n\n### Changed\n- Require curl at configuration time #766\n- Log background sender messages to error_log #776\n- Deprecate manual usage of legacy Symfony bundles and Laravel provider #772\n- Separate background sender timeout env vars from userland #773\n\n### Fixed\n- Gracefully handle a dropped span on exit #765\n- Update contribution guidelines #769\n- Trace http response code when set via function 'http_response_code' #755 - thanks @aderiyenko\n- Fix execinfo on builds from source in Alpine containers #752",
"get": "https://pecl.php.net/get/datadog_trace-0.41.0",
"SPDX-License-Identifier": "BSD-3-Clause"
},