Skip to content

Commit

Permalink
Merge pull request #1731 from DataDog/release-0.79.0
Browse files Browse the repository at this point in the history
Prepare 0.79.0
  • Loading branch information
pierotibou authored Sep 9, 2022
2 parents 9ddbb5c + 432dc52 commit 77e083b
Show file tree
Hide file tree
Showing 4 changed files with 27 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/6218eb28-4715-47a4-aed0-2565334c6b17/artifacts/0/dd-library-php-0.79.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.79.0"
#endif
25 changes: 24 additions & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,30 @@
<api>stable</api>
</stability>
<license uri="https://github.com/DataDog/dd-trace-php/blob/master/LICENSE">BSD 3-Clause</license>
<notes>${notes}</notes>
<notes>
### Added
- Integrate with Symfony console commands #1724

### Changed

### Fixed
- Fix #1709 appsec attempting to load erroneously #1711
- Fix symfony service and root span name #1723 (Thanks @numyx)
- Initialize hooks and config early to prevent conflicts with code executed in early startup #1726
- Fix hook dynamic data zeroing when new hooks are added during hook execution #1730

### Internal changes
- Fix compilation on MacOS #1716
- Deduplicate PHP 7 and PHP 8 source files #1722


## Profiling (v0.10.0)

#### Added
- Add Endpoint Profiling #1720

#### Internal changes
- Extract C API module; refactor Uuid #1710</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.79.0';

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

0 comments on commit 77e083b

Please sign in to comment.