Skip to content

Commit

Permalink
Release 0.30.2-beta-sfx3
Browse files Browse the repository at this point in the history
- Added support SIGNALFX_RECORDED_VALUE_MAX_LENGTH to limit size of span attribute values
- Migrated to SignalFx error attributes from OpenTracing
- Added support for PHP 7.4
  • Loading branch information
owais committed Nov 17, 2020
1 parent 449dc90 commit e81b343
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ All notable changes to this project will be documented in this file - [read more

## [Unreleased]

## [0.30.1-beta-sfx4]

- Added support SIGNALFX_RECORDED_VALUE_MAX_LENGTH to limit size of span attribute values
- Migrated to SignalFx error attributes from OpenTracing
- Added support for PHP 7.4

## [0.30.1]
### Fixed
Expand Down
8 changes: 4 additions & 4 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<email>signalfx-oss@splunk.com</email>
<active>yes</active>
</lead>
<date>2020-08-28</date>
<date>2020-11-17</date>
<version>
<release>0.30.2.0</release>
<api>0.30.2.0</api>
Expand All @@ -21,9 +21,9 @@
</stability>
<license uri="https://github.com/signalfx/signalfx-php-tracing/blob/master/LICENSE">BSD 3-Clause</license>
<notes>
Initial SignalFx beta release
### Fixed
- Ensure the request init hook is bound by the `open_basedir` INI directive #579
- Added support SIGNALFX_RECORDED_VALUE_MAX_LENGTH to limit size of span attribute values
- Migrated to SignalFx error attributes from OpenTracing
- Added support for PHP 7.4
</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 @@ -29,7 +29,7 @@ final class Tracer implements TracerInterface
/**
* @deprecated Use Tracer::version() instead
*/
const VERSION = '0.30.2-beta-sfx3'; // Update ./version.php too
const VERSION = '0.30.2-beta-sfx4'; // Update ./version.php too

/**
* @var Span[][]
Expand Down
2 changes: 1 addition & 1 deletion src/ext/version.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#ifndef PHP_DDTRACE_VERSION
#define PHP_DDTRACE_VERSION "0.30.2-beta-sfx3"
#define PHP_DDTRACE_VERSION "0.30.2-beta-sfx4"
#endif

0 comments on commit e81b343

Please sign in to comment.