Skip to content

Commit

Permalink
Release 0.81.0 (#1780)
Browse files Browse the repository at this point in the history
Signed-off-by: Bob Weinand <bob.weinand@datadoghq.com>
  • Loading branch information
bwoebi authored Oct 31, 2022
1 parent 674dc19 commit 811647a
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ stages:

variables:
LATEST_LIBRARY_x86_64_LINUX_GNU:
value: "https://github.com/DataDog/dd-trace-php/releases/download/0.80.0/dd-library-php-0.80.0-x86_64-linux-gnu.tar.gz"
value: "https://output.circle-artifacts.com/output/job/a62a04fe-dcb8-4fcb-bd79-b82b5bd18286/artifacts/0/dd-library-php-0.81.0-x86_64-linux-gnu.tar.gz"
description: "Location where to download latest dd-library-php-*-x86_64-linux-gnu.tar.gz archive"
DOWNSTREAM_REL_BRANCH:
value: "master"
Expand Down
2 changes: 1 addition & 1 deletion ext/version.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef PHP_DDTRACE_VERSION
// Must begin with a number for Debian packaging requirements
#define PHP_DDTRACE_VERSION "1.0.0-nightly"
#define PHP_DDTRACE_VERSION "0.81.0"
#endif
34 changes: 33 additions & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,39 @@
<api>stable</api>
</stability>
<license uri="https://github.com/DataDog/dd-trace-php/blob/master/LICENSE">BSD 3-Clause</license>
<notes>${notes}</notes>
<notes>
<![CDATA[
### Added
- Rate limiting support #1769
- Add span stacks #1746
### Changed
- Stop collecting IP on tracer #1774
- Amend wording when uninstalling datadog #1756
### Fixed
- Guzzle Integration not initialized correctly #1762.
- Do not create root spans for certain Symfony methods #1771. Thanks, @radykal-com!
- ldconfig not found by installer #1773
- Fix crash in ddtrace_curl_multi_get_gc #1779
### Internal changes
- Fix in-tree compilation #1760
- Reusability of zai config across products #1765
- Avoid deprecated zend_atol on PHP 8.2 #1778
## Profiling (v0.10.2)
### Fixed
- Prevent deadlocks when forking #1752
- Fix linking on arm64 mac #1759
## Application Security Monitoring (v0.4.4)
#### Added
- Generate ip and duplicate ip headers on appsec DataDog/dd-appsec-php#141
]]>
</notes>
<contents>
<dir name="/">
<!-- code and test files -->${codefiles}
Expand Down
2 changes: 1 addition & 1 deletion src/DDTrace/Tracer.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ final class Tracer implements TracerInterface
* Must begin with a number for Debian packaging requirements
* Must use single-quotes for packaging script to work
*/
const VERSION = '1.0.0-nightly';
const VERSION = '0.81.0';

/**
* @var Span[][]
Expand Down

0 comments on commit 811647a

Please sign in to comment.