-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGES
236 lines (143 loc) · 4.19 KB
/
CHANGES
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
CHANGE LOG
==========
2023-12-20 - v0.47.1
--------------------
### Fixed
- skip meta_data with undefined values
2023-08-28 - v0.47.0
--------------------
### Added
- now supports context propagation via HTTP headers
2023-04-25 - v0.46.2
--------------------
### Changed
- internal representation of 64bit integers, no longer using `DataDog::ID`
2023-04-19 - v0.46.1
--------------------
### Added
- now adds support for the correct `DD_SERVICE` environment variable
- Proper documentation in POD about commonly used environment variables
- support for setting a application version, using `DD_VERSION`
2023-04-18 - v0.46.0
--------------------
### Added
- now supports non 64bit architectures, using BigInt internally
### Changed
- removing non-transportable (indirect) dependencies
### Minor updates
- typos
- MANIFEST, includes newer tests
2023-04-12 - v0.45.1
--------------------
### Changed
- remove (TODO) for the error attribute
2023-04-12 - v0.45.0
--------------------
### Added
- now supports sending errors as expected by DataDog
2023-04-06 - v0.44.0
--------------------
### Added
- now uses a span-buffer to collect spans and flush together
- stop trying to make a http-request after first error
- support for `DD_TRACE_PARTIAL_FLUSH_MIN_SPANS` to flush the span buffer
- METAcpan support in MakeFile
### Changed
- most methods of `DataDog::Client` are now being 'private'
### Fixed
- type checks for `agent_url` and `DD_TRACE_AGENT_URL`
2023-03-23 - v0.43.3
--------------------
### Added
- support for setting the Agent URL with the DD_TRACE_AGENT_URL env variable
- support for setting a custom hostname with DD_HOSTNAME or constructor params
### Changed
- internals of how and where DD_ENV is being handled, in SpanContext
### Removed
- support for setting the host with the DD_HOST env variable
2022-11-24 - v0.43.2
--------------------
### Added
- support for setting the host with the DD_HOST env variable
- support for setting a custom environment with DD_ENV or constructor params
2020-02-15 - v0.43.1
--------------------
### Fixed
- Some typo's
2020-02-15 - v0.43.0
--------------------
### Changed
- Use 'should' with `MooX::Should` and roles including `Role::Declare::Should`
2020-07-16 - v0.42.1
--------------------
### Changed
- Use new `inject_contect_into_&` and `extract_contect_from_*` methods
### Added
- implementation for `inject_context_into_hash_reference`
2020-07-01 - v0.41.2
--------------------
### Changed
- Stringify meta data
2020-06-24 - v0.41.1
--------------------
### Added
- DataDog specific HTTP-headers, like `X-Datadog-Trace-Count`
2020-06-23 - v0.41.0
--------------------
### Changed
- use `default_` values inside Tracer for SpanContext
2020-06-19 - v0.40.3
--------------------
### Fixed
- Set dependency on `MooX::Attributes::ENV` to minmal 0.02
2020-06-18 - v0.40.2
--------------------
### Fixed
- MANIFEST
2020-06-18 - v0.40.1
--------------------
### Changed
- Depndency on OT::Roles v0.81.3
### Added
- More tests on `build_*` methods
2020-06-17 - v0.40.0
--------------------
### Changed
- Depndency on OT::Roles v0.81.2
- Rename to `get_parent_span_id`
2020-06-15 - v0.40.0.7-TRIAL
---------------------------
### Fixed
- `get_parent_span_id`
2020-06-15 - v0.40.0.6-TRIAL
---------------------------
### Changed
- More generic code moving etc.
2020-06-02 - v0.04_003
----------------------
### Added
- More tests, from Test::OpenTracing::Interface
### Fixed
- Test failures due to differences in Type::Tiny and Type::Tiny::XS
2020-05-29 - v0.04_001
----------------------
### Changed
- Generic code has gone to OpenTracing::Roles
2020-02-13 - v0.03
------------------
### Fixed
- Undeclared dependency Test::MockModule
- Test failure (with -Duselongdouble?)
2020-02-12 - v0.02
------------------
### Added
- `default_context_builder` attribute for `Tracer`,
which allows delaying the building a default context as long as possible.
### Changed
- refactor SpanContext
- refactor Agent
### Added
- increase the number of tests to 42
2020-01-01 - v0.01
------------------
Initial Release