Skip to content

Commit

Permalink
Merge pull request #1822 from DataDog/release-0.82.0
Browse files Browse the repository at this point in the history
Release 0.82.0
  • Loading branch information
pierotibou authored Dec 6, 2022
2 parents 4aae653 + 1021f37 commit 002e752
Show file tree
Hide file tree
Showing 4 changed files with 38 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.81.0/dd-library-php-0.81.0-x86_64-linux-gnu.tar.gz"
value: "https://output.circle-artifacts.com/output/job/b4f19ecb-8502-486e-8ddf-bfa8c8a44d8e/artifacts/0/dd-library-php-0.82.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.82.0"
#endif
36 changes: 35 additions & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,41 @@
<license uri="https://github.com/DataDog/dd-trace-php/blob/master/LICENSE">BSD 3-Clause</license>
<notes>
<![CDATA[
${notes}
### Added
- PHP-8.2 support #1800
- Add Elasticsearch 8 support #1808
- Add a Roadrunner integration #1813
### Changed
- Change system.pid to process_id #1796
### Fixed
- Extract priority sampling whenever is string or int #1789
- Fix crash during preloading on 8.1+ #1799
- Fix $integration->setError() to also accept \Error instances #1802
- Fix ZEND_CATCH chaining logic #1803, #1814
- Fix misbehaviour with 256+ hooks on a same function #1809
- FIX PSR-4 autoloading in ComposerBootstrap class #1816 (Thanks @ls-youssef-jlidat)
- Fix dropped spans causing an infinite loop #1818
### Internal changes
- Avoid deprecated zend_atol on PHP 8.2 #1778
- Retry docker images not starting in CI #1807
## Profiling (0.11.0)
Profiling now defaults to being enabled. This removes one step in onboarding as the environment variable DD_PROFILING_ENABLED no longer needs to be set to 1, which can be difficult in some situations. The recommended way to configure profiling is to use .ini settings, which is generally easier.
### Added
- Add .ini support #1775.
- Groundwork for allocation profiling #1794
### Changed
- Bump libdatadog to 0.9 #1782.
- Bump env_logger to 0.9.3 #1804.
### Internal Changes
- Add troubleshooting to README #1761
]]></notes>
<contents>
<dir name="/">
Expand Down
2 changes: 1 addition & 1 deletion src/DDTrace/Tracer.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,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.82.0';

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

0 comments on commit 002e752

Please sign in to comment.