Skip to content

Commit

Permalink
Release 0.80.0 (#1753)
Browse files Browse the repository at this point in the history
  • Loading branch information
krakjoe authored Sep 28, 2022
1 parent 4d76321 commit c82659b
Show file tree
Hide file tree
Showing 4 changed files with 37 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.78.0/dd-library-php-0.78.0-x86_64-linux-gnu.tar.gz"
value: "https://output.circle-artifacts.com/output/job/d5c954f0-d161-4020-afd6-ecac2a886f80/artifacts/0/dd-library-php-0.80.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.80.0"
#endif
35 changes: 34 additions & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,40 @@
<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
### Changed
- Make sampling priorities public API again #1742
### Fixed
- Fix behaviour of return false in trace hooks #1749
- Handle non-binaries in installer #1743
- Fix mishandling of payload size limit #1750
### Internal changes
## Profiling (v0.10.1)
### Fixed
- Match the service names of the tracer when unset or empty #1733
- Avoid crashing when pcntl_fork is called #1745
## Application Security Monitoring (v0.4.3)
### Fixed
- Return error response in helper when incoming message can't be unpacked DataDog/dd-appsec-php#120
- Avoid creating a log file during MINIT/MSHUTDOWN DataDog/dd-appsec-php#124
- Handle helper errors gracefully DataDog/dd-appsec-php#127
- Reset context on shutdown DataDog/dd-appsec-php#130
- Handle errors on request shutdown DataDog/dd-appsec-php#132
### Internal changes
- Enable CI on all relevant branches DataDog/dd-appsec-php#123
]]>
</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.80.0';

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

0 comments on commit c82659b

Please sign in to comment.