Skip to content

Commit d1546b6

Browse files
authored
Add release notes and update versions for 0.92.2 (#2308)
1 parent 3d510b1 commit d1546b6

File tree

6 files changed

+9
-15
lines changed

6 files changed

+9
-15
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.1)
12+
project(ddappsec VERSION 0.92.2)
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.92.1"
3+
#define PHP_DDTRACE_VERSION "0.92.2"
44
#endif

package.xml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,18 +64,12 @@
6464
<![CDATA[
6565
## Tracer
6666
### Fixed
67-
- Handle UnwindExit in sandbox error reporting #2288
68-
- Add a safeguard nullcheck for the sidecar into telemetry reporting #2293
67+
- Fix ZAI config handling for .htaccess with php-fpm #2298
6968
70-
## Profiling
69+
## Application Security Management (0.14.2)
7170
### Fixed
72-
- Do not leak module entry on purpose #2291
73-
- Fix allocation profiling shutdown with USE_ZEND_ALLOC=0 crashing #2294
74-
75-
## Application Security Management (0.14.1)
76-
### Fixed
77-
- Improve tracer state detection DataDog/dd-appsec-php#305
78-
- Fix setting perdir INI setting for multiple ZAI config users #2277
71+
- Always update enabled status on RINIT DataDog/dd-appsec-php#307
72+
- Fix ZAI config handling for .htaccess with php-fpm #2298
7973
]]></notes>
8074
<contents>
8175
<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.92.1"
3+
version = "0.92.2"
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.92.1';
27+
const VERSION = '0.92.2';
2828

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

0 commit comments

Comments
 (0)