Skip to content

chore: update latest versions of instrumented libraries tested #1738

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@
<PackageReference Include="MongoDB.Driver" Version="2.3.0" Condition="'$(TargetFramework)' == 'net462'" />
<PackageReference Include="MongoDB.Driver" Version="2.14.1" Condition="'$(TargetFramework)' == 'net471'" />
<PackageReference Include="MongoDB.Driver" Version="2.17.1" Condition="'$(TargetFramework)' == 'net48'" />
<PackageReference Include="MongoDB.Driver" Version="2.19.2" Condition="'$(TargetFramework)' == 'net481'" />
<PackageReference Include="MongoDB.Driver" Version="2.20.0" Condition="'$(TargetFramework)' == 'net481'" />

<!-- MongoDB.Driver .NET/Core references -->
<!-- Minimum version we can use with .NET core 3.0 or greater is 2.8.1, due to this bug: https://github.com/mongodb/mongo-csharp-driver/pull/372 -->
<PackageReference Include="MongoDB.Driver" Version="2.8.1" Condition="'$(TargetFramework)' == 'net6.0'" />
<PackageReference Include="MongoDB.Driver" Version="2.19.2" Condition="'$(TargetFramework)' == 'net7.0'" />
<PackageReference Include="MongoDB.Driver" Version="2.20.0" Condition="'$(TargetFramework)' == 'net7.0'" />

<!-- MySqlConnector framework references -->
<PackageReference Include="MySqlConnector" Version="1.0.1" Condition="'$(TargetFramework)' == 'net462'" />
Expand All @@ -94,11 +94,11 @@
<PackageReference Include="StackExchange.Redis.StrongName" Version="1.1.608" Condition="'$(TargetFramework)' == 'net462'" />
<PackageReference Include="StackExchange.Redis" Version="2.0.601" Condition="'$(TargetFramework)' == 'net471'" />
<PackageReference Include="StackExchange.Redis" Version="2.2.88" Condition="'$(TargetFramework)' == 'net48'" />
<PackageReference Include="StackExchange.Redis" Version="2.6.111" Condition="'$(TargetFramework)' == 'net481'" />
<PackageReference Include="StackExchange.Redis" Version="2.6.116" Condition="'$(TargetFramework)' == 'net481'" />

<!-- StackExchange.Redis .NET/Core references -->
<PackageReference Include="StackExchange.Redis.StrongName" Version="1.2.6" Condition="'$(TargetFramework)' == 'net6.0'" />
<PackageReference Include="StackExchange.Redis" Version="2.6.111" Condition="'$(TargetFramework)' == 'net7.0'" />
<PackageReference Include="StackExchange.Redis" Version="2.6.116" Condition="'$(TargetFramework)' == 'net7.0'" />

<!-- Elasticsearch NEST framework references - only able to test newest 7.x with 8.x server -->
<PackageReference Include="NEST" Version="7.17.5" Condition="'$(TargetFramework)' == 'net462'" />
Expand Down Expand Up @@ -141,7 +141,7 @@
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" Condition="'$(TargetFramework)' == 'net48'" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" Condition="'$(TargetFramework)' == 'net48'" />

<PackageReference Include="Serilog" Version="2.12.0" Condition="'$(TargetFramework)' == 'net481'" />
<PackageReference Include="Serilog" Version="3.0.1" Condition="'$(TargetFramework)' == 'net481'" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" Condition="'$(TargetFramework)' == 'net481'" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" Condition="'$(TargetFramework)' == 'net481'" />

Expand All @@ -153,7 +153,7 @@
<PackageReference Include="Serilog.Sinks.File" Version="4.1.0" Condition="'$(TargetFramework)' == 'net6.0'" />
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" Condition="'$(TargetFramework)' == 'net6.0'" />

<PackageReference Include="Serilog" Version="2.12.0" Condition="'$(TargetFramework)' == 'net7.0'" />
<PackageReference Include="Serilog" Version="3.0.1" Condition="'$(TargetFramework)' == 'net7.0'" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" Condition="'$(TargetFramework)' == 'net7.0'" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" Condition="'$(TargetFramework)' == 'net7.0'" />

Expand Down