Skip to content

Commit db7c775

Browse files
authored
Release notes for 0.93.1 (#2341)
1 parent 974b015 commit db7c775

File tree

6 files changed

+6
-51
lines changed

6 files changed

+6
-51
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

appsec/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ HunterGate(
99
URL "https://github.com/cpp-pm/hunter/archive/v0.23.314.tar.gz"
1010
SHA1 "95c47c92f68edb091b5d6d18924baabe02a6962a")
1111

12-
project(ddappsec VERSION 0.92.0)
12+
project(ddappsec VERSION 0.93.1)
1313

1414
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
1515
set(CMAKE_C_STANDARD 11)

ext/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#ifndef PHP_DDTRACE_VERSION
22
// Must begin with a number for Debian packaging requirements
3-
#define PHP_DDTRACE_VERSION "0.93.0"
3+
#define PHP_DDTRACE_VERSION "0.93.1"
44
#endif

package.xml

Lines changed: 1 addition & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -62,54 +62,9 @@
6262
<license uri="https://github.com/DataDog/dd-trace-php/blob/master/LICENSE">BSD 3-Clause</license>
6363
<notes>
6464
<![CDATA[
65-
This release adds support for PHP 8.3 for the tracer and the profiler. Please be aware that we are currently building against PHP 8.3.0 RC3.
66-
6765
## Tracer
68-
### Added
69-
- Add Magento 2 Integration #2274
70-
- Support for PHP 8.3 #2098, #2282
71-
- Add a configuration flag to disable laravel queue distributed tracing #2304
72-
- Laminas RESTful methods handling #2322
73-
- Expand arrays in meta and metrics into nested-tag format #2302, #2333
74-
- Report extensions used in telemetry #2295
75-
76-
### Changed
77-
- Redis Span Removal and Priority Sampling Orphans Cleanup #2306
78-
- Subclass SpanData with RootSpanData #2309
79-
- Refactor tightly coupled extraction state #2314
80-
81-
### Fixed
82-
- Propagate env to telemetry #2313
83-
- Fix ZAI config handling for .htaccess with php-fpm #2298
84-
- Explicitly drop dd.p.dm if provided in propagated tags when the incoming sampling priority is reject #2310
85-
- Strictly validate dd.p.tid #2303
86-
- Fix PHP 5: The Drupal integration is not part of PHP 5 #2326
87-
- Avoid %.*s in places where longer strings are used #2330
88-
- Respect service mapping when propagating for DBM #2321
89-
- Specify the odbc driver in db.system and exclude the Ingres driver from DBM #2334
90-
- Fix daemonization of sidecar closing stderr properly DataDog/libdatadog#271
91-
92-
## Profiling
93-
94-
### Added
95-
- Support for PHP 8.3 #2098, #2282
96-
97-
### Fixed
98-
- neighboring extension handling in `gc_mem_caches()` #2297
99-
- panic after shutdown of forked child when `USE_ZEND_ALLOC=0` #2301
100-
- fix typo in info log message #2307
101-
- sampling distance in exception profiling #2323
102-
- reuse thread RNG and poisson sampler #2320
103-
104-
### Internal changes
105-
- fix reliability environment deployment #2289
106-
- upgrade to `libdatadog` v5 #2299
107-
- add memory benchmark #2319
108-
- fix flaky exception correctness test #2331
109-
110-
## Application Security Management (0.14.3)
11166
### Fixed
112-
- Set sampling priority using ddtrace_set_priority_sampling_on_root DataDog/dd-appsec-php#311
67+
- Reset distributed context on request init #2340
11368
]]></notes>
11469
<contents>
11570
<dir name="/">

profiling/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "datadog-php-profiling"
3-
version = "0.93.0"
3+
version = "0.93.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
rust-version = "1.64"

src/DDTrace/Tracer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ final class Tracer implements TracerInterface
2424
* Must begin with a number for Debian packaging requirements
2525
* Must use single-quotes for packaging script to work
2626
*/
27-
const VERSION = '0.93.0';
27+
const VERSION = '0.93.1';
2828

2929
/**
3030
* @var Span[][]

0 commit comments

Comments
 (0)