Skip to content

Commit 3afec6e

Browse files
bump
1 parent c79b253 commit 3afec6e

File tree

7 files changed

+19
-29
lines changed

7 files changed

+19
-29
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
@@ -11,7 +11,7 @@ HunterGate(
1111

1212
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/hunter-cache.id.in ${CMAKE_CURRENT_SOURCE_DIR}/hunter-cache.id)
1313

14-
project(ddappsec VERSION 0.95.0)
14+
project(ddappsec VERSION 0.96.0)
1515

1616
include(CheckCXXCompilerFlag)
1717

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.95.0"
3+
#define PHP_DDTRACE_VERSION "0.96.0"
44
#endif

github-actions-helpers/Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ partial class Build : NukeBuild
2525
readonly Configuration Configuration = IsLocalBuild ? Configuration.Debug : Configuration.Release;
2626

2727
[Parameter("The current version of the source and build")]
28-
readonly string Version = "0.94.0";
28+
readonly string Version = "0.96.0";
2929

3030
Target Clean => _ => _
3131
.Before(Restore)

package.xml

Lines changed: 13 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -62,40 +62,30 @@
6262
<license uri="https://github.com/DataDog/dd-trace-php/blob/master/LICENSE">BSD 3-Clause</license>
6363
<notes>
6464
<![CDATA[
65-
66-
This release introduces support for arm64 and PHP 8.3 for appsec. Additionally, it adds schema extraction and classification to appsec, which forms the foundation for API security. Finally, the appsec extension has been officially incorporated into the dd-trace-php repository and will adhere to the same versioning scheme as the tracer and profiler.
65+
Exception profiling is now enabled by default. You can manage it using the `DD_PROFILING_EXCEPTION_ENABLED` environment variable or the `datadog.profiling.exception_enabled` setting in the INI file. Although the `DD_PROFILING_EXPERIMENTAL_EXCEPTION_ENABLED` environment variable and `datadog.profiling.experimental_exception_enabled` INI setting still work, the new ones take precedence.
6766
6867
## Tracer
68+
6969
### Added
70-
- Add http.route to CodeIgniter #2379
70+
- Implement extended sampling #2384
7171
7272
### Fixed
73-
- Use http_code instead of connect_time to detect curl errors #2391
74-
- Fix handling of invalid persistent JSON #2381
75-
- Zero pad the tid and exclude it from OTel tracestate #2386
73+
- Add PHP 8.3 to supported versions #2417 (thank you @markwalet)
74+
- OTel: Fix analytics.event override (#2409)
75+
- Fix dddbs service mapping #2413
7676
77-
### Internal changes
78-
- Update CI images to use PHP 8.3.0rc6, pin mongodb for PHP 7.2-7.3 #2382
79-
- Update CI images to 8.1.26, 8.2.13 and 8.3.0 and XDedug to 3.3.0 #2400 #2405
80-
- Add macrobenchmark runs #2408
77+
### Internal Changes
78+
- CI: Handle latest Alpine 3.19 image #2418
79+
- CI: Complements PHP 8.3 test suites #2419
8180
8281
## Profiling
83-
### Internal changes
84-
- add allocation and exception count to event.json #2392
8582
86-
## Application Security Management
8783
### Added
88-
- Implement sampler and processor trigger DataDog/dd-appsec-php#308
89-
- Zip long schemas DataDog/dd-appsec-php#315
90-
- Add compression library to helper DataDog/dd-appsec-php#316
91-
- Always serialize schemas when available #2406
92-
- Upgrade libddwaf to v1.15.1 #2377
93-
### Internal changes
94-
- Fix fuzzer build & increase RSS limit DataDog/dd-appsec-php#313
95-
- Build AppSec extension & helper in CI with support for Arm64 and PHP 8.3 #2344
96-
- AppSec extension & helper unit tests in CI #2349
97-
- Package appsec using new builds #2369
84+
- GA exception profiling #2403
85+
- allow enabling all experimental features using `datadog.profiling.experimental_features_enabled` #2385
9886
87+
### Internal Changes
88+
- run prof-correctness nightly in `master` branch #2420
9989
]]></notes>
10090
<contents>
10191
<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.95.0"
3+
version = "0.96.0"
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.95.0';
27+
const VERSION = '0.96.0';
2828

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

0 commit comments

Comments
 (0)