Skip to content

Commit

Permalink
Add release notes and update versions for 0.92.2 (#2308)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anilm3 authored Oct 6, 2023
1 parent 3d510b1 commit d1546b6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion appsec/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ HunterGate(
URL "https://github.com/cpp-pm/hunter/archive/v0.23.314.tar.gz"
SHA1 "95c47c92f68edb091b5d6d18924baabe02a6962a")

project(ddappsec VERSION 0.92.1)
project(ddappsec VERSION 0.92.2)

set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(CMAKE_C_STANDARD 11)
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 "0.92.1"
#define PHP_DDTRACE_VERSION "0.92.2"
#endif
14 changes: 4 additions & 10 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,18 +64,12 @@
<![CDATA[
## Tracer
### Fixed
- Handle UnwindExit in sandbox error reporting #2288
- Add a safeguard nullcheck for the sidecar into telemetry reporting #2293
- Fix ZAI config handling for .htaccess with php-fpm #2298
## Profiling
## Application Security Management (0.14.2)
### Fixed
- Do not leak module entry on purpose #2291
- Fix allocation profiling shutdown with USE_ZEND_ALLOC=0 crashing #2294
## Application Security Management (0.14.1)
### Fixed
- Improve tracer state detection DataDog/dd-appsec-php#305
- Fix setting perdir INI setting for multiple ZAI config users #2277
- Always update enabled status on RINIT DataDog/dd-appsec-php#307
- Fix ZAI config handling for .htaccess with php-fpm #2298
]]></notes>
<contents>
<dir name="/">
Expand Down
2 changes: 1 addition & 1 deletion profiling/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datadog-php-profiling"
version = "0.92.1"
version = "0.92.2"
edition = "2021"
license = "Apache-2.0"
rust-version = "1.64"
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 = '0.92.1';
const VERSION = '0.92.2';

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

0 comments on commit d1546b6

Please sign in to comment.