-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathpackage.xml
149 lines (141 loc) · 5.03 KB
/
package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?xml version="1.0"?>
<package packagerversion="1.9.4" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
<name>datadog_trace</name>
<channel>pecl.php.net</channel>
<summary>APM and distributed tracing for PHP</summary>
<description>The Datadog PHP Tracer brings APM and distributed tracing to PHP.</description>
<lead>
<name>Anil Mahtani Mirchandani</name>
<user>anilm3</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<lead>
<name>Levi Morrison</name>
<user>levim</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<lead>
<name>Luca Abbati</name>
<user>labbati</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<lead>
<name>Bob Weinand</name>
<user>bwoebi</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<lead>
<name>Pierre Bonet</name>
<user>pierotibou</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<lead>
<name>Alejandro Estringana Ruiz</name>
<user>estringanadd</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<lead>
<name>Florian Engelhardt</name>
<user>flowcontrol</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<lead>
<name>Luc Vieillescazes</name>
<user>iamluc</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<!-- **Automatically updated with pecl-build script** -->
<!-- Date only needs to be set if it was packaged on a different day from release -->
<date>${date}</date>
<version>
<!-- **Automatically updated with pecl-build script** -->
<!-- Version will be set from version.php or 0.0.0 for nightly builds (see 'tooling/bin/pecl-build') -->
<release>${version}</release>
<api>${version}</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://github.com/DataDog/dd-trace-php/blob/master/LICENSE">BSD 3-Clause</license>
<notes>
<![CDATA[
## Tracer
### Added
- OTel Integration tracking #3084
- Send integration error logs through telemetry #3006
### Fixed
- Fix fork handling of sidecar #3077
- Work around preloaded enums being broken on early PHP 8.4 versions with observers #3093
- Missing Predis Service Override #3098
- Lazily init cadence client Datadog/libdatadog#890
- This will work around unnecessarily many sidecar threads being created.
- Fix possible race confition when adding, then removing remote config services Datadog/libdatadog#882
- This aims to solve watchdog timeouts of the sidecar (a cause of broken pipes).
- Handle a zero-sized file for mmap()ing Datadog/libdatadog#838
### Internal
- Generate Markdown Table of Supported Versions #3062
- Ensuring latest version of composer package are tested #3041
- Fix UserAvailableConstantsTest::testAllTypesAreTested #3042
## Profiling
### Added
- I/O profiling preview #3083
- support new ZendMM api #2969
### Changed
- switch to pthread_atfork() for fork barrier handling #3058
## Application Security Management
### Added
- Add rasp telemetry #3061
- Implement SSRF #3014
### Changed
- Update user login and signup events collection #2976
### Fixed
- Fix build of appsec helper with llvm's linker #3069
- Amend login failure event being reported #3092
]]></notes>
<contents>
<dir name="/">
<!-- code, PHP and test files -->${codefiles}
<file name="config.m4" role="src" />
<file name="config.w32" role="src" />
<file name="ddtrace.sym" role="src" />
<file name="compile_rust.sh" role="src" />
<file name="VERSION" role="src" />
<!-- Docs -->
<file name="CHANGELOG.md" role="doc" />
<file name="LICENSE" role="doc" />
<file name="LICENSE.Apache" role="doc" />
<file name="LICENSE.BSD3" role="doc" />
<file name="NOTICE" role="doc" />
<file name="README.md" role="doc" />
</dir>
</contents>
<dependencies>
<required>
<php>
<min>7.0</min>
<max>8.4.99</max>
</php>
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
<extension>
<name>json</name>
</extension>
</required>
</dependencies>
<providesextension>ddtrace</providesextension>
<extsrcrelease>
<filelist>
<!-- Move PHP files to target destination -->${filelist}
</filelist>
</extsrcrelease>
</package>