Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: DataDog/dd-trace-php
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.93.1
Choose a base ref
...
head repository: DataDog/dd-trace-php
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.93.2
Choose a head ref
  • 2 commits
  • 7 files changed
  • 1 contributor

Commits on Nov 10, 2023

  1. Copy the full SHA
    d01c5e1 View commit details

Commits on Nov 13, 2023

  1. Copy the full SHA
    7850350 View commit details
Showing with 7 additions and 7 deletions.
  1. +1 −1 Cargo.lock
  2. +1 −1 appsec/CMakeLists.txt
  3. +1 −1 ext/version.h
  4. +1 −1 package.xml
  5. +1 −1 profiling/Cargo.toml
  6. +1 −1 src/DDTrace/Tracer.php
  7. +1 −1 src/Integrations/Integrations/PDO/PDOIntegration.php
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
@@ -9,7 +9,7 @@ HunterGate(
URL "https://github.com/cpp-pm/hunter/archive/v0.23.314.tar.gz"
SHA1 "95c47c92f68edb091b5d6d18924baabe02a6962a")

project(ddappsec VERSION 0.93.1)
project(ddappsec VERSION 0.93.2)

set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(CMAKE_C_STANDARD 11)
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.93.1"
#define PHP_DDTRACE_VERSION "0.93.2"
#endif
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
@@ -64,7 +64,7 @@
<![CDATA[
## Tracer
### Fixed
- Reset distributed context on request init #2340
- [PDO] injectDBIntegration should be public. #2351
]]></notes>
<contents>
<dir name="/">
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.93.1"
version = "0.93.2"
edition = "2021"
license = "Apache-2.0"
rust-version = "1.64"
2 changes: 1 addition & 1 deletion src/DDTrace/Tracer.php
Original file line number Diff line number Diff line change
@@ -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.93.1';
const VERSION = '0.93.2';

/**
* @var Span[][]
2 changes: 1 addition & 1 deletion src/Integrations/Integrations/PDO/PDOIntegration.php
Original file line number Diff line number Diff line change
@@ -273,7 +273,7 @@ private static function parseDsn($dsn)
return $tags;
}

private static function injectDBIntegration($pdo, $hook)
public static function injectDBIntegration($pdo, $hook)
{
$driver = $pdo->getAttribute(\PDO::ATTR_DRIVER_NAME);
if ($driver === "odbc") {