Skip to content

Commit

Permalink
Core tech test update roundup (#2016)
Browse files Browse the repository at this point in the history
* Update MongoDB.Driver to 2.22.0

* Update latest RabbitMQ.Client to 6.6.0

* Update latest MySql.Data to 8.2.0

* Update latest NLog to 5.2.5
  • Loading branch information
nr-ahemsath authored Oct 30, 2023
1 parent 9f8d22f commit 4b75587
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,24 +61,24 @@
<PackageReference Include="MySql.Data" Version="8.0.15" Condition="'$(TargetFramework)' == 'net471'" />
<PackageReference Include="MySql.Data" Version="8.0.30" Condition="'$(TargetFramework)' == 'net48'" />
<!-- MySql.Data v8.0.33 is a breaking change for the agent and requires agent version 10.11.1 or greater -->
<PackageReference Include="MySql.Data" Version="8.1.0" Condition="'$(TargetFramework)' == 'net481'" />
<PackageReference Include="MySql.Data" Version="8.2.0" Condition="'$(TargetFramework)' == 'net481'" />

<!-- MySql.Data .NET/Core references -->
<PackageReference Include="MySql.Data" Version="6.10.7" Condition="'$(TargetFramework)' == 'net6.0'" />
<!-- MySql.Data v8.0.33 is a breaking change for the agent and requires agent version 10.11.1 or greater -->
<PackageReference Include="MySql.Data" Version="8.1.0" Condition="'$(TargetFramework)' == 'net7.0'" />
<PackageReference Include="MySql.Data" Version="8.2.0" Condition="'$(TargetFramework)' == 'net7.0'" />

<!-- MongoDB.Driver .NET Framework references -->
<!-- 2.3.0 is the oldest version we support, 2.17.1 is the newest version as of October 2022 -->
<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.21.0" Condition="'$(TargetFramework)' == 'net481'" />
<PackageReference Include="MongoDB.Driver" Version="2.22.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.21.0" Condition="'$(TargetFramework)' == 'net7.0'" />
<PackageReference Include="MongoDB.Driver" Version="2.22.0" Condition="'$(TargetFramework)' == 'net7.0'" />

<!-- MySqlConnector framework references -->
<PackageReference Include="MySqlConnector" Version="1.0.1" Condition="'$(TargetFramework)' == 'net462'" />
Expand Down Expand Up @@ -195,9 +195,9 @@
<PackageReference Include="RabbitMQ.Client" Version="3.6.9" Condition="'$(TargetFramework)' == 'net462'" />
<PackageReference Include="RabbitMQ.Client" Version="4.1.3" Condition="'$(TargetFramework)' == 'net471'" />
<PackageReference Include="RabbitMQ.Client" Version="6.0.0" Condition="'$(TargetFramework)' == 'net48'" />
<PackageReference Include="RabbitMQ.Client" Version="6.5.0" Condition="'$(TargetFramework)' == 'net481'" />
<PackageReference Include="RabbitMQ.Client" Version="6.6.0" Condition="'$(TargetFramework)' == 'net481'" />
<PackageReference Include="RabbitMQ.Client" Version="5.2.0" Condition="'$(TargetFramework)' == 'net6.0'" />
<PackageReference Include="RabbitMQ.Client" Version="6.5.0" Condition="'$(TargetFramework)' == 'net7.0'" />
<PackageReference Include="RabbitMQ.Client" Version="6.6.0" Condition="'$(TargetFramework)' == 'net7.0'" />

<PackageReference Include="NServiceBus" Version="5.0.0" Condition="'$(TargetFramework)' == 'net462'" />
<PackageReference Include="NServiceBus" Version="6.5.10" Condition="'$(TargetFramework)' == 'net471'" />
Expand Down Expand Up @@ -241,12 +241,12 @@

<ItemGroup> <!-- Versions below 4.5 did not support netstandard 2.0 -->
<PackageReference Include="NLog" Version="4.5.9" Condition="'$(TargetFramework)' == 'net6.0'" />
<PackageReference Include="NLog" Version="5.2.4" Condition="'$(TargetFramework)' == 'net7.0'" />
<PackageReference Include="NLog" Version="5.2.5" Condition="'$(TargetFramework)' == 'net7.0'" />

<PackageReference Include="NLog" Version="4.3.11" Condition="'$(TargetFramework)' == 'net462'" />
<PackageReference Include="NLog" Version="4.1.2" Condition="'$(TargetFramework)' == 'net471'" />
<PackageReference Include="NLog" Version="4.5.11" Condition="'$(TargetFramework)' == 'net48'" />
<PackageReference Include="NLog" Version="5.2.4" Condition="'$(TargetFramework)' == 'net481'" />
<PackageReference Include="NLog" Version="5.2.5" Condition="'$(TargetFramework)' == 'net481'" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 4b75587

Please sign in to comment.