Skip to content

Commit 63cb354

Browse files
[Version Bump] 2.15.0 (DataDog#3117)
Co-authored-by: andrewlock <andrewlock@users.noreply.github.com>
1 parent 17f6d97 commit 63cb354

File tree

32 files changed

+119
-39
lines changed

32 files changed

+119
-39
lines changed

.github/scripts/package_and_deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ddprof_deploy_folder=$1
66
commit_sha=$2
77
commit_author=$3
88

9-
current_profiler_version="2.14.0"
9+
current_profiler_version="2.15.0"
1010
profiler_version=v${current_profiler_version}_$(date -u +%G%m%d%H%M%S)
1111

1212
## Create master.index.txt file

docs/CHANGELOG.md

+80
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,86 @@
77

88

99

10+
11+
## [Release 2.14.0](https://github.com/DataDog/dd-trace-dotnet/releases/tag/v2.14.0)
12+
13+
## Summary
14+
15+
- GA release of the continuous profiler, adds support for NuGet-based deployment
16+
- Addresses a double-billing issue in AAS
17+
18+
## Changes
19+
20+
### Tracer
21+
* Allow null filenames in MultipartItem when using HttpClientRequest (#3024)
22+
* Fix possible zero in traceid or spanid (#3033)
23+
* [Tracer] Send AAS and Sampling Prio on all trace chunks (#3040)
24+
* Add .NET Framework 4.8.1 to `FrameworkDescription` (#3100)
25+
26+
### CI Visibility
27+
* [CI Visibility] Disable non testhost proc instrumentation on dotnet command (#3018)
28+
* [CI Visibility] Refactor CI Visibility payloads with the EvpPayload abstraction (#3032)
29+
* [CI Visibility] Stop using OS separator in relative paths (#3034)
30+
* [Ci Visibility] - Update logs format to the new spec (#3037)
31+
* [CI Visibility] Fix Coverage version type (#3039)
32+
* [CI Visibility] Upload Git tree metadata (#3045)
33+
* [CIVisibility] Change build file and CODEOWNERS (#3046)
34+
* [CIVisibility] Add support to bypass some ci environment variables (#3082)
35+
* [CIVisibility] Fix CIAgentlessWriter flush algorithm (#3096)
36+
37+
### Continuous Profiler
38+
* [Profiler] Use uws_backtrace for stackwalking on Linux (#2867)
39+
* [Profiler] Implement ICorProfilerCallback::EventPipeEventDelivered to receive CLR events synchronously (#2998)
40+
* [Profiler] Do not build the profiler native code in parallel for ASAN (#3021)
41+
* [Profiler] Check profiler log files for smoke tests (#3038)
42+
* Revert "[Profiler] Use uws_backtrace for stackwalking on Linux" (#3042)
43+
* [Profiler] Update libunwind to 1.6.2 (#3043)
44+
* [Profiler] Disable profiler when running in a container with <1 CPU (#3050)
45+
* [Profiler] Try to use default UDS path on Linux (#3057)
46+
* [Profiler] Fix generic types name for exception and allocation profilers (#3058)
47+
* [Profiler] Remove DD_DOTNET_PROFILER_HOME (#3073)
48+
* [Profiler] Improve error reported by libddprof (#3089)
49+
* [Profiler] Fix Profiler integration tests in VS (#3090)
50+
* [Profiler] Fix Sanitizer jobs (#3091)
51+
* [Profiler] Remove beta version for the profiler (#3092)
52+
* [Profiler] Change profiler library output directory on linux (#3094)
53+
54+
### Debugger
55+
* [Debugger] Fix issue where line probes with backslashes did not work (#3028)
56+
* Disable non-deterministic tests (#3030)
57+
* [Debugger] Leverage AdaptiveSampler for probes (#3078)
58+
59+
### Build / Test
60+
* Rename native projects in preparation for package layout refactor (#3016)
61+
* [CI] Allow throughput to run on benchmark branches (#3031)
62+
* Always use native loader for tests (part of package layout update) (#3036)
63+
* [AppSec] Enable AppSec in installer smoke tests (#3055)
64+
* Update package layouts & ship continuous profiler in dd-trace/NuGet (#3060)
65+
* Enable debug logs for smoke test (#3062)
66+
* Run MSI smoke tests against x86 runtime with the x64 installer (#3065)
67+
* Add a very simplistic snapshots checker (#3068)
68+
* Add a few smoke tests for the `dd-trace` NuGet package (#3070)
69+
* Small build tidy up - improve log file checking (#3071)
70+
* Delete `UpdateMsiContents` Target and `SyncMsiContent` (#3074)
71+
* More build tidying up (#3076)
72+
* Fix build error in OSX when using sdk version 6.0.400 (#3083)
73+
* [Snapshots] Add a note on version mismatch tests (#3086)
74+
* Centralise handling of HTTP requests in `MockTracerAgent` (#3095)
75+
* Increase smoke tests timeout (#3101)
76+
* Force fpm gem install to not update dependencies (#3104)
77+
* Use default monitoringHome path if env var is empty (#3105)
78+
79+
### Miscellaneous
80+
* Remove x-datadog headers from SQS message attributes (#3044)
81+
* Fix OSX native loader build issue (#3052)
82+
* Fix race condition during profilers initialization (#3056)
83+
* Add note on 'round-tripping' to Instrumentation Verification doc (#3067)
84+
* Fix macOS logs and add `DD_INTERNAL_NATIVE_LOADER_PATH` env var (#3069)
85+
* Zippy1981/add note to update documentation when you add an instrumentation (#3080)
86+
87+
88+
[Changes since 2.13.0](https://github.com/DataDog/dd-trace-dotnet/compare/v2.13.0...v2.14.0)
89+
1090
## [Release 2.13.0](https://github.com/DataDog/dd-trace-dotnet/releases/tag/v2.13.0)
1191

1292
## Summary

profiler/src/ProfilerEngine/Datadog.Profiler.Native.Linux/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Project definition
33
# ******************************************************
44

5-
project("Datadog.Profiler.Native.Linux" VERSION 2.14.0)
5+
project("Datadog.Profiler.Native.Linux" VERSION 2.15.0)
66

77
option(RUN_ASAN "Build with Clang Undefined-Behavior Sanitizer" OFF)
88
option(RUN_UBSAN "Build with Clang Undefined-Behavior Sanitizer" OFF)

profiler/src/ProfilerEngine/Datadog.Profiler.Native.Windows/Resource.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ END
6262

6363
// ------- version info -------------------------------------------------------
6464
VS_VERSION_INFO VERSIONINFO
65-
FILEVERSION 2,14,0,0
66-
PRODUCTVERSION 2,14,0,0
65+
FILEVERSION 2,15,0,0
66+
PRODUCTVERSION 2,15,0,0
6767
FILEFLAGSMASK VS_FF_PRERELEASE
6868
FILEOS VOS_NT
6969
FILETYPE VFT_DLL
@@ -74,12 +74,12 @@ BEGIN
7474
BEGIN
7575
VALUE "CompanyName", "Datadog"
7676
VALUE "FileDescription", "Continuous Profiler for .NET Applications"
77-
VALUE "FileVersion", "2.14.0.0"
77+
VALUE "FileVersion", "2.15.0.0"
7878
VALUE "InternalName", "Native Profiler Engine"
7979
VALUE "LegalCopyright", "(c) Datadog 2020-2022"
8080
VALUE "OriginalFilename", "Datadog.Profiler.Native.dll"
8181
VALUE "ProductName", "Continuous Profiler for .NET Applications"
82-
VALUE "ProductVersion", "2.14.0.0"
82+
VALUE "ProductVersion", "2.15.0.0"
8383
END
8484
END
8585
BLOCK "VarFileInfo"

profiler/src/ProfilerEngine/Datadog.Profiler.Native/dd_profiler_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
#pragma once
55

6-
constexpr auto PROFILER_VERSION = "2.14.0";
6+
constexpr auto PROFILER_VERSION = "2.15.0";

profiler/src/ProfilerEngine/ProductVersion.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<!-- * * * * * * * * * * * INPUTS. Update this section EVERY time the component is shipped/released! * * * * * * * * * * * -->
77
<PropertyGroup>
8-
<ProductVersion>2.14.0</ProductVersion>
8+
<ProductVersion>2.15.0</ProductVersion>
99
</PropertyGroup>
1010
<!-- * * * * * * * * * * * END OF INPUTS. * * * * * * * * * * * -->
1111

shared/src/msi-installer/WindowsInstaller.wixproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<IntermediateOutputPath>obj\$(Configuration)\$(Platform)\</IntermediateOutputPath>
1818
<SuppressPdbOutput>True</SuppressPdbOutput>
1919
<DefineSolutionProperties>false</DefineSolutionProperties>
20-
<OutputName>datadog-dotnet-apm-2.14.0-$(Platform)</OutputName> <!-- -The regex recognizes this line -->
20+
<OutputName>datadog-dotnet-apm-2.15.0-$(Platform)</OutputName> <!-- -The regex recognizes this line -->
2121
<MonitoringHomeDirectory Condition="'$(MonitoringHomeDirectory)' == ''">$(MSBuildThisFileDirectory)..\..\bin\monitoring-home</MonitoringHomeDirectory>
22-
<DefineConstants>InstallerVersion=2.14.0;MonitoringHomeDirectory=$(MonitoringHomeDirectory);</DefineConstants>
22+
<DefineConstants>InstallerVersion=2.15.0;MonitoringHomeDirectory=$(MonitoringHomeDirectory);</DefineConstants>
2323
</PropertyGroup>
2424
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
2525
<DefineConstants>$(DefineConstants);Debug</DefineConstants>

tracer/build/_build/Build.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ partial class Build : NukeBuild
5555
readonly bool IsAlpine = false;
5656

5757
[Parameter("The current version of the source and build")]
58-
readonly string Version = "2.14.0";
58+
readonly string Version = "2.15.0";
5959

6060
[Parameter("Whether the current build version is a prerelease(for packaging purposes)")]
6161
readonly bool IsPrerelease = false;

tracer/samples/AutomaticTraceIdInjection/Log4NetExample/Log4NetExample.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Datadog.Trace" Version="2.13.0" />
9+
<PackageReference Include="Datadog.Trace" Version="2.14.0" />
1010
<PackageReference Include="log4net" Version="2.0.12" />
1111
<PackageReference Include="log4net.Ext.Json" Version="2.0.8.3" />
1212
</ItemGroup>

tracer/samples/AutomaticTraceIdInjection/MicrosoftExtensionsExample/MicrosoftExtensionsExample.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<ItemGroup>
88
<PackageReference Include="Datadog.Monitoring.Distribution" Version="1.28.6-beta01" />
9-
<PackageReference Include="Datadog.Trace" Version="2.13.0" />
9+
<PackageReference Include="Datadog.Trace" Version="2.14.0" />
1010
<PackageReference Include="Microsoft.Extensions.Hosting" Version="3.1.18" />
1111
<PackageReference Include="NetEscapades.Extensions.Logging.RollingFile" Version="2.5.0-beta01" />
1212
<PackageReference Include="Serilog.Extensions.Logging" Version="3.0.1" />

tracer/samples/AutomaticTraceIdInjection/NLog40Example/NLog40Example.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Datadog.Trace" Version="2.13.0" />
9+
<PackageReference Include="Datadog.Trace" Version="2.14.0" />
1010
<PackageReference Include="NLog" Version="4.0.0" />
1111
</ItemGroup>
1212

tracer/samples/AutomaticTraceIdInjection/NLog45Example/NLog45Example.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Datadog.Trace" Version="2.13.0" />
9+
<PackageReference Include="Datadog.Trace" Version="2.14.0" />
1010
<PackageReference Include="NLog" Version="4.5.11" />
1111
</ItemGroup>
1212

tracer/samples/AutomaticTraceIdInjection/NLog46Example/NLog46Example.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Datadog.Trace" Version="2.13.0" />
9+
<PackageReference Include="Datadog.Trace" Version="2.14.0" />
1010
<PackageReference Include="NLog" Version="4.6.7" />
1111
</ItemGroup>
1212

tracer/samples/AutomaticTraceIdInjection/SerilogExample/SerilogExample.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Datadog.Trace" Version="2.13.0" />
9+
<PackageReference Include="Datadog.Trace" Version="2.14.0" />
1010
<PackageReference Include="Serilog" Version="2.9.0" />
1111
<PackageReference Include="Serilog.Formatting.Compact" Version="1.1.0" />
1212
<PackageReference Include="Serilog.Sinks.File" Version="4.1.0" />

tracer/samples/ConsoleApp/Alpine3.10.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ COPY --from=build /app/out .
1616

1717
# Set up Datadog APM
1818
RUN apk --no-cache update && apk add curl
19-
ARG TRACER_VERSION=2.13.0
19+
ARG TRACER_VERSION=2.14.0
2020
RUN mkdir -p /var/log/datadog
2121
RUN mkdir -p /opt/datadog
2222
RUN curl -L https://github.com/DataDog/dd-trace-dotnet/releases/download/v${TRACER_VERSION}/datadog-dotnet-apm-${TRACER_VERSION}-musl.tar.gz \

tracer/samples/ConsoleApp/Alpine3.9.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ COPY --from=build /app/out .
1616

1717
# Set up Datadog APM
1818
RUN apk --no-cache update && apk add curl
19-
ARG TRACER_VERSION=2.13.0
19+
ARG TRACER_VERSION=2.14.0
2020
RUN mkdir -p /var/log/datadog
2121
RUN mkdir -p /opt/datadog
2222
RUN curl -L https://github.com/DataDog/dd-trace-dotnet/releases/download/v${TRACER_VERSION}/datadog-dotnet-apm-${TRACER_VERSION}-musl.tar.gz \

tracer/samples/ConsoleApp/Debian.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ WORKDIR /app
1515
COPY --from=build /app/out .
1616

1717
# Set up Datadog APM
18-
ARG TRACER_VERSION=2.13.0
18+
ARG TRACER_VERSION=2.14.0
1919
RUN mkdir -p /var/log/datadog
2020
RUN mkdir -p /opt/datadog
2121
RUN curl -LO https://github.com/DataDog/dd-trace-dotnet/releases/download/v${TRACER_VERSION}/datadog-dotnet-apm_${TRACER_VERSION}_amd64.deb

tracer/samples/WindowsContainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
FROM mcr.microsoft.com/dotnet/aspnet:5.0-windowsservercore-ltsc2019 AS base
77
WORKDIR /app
88

9-
ARG TRACER_VERSION=2.13.0
9+
ARG TRACER_VERSION=2.14.0
1010
ENV DD_TRACER_VERSION=$TRACER_VERSION
1111
ENV ASPNETCORE_URLS=http://*.80
1212

tracer/src/Datadog.Monitoring.Distribution/Datadog.Monitoring.Distribution.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>2.14.0</Version>
4+
<Version>2.15.0</Version>
55
<Version>$(Version)-beta01</Version> <!-- Unconditionally add a beta suffix to the package, but keep the rest of the name so we can associate it with the rest of the release -->
66
<Title>Datadog APM Auto-instrumentation Assets</Title>
77
<Description>Auto-instrumentation assets for Datadog APM</Description>

tracer/src/Datadog.Trace.AspNet/Datadog.Trace.AspNet.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net461</TargetFrameworks>
5-
<Version>2.14.0</Version>
5+
<Version>2.15.0</Version>
66
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
77
</PropertyGroup>
88

tracer/src/Datadog.Trace.ClrProfiler.Managed.Loader/Datadog.Trace.ClrProfiler.Managed.Loader.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<OutputPath>..\bin\ProfilerResources\</OutputPath>
77

88
<!-- NuGet -->
9-
<Version>2.14.0</Version>
9+
<Version>2.15.0</Version>
1010

1111
<!-- Hide warnings for EOL .NET Core targets (e.g. netcoreapp2.0) -->
1212
<CheckEolTargetFramework>false</CheckEolTargetFramework>

tracer/src/Datadog.Trace.ClrProfiler.Managed.Loader/Startup.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Datadog.Trace.ClrProfiler.Managed.Loader
1414
/// </summary>
1515
public partial class Startup
1616
{
17-
private const string AssemblyName = "Datadog.Trace, Version=2.14.0.0, Culture=neutral, PublicKeyToken=def86d061d0d2eeb";
17+
private const string AssemblyName = "Datadog.Trace, Version=2.15.0.0, Culture=neutral, PublicKeyToken=def86d061d0d2eeb";
1818
private const string AzureAppServicesKey = "DD_AZURE_APP_SERVICES";
1919
private const string AasCustomTracingKey = "DD_AAS_ENABLE_CUSTOM_TRACING";
2020
private const string AasCustomMetricsKey = "DD_AAS_ENABLE_CUSTOM_METRICS";

tracer/src/Datadog.Trace.MSBuild/Datadog.Trace.MSBuild.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>2.14.0</Version>
4+
<Version>2.15.0</Version>
55
</PropertyGroup>
66

77
<!-- For VS testing purposes only, copy all implementation assemblies to the

tracer/src/Datadog.Trace.OpenTracing/Datadog.Trace.OpenTracing.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<!-- NuGet -->
5-
<Version>2.14.0</Version>
5+
<Version>2.15.0</Version>
66
<Title>Datadog APM - OpenTracing</Title>
77
<Description>Provides OpenTracing support for Datadog APM</Description>
88
<PackageTags>$(PackageTags);OpenTracing</PackageTags>

tracer/src/Datadog.Trace.Tools.Runner/Datadog.Trace.Tools.Runner.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>2.14.0</Version>
4+
<Version>2.15.0</Version>
55
<Title>Datadog APM Auto-instrumentation Runner</Title>
66
<Copyright>Copyright 2020 Datadog, Inc.</Copyright>
77
<Description>Auto-instrumentation dotnet global tool for Datadog APM</Description>

tracer/src/Datadog.Trace/Datadog.Trace.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<!-- NuGet -->
5-
<Version>2.14.0</Version>
5+
<Version>2.15.0</Version>
66
<Title>Datadog APM</Title>
77
<Description>Instrumentation library for Datadog APM.</Description>
88
<PublishRepositoryUrl>true</PublishRepositoryUrl>

tracer/src/Datadog.Trace/TracerConstants.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ internal static class TracerConstants
1414
/// </summary>
1515
public const ulong MaxTraceId = 9_223_372_036_854_775_807;
1616

17-
public const string AssemblyVersion = "2.14.0.0";
17+
public const string AssemblyVersion = "2.15.0.0";
1818
}
1919
}

tracer/src/Datadog.Tracer.Native/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cmake_policy(SET CMP0015 NEW)
55
# Project definition
66
# ******************************************************
77

8-
project("Datadog.Tracer.Native" VERSION 2.14.0)
8+
project("Datadog.Tracer.Native" VERSION 2.15.0)
99

1010
# ******************************************************
1111
# Environment detection

tracer/src/Datadog.Tracer.Native/Resource.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ END
5050
//
5151

5252
VS_VERSION_INFO VERSIONINFO
53-
FILEVERSION 2,14,0,0
54-
PRODUCTVERSION 2,14,0,0
53+
FILEVERSION 2,15,0,0
54+
PRODUCTVERSION 2,15,0,0
5555
FILEFLAGSMASK 0x3fL
5656
#ifdef _DEBUG
5757
FILEFLAGS 0x1L
@@ -68,12 +68,12 @@ BEGIN
6868
BEGIN
6969
VALUE "CompanyName", "Datadog, Inc."
7070
VALUE "FileDescription", "Datadog CLR Profiler"
71-
VALUE "FileVersion", "2.14.0.0"
71+
VALUE "FileVersion", "2.15.0.0"
7272
VALUE "InternalName", "Datadog.Tracer.Native.DLL"
7373
VALUE "LegalCopyright", "Copyright 2017 Datadog, Inc."
7474
VALUE "OriginalFilename", "Datadog.Tracer.Native.DLL"
7575
VALUE "ProductName", "Datadog .NET Tracer"
76-
VALUE "ProductVersion", "2.14.0"
76+
VALUE "ProductVersion", "2.15.0"
7777
END
7878
END
7979
BLOCK "VarFileInfo"

tracer/src/Datadog.Tracer.Native/dd_profiler_constants.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const shared::WSTRING system_private_corelib_assemblyName = WStr("System.Private
8383
const shared::WSTRING datadog_trace_clrprofiler_managed_loader_assemblyName = WStr("Datadog.Trace.ClrProfiler.Managed.Loader");
8484

8585
const shared::WSTRING managed_profiler_full_assembly_version =
86-
WStr("Datadog.Trace, Version=2.14.0.0, Culture=neutral, PublicKeyToken=def86d061d0d2eeb");
86+
WStr("Datadog.Trace, Version=2.15.0.0, Culture=neutral, PublicKeyToken=def86d061d0d2eeb");
8787

8888
const shared::WSTRING managed_profiler_name = WStr("Datadog.Trace");
8989

@@ -123,7 +123,7 @@ const AssemblyProperty managed_profiler_assembly_property = AssemblyProperty(
123123
49, 105, 236, 40, 21, 176, 12, 238, 238, 204, 141, 90, 27, 244, 61, 182, 125, 41, 97, 163,
124124
233, 190, 161, 57, 127, 4, 62, 192, 116, 145, 112, 150, 73, 37, 47, 85, 101, 183, 86, 197},
125125
160, 32772, 1)
126-
.WithVersion(2, 14, 0, 0);
126+
.WithVersion(2, 15, 0, 0);
127127

128128
} // namespace trace
129129

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#pragma once
22

3-
constexpr auto PROFILER_VERSION = "2.14.0";
3+
constexpr auto PROFILER_VERSION = "2.15.0";

0 commit comments

Comments
 (0)