Skip to content

Commit 9011004

Browse files
authored
Bump to 1.7.0 (#3100)
* Bump to 1.7.0 Signed-off-by: Bob Weinand <[email protected]> * Remove debug / update libdatadog Signed-off-by: Bob Weinand <[email protected]> --------- Signed-off-by: Bob Weinand <[email protected]>
1 parent 539a118 commit 9011004

File tree

5 files changed

+40
-41
lines changed

5 files changed

+40
-41
lines changed

Cargo.lock

Lines changed: 1 addition & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.2
1+
1.7.0

package.xml

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,44 @@
6969
<notes>
7070
<![CDATA[
7171
## Tracer
72+
### Added
73+
- OTel Integration tracking #3084
74+
- Send integration error logs through telemetry #3006
75+
76+
### Fixed
77+
- Fix fork handling of sidecar #3077
78+
- Work around preloaded enums being broken on early PHP 8.4 versions with observers #3093
79+
- Missing Predis Service Override #3098
80+
- Lazily init cadence client Datadog/libdatadog#890
81+
- This will work around unnecessarily many sidecar threads being created.
82+
- Fix possible race confition when adding, then removing remote config services Datadog/libdatadog#882
83+
- This aims to solve watchdog timeouts of the sidecar (a cause of broken pipes).
84+
- Handle a zero-sized file for mmap()ing Datadog/libdatadog#838
85+
86+
### Internal
87+
- Generate Markdown Table of Supported Versions #3062
88+
- Ensuring latest version of composer package are tested #3041
89+
- Fix UserAvailableConstantsTest::testAllTypesAreTested #3042
90+
91+
## Profiling
92+
### Added
93+
- I/O profiling preview #3083
94+
- support new ZendMM api #2969
95+
96+
### Changed
97+
- switch to pthread_atfork() for fork barrier handling #3058
98+
99+
## Application Security Management
100+
### Added
101+
- Add rasp telemetry #3061
102+
- Implement SSRF #3014
103+
104+
### Changed
105+
- Update user login and signup events collection #2976
106+
72107
### Fixed
73-
- Restore MESSAGE_* types #3031
74-
- Fix stats computation of background sender
108+
- Fix build of appsec helper with llvm's linker #3069
109+
- Amend login failure event being reported #3092
75110
]]></notes>
76111
<contents>
77112
<dir name="/">

src/DDTrace/OpenTelemetry/CachedInstrumentation.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ public function __construct($tracer, $name)
3232
public function spanBuilder(string $spanName): \OpenTelemetry\API\Trace\SpanBuilderInterface
3333
{
3434
$spanBuilder = $this->tracer->spanBuilder($spanName);
35-
//print new \Exception;
3635
$spanBuilder->setAttribute("component", $this->name);
3736
return $spanBuilder;
3837
}

0 commit comments

Comments
 (0)