-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathpackage.xml
164 lines (152 loc) · 5.16 KB
/
package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?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[
## All products
### Added
- Add support for file based configuration (library-config) #3068
## Tracer
### Added
- Add DDTrace\try_drop_span() API #3136
- Add support for PDO::connect #3125
- Add span creation and close handlers #3123
- API Gateway Tracing #3116
- Add a Ratchet integration #3115
- Baggage Header Propagation Support #3102
- Crashtracking for windows #3099
### Changed
- Enable 128 bit trace_id logging by default #3163
- Allow whitespace as separator in DD_TAGS #3162
- Implement Disable APM Tracing #3080
### Fixed
- Support both ENOTSUP and ENOSYS in shm_open fallback Datadog/libdatadog#969
- Handle flushing of multiple traces at once #3176
### Internal
- Show actual file and line for occurrence of exceptions as well #3172
- Support ZSTR_PARENT known_string #3106
## Profiling
### Added
- Add profiling and appsec to SSI #3063
### Fixed
- FrankenPHP idle phase #3169
- Add active span null check #3164
- Avoid some OOM panics and avoid long strings #3151
- Fix upscaling of I/O profiles #3146
### Internal
- Add 'tracing' features to capture time spent walking the stack #3094
## Application Security Management
### Added
- Implement API Security Sampling RFC #3117
- Add authenticated user tracking #3114
- Add profiling and appsec to SSI #3063
### Changed
- Upgrade libddwaf #3126
### Fixed
- Emit asm event on user events #3170
### Internal
- Add more logging around stack generation #3096
]]></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>