Skip to content

Commit fc3c6c6

Browse files
[Version Bump] 3.9.0 (#6507)
The following files were found to be modified (as expected) - [x] docs/CHANGELOG.md - [x] .azure-pipelines/ultimate-pipeline.yml - [x] profiler/src/ProfilerEngine/Datadog.Profiler.Native.Linux/CMakeLists.txt - [x] profiler/src/ProfilerEngine/Datadog.Profiler.Native.Windows/Resource.rc - [x] profiler/src/ProfilerEngine/Datadog.Profiler.Native/dd_profiler_version.h - [x] profiler/src/ProfilerEngine/Datadog.Linux.ApiWrapper/CMakeLists.txt - [x] profiler/src/ProfilerEngine/ProductVersion.props - [x] shared/src/Datadog.Trace.ClrProfiler.Native/CMakeLists.txt - [x] shared/src/Datadog.Trace.ClrProfiler.Native/Resource.rc - [x] shared/src/msi-installer/WindowsInstaller.wixproj - [x] shared/src/native-src/version.h - [x] tracer/build/artifacts/dd-dotnet.sh - [x] tracer/build/_build/Build.cs - [x] tracer/samples/AutomaticTraceIdInjection/MicrosoftExtensionsExample/MicrosoftExtensionsExample.csproj - [x] tracer/samples/AutomaticTraceIdInjection/Log4NetExample/Log4NetExample.csproj - [x] tracer/samples/AutomaticTraceIdInjection/NLog40Example/NLog40Example.csproj - [x] tracer/samples/AutomaticTraceIdInjection/NLog45Example/NLog45Example.csproj - [x] tracer/samples/AutomaticTraceIdInjection/NLog46Example/NLog46Example.csproj - [x] tracer/samples/AutomaticTraceIdInjection/SerilogExample/SerilogExample.csproj - [x] tracer/samples/ConsoleApp/Alpine3.10.dockerfile - [x] tracer/samples/ConsoleApp/Alpine3.9.dockerfile - [x] tracer/samples/ConsoleApp/Debian.dockerfile - [x] tracer/samples/OpenTelemetry/Debian.dockerfile - [x] tracer/samples/WindowsContainer/Dockerfile - [x] tracer/src/Datadog.Trace.Bundle/Datadog.Trace.Bundle.csproj - [x] tracer/src/Datadog.Trace.ClrProfiler.Managed.Loader/Datadog.Trace.ClrProfiler.Managed.Loader.csproj - [x] tracer/src/Datadog.Trace.ClrProfiler.Managed.Loader/Startup.cs - [x] tracer/src/Datadog.Trace.Manual/Datadog.Trace.Manual.csproj - [x] tracer/src/Datadog.Tracer.Native/CMakeLists.txt - [x] tracer/src/Datadog.Tracer.Native/dd_profiler_constants.h - [x] tracer/src/Datadog.Tracer.Native/Resource.rc - [x] tracer/src/Datadog.Trace.MSBuild/Datadog.Trace.MSBuild.csproj - [x] tracer/src/Datadog.Trace.BenchmarkDotNet/Datadog.Trace.BenchmarkDotNet.csproj - [x] tracer/src/Datadog.Trace.OpenTracing/Datadog.Trace.OpenTracing.csproj - [x] tracer/src/Datadog.Trace.Tools.dd_dotnet/Datadog.Trace.Tools.dd_dotnet.csproj - [x] tracer/src/Datadog.Trace.Tools.Runner/Datadog.Trace.Tools.Runner.csproj - [x] tracer/src/Datadog.Trace/Datadog.Trace.csproj - [x] tracer/src/Datadog.Trace/TracerConstants.cs - [x] tracer/src/Datadog.Trace.Trimming/Datadog.Trace.Trimming.csproj - [x] tracer/tools/PipelineMonitor/PipelineMonitor.csproj @DataDog/apm-dotnet Co-authored-by: andrewlock <andrewlock@users.noreply.github.com>
1 parent af2669f commit fc3c6c6

File tree

40 files changed

+109
-51
lines changed

40 files changed

+109
-51
lines changed

.azure-pipelines/ultimate-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ variables:
171171
DD_COLLECTOR_CPU_USAGE: true
172172
# If we're doing an SSI run, set the indicator, the rest need to be set in the stage
173173
IS_SSI_RUN: $[ or(eq(variables['Build.CronSchedule.DisplayName'], 'Daily SSI Run'), eq(variables['force_ssi_run'], 'true')) ]
174-
ToolVersion: 3.8.0
174+
ToolVersion: 3.9.0
175175

176176
# Declare the datadog agent as a resource to be used as a pipeline service
177177
resources:

docs/CHANGELOG.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,64 @@
1010

1111

1212

13+
14+
## [Release 3.8.0](https://github.com/DataDog/dd-trace-dotnet/releases/tag/v3.8.0)
15+
16+
## Summary
17+
18+
- [ASM] Improved error handling and reporting
19+
- [ASM/IAST] Fix a crash occurring when an attribute is decorated with itself
20+
- [Dynamic Instrumentation] Fix errors in symbol upload and exception replay
21+
- [AWS Lambda] Encode non-ascii error messages
22+
23+
## Changes
24+
25+
### Tracer
26+
* [Tracing] Refactor internal Span Links API (#6341)
27+
* Support relative path in `DD_DOTNET_TRACER_HOME` (#6434)
28+
* Add support for `[DuckPropertyOrField]` (#6463)
29+
30+
### ASM
31+
* [ASM] Log `FormatException` from `get_Uri` as debug (#6489)
32+
* [ASM] Update Iast Log Warning to Error (#6492)
33+
* [ASM] upgrade warning to error (#6421)
34+
* [ASM] Fix IAST benchmark tests (#6462)
35+
* [ASM] Error metric for unknown operator errors (#6465)
36+
* [ASM] Introduce SecurityReporter for all reporting functions of SecurityCoordinator (#6481)
37+
* [ASM] Normalise aspects exception logging (#6495)
38+
* Fix build issues on aspects on net5.0 (#6500)
39+
40+
### Debugger
41+
* [Dynamic Instrumentation] Hotfix SymDB and ER (#6468)
42+
43+
### Serverless
44+
* [serverless] encode lambda error.msg and error.type (#6438)
45+
46+
### Fixes
47+
* [IAST] Fix recursive custom attribute crash (#6470)
48+
49+
### Build / Test
50+
* [IAST] Skip failing tests (#6455)
51+
* repo: mandatory issue templates (AIDM-424) (#6456)
52+
* K8s Lib Injection tests: run on a matrix (#6458)
53+
* [Build] Fix version bump autogen files error (#6464)
54+
* Fix the build and some versions (#6466)
55+
* [IAST] skip dotnet 2.1 tests that can't work (#6467)
56+
* Exclude common failure in smoke tests (#6469)
57+
* allow running exploration tests on mac (#6474)
58+
* [Test Package Versions Bump] Updating package versions (#6450)
59+
* [Test Package Versions Bump] Updating package versions (#6478)
60+
* [Test Package Versions Bump] Updating package versions (#6486)
61+
* Parallelize unit tests (#6483)
62+
* [IAST] Propagation tests reorg (#6487)
63+
* fix UpdateVendoredCode on mac (#6490)
64+
65+
### Miscellaneous
66+
* [Crashtracking] Add a setting to disable crashtracking filtering (#6452)
67+
68+
69+
[Changes since 3.7.0](https://github.com/DataDog/dd-trace-dotnet/compare/v3.7.0...v3.8.0)
70+
1371
## [Release 3.7.0](https://github.com/DataDog/dd-trace-dotnet/releases/tag/v3.7.0)
1472

1573
## Summary

profiler/src/ProfilerEngine/Datadog.Linux.ApiWrapper/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Project definition
33
# ******************************************************
44

5-
project("Datadog.Linux.ApiWrapper" VERSION 3.8.0)
5+
project("Datadog.Linux.ApiWrapper" VERSION 3.9.0)
66

77
# ******************************************************
88
# Compiler options

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Project definition
33
# ******************************************************
44

5-
project("Datadog.Profiler.Native.Linux" VERSION 3.8.0)
5+
project("Datadog.Profiler.Native.Linux" VERSION 3.9.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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ END
6262

6363
// ------- version info -------------------------------------------------------
6464
VS_VERSION_INFO VERSIONINFO
65-
FILEVERSION 3,8,0,0
66-
PRODUCTVERSION 3,8,0,0
65+
FILEVERSION 3,9,0,0
66+
PRODUCTVERSION 3,9,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", "3.8.0.0"
77+
VALUE "FileVersion", "3.9.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", "3.8.0.0"
82+
VALUE "ProductVersion", "3.9.0.0"
8383
END
8484
END
8585
BLOCK "VarFileInfo"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
#pragma once
55

6-
constexpr auto PROFILER_VERSION = "3.8.0";
6+
constexpr auto PROFILER_VERSION = "3.9.0";

profiler/src/ProfilerEngine/ProductVersion.props

Lines changed: 1 addition & 1 deletion
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>3.8.0</ProductVersion>
8+
<ProductVersion>3.9.0</ProductVersion>
99
</PropertyGroup>
1010
<!-- * * * * * * * * * * * END OF INPUTS. * * * * * * * * * * * -->
1111

shared/src/Datadog.Trace.ClrProfiler.Native/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ endif()
1212
# Project definition
1313
# ******************************************************
1414

15-
project("Datadog.Trace.ClrProfiler.Native" VERSION 3.8.0)
15+
project("Datadog.Trace.ClrProfiler.Native" VERSION 3.9.0)
1616

1717
if (UNIVERSAL)
1818
find_package(GlibcCompat REQUIRED)

shared/src/Datadog.Trace.ClrProfiler.Native/Resource.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ VS_VERSION_INFO VERSIONINFO
5757
#else
5858
FILEFLAGS 0x0L
5959
#endif
60-
FILEVERSION 3,8,0,0
61-
PRODUCTVERSION 3,8,0,0
60+
FILEVERSION 3,9,0,0
61+
PRODUCTVERSION 3,9,0,0
6262
FILEOS VOS_NT
6363
FILETYPE VFT_DLL
6464
BEGIN
@@ -68,12 +68,12 @@ BEGIN
6868
BEGIN
6969
VALUE "CompanyName", "Datadog"
7070
VALUE "FileDescription", "Native loader for Datadog .NET APM"
71-
VALUE "FileVersion", "3.8.0.0"
71+
VALUE "FileVersion", "3.9.0.0"
7272
VALUE "InternalName", "Native loader"
7373
VALUE "LegalCopyright", "(c) Datadog 2020-2022"
7474
VALUE "OriginalFilename", "Datadog.Trace.ClrProfiler.Native.dll"
7575
VALUE "ProductName", "Native loader for Datadog .NET APM"
76-
VALUE "ProductVersion", "3.8.0.0"
76+
VALUE "ProductVersion", "3.9.0.0"
7777
END
7878
END
7979
BLOCK "VarFileInfo"

shared/src/msi-installer/WindowsInstaller.wixproj

Lines changed: 2 additions & 2 deletions
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-3.8.0-$(Platform)</OutputName> <!-- -The regex recognizes this line -->
20+
<OutputName>datadog-dotnet-apm-3.9.0-$(Platform)</OutputName> <!-- -The regex recognizes this line -->
2121
<MonitoringHomeDirectory Condition="'$(MonitoringHomeDirectory)' == ''">$(MSBuildThisFileDirectory)..\..\bin\monitoring-home</MonitoringHomeDirectory>
22-
<DefineConstants>InstallerVersion=3.8.0;MonitoringHomeDirectory=$(MonitoringHomeDirectory);</DefineConstants>
22+
<DefineConstants>InstallerVersion=3.9.0;MonitoringHomeDirectory=$(MonitoringHomeDirectory);</DefineConstants>
2323
</PropertyGroup>
2424
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
2525
<DefineConstants>$(DefineConstants);Debug</DefineConstants>

0 commit comments

Comments
 (0)