Skip to content

Commit

Permalink
Bump tests dependencies (#3648)
Browse files Browse the repository at this point in the history
* [Tests] Bump Azure.Storage.Blobs to 12.20.0

* [Tests] Bump Elastic.Clients.Elasticsearch to 8.15.6

* [Tests] Bump NServiceBus to 9.2.2

* [Tests] Bump MongoDB.Driver to 2.29.0

* [Tests] Bump Npgsql to 8.0.4

* [Tests] Bump Oracle.ManagedDataAccess* to 23.5.1
  • Loading branch information
Kielek committed Sep 19, 2024
1 parent 272ade7 commit 6cff753
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 16 deletions.
11 changes: 7 additions & 4 deletions build/LibraryVersions.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static partial class LibraryVersion
new List<PackageBuildInfo>
{
new("12.13.0"),
new("12.21.2"),
new("12.22.0"),
}
},
{
Expand All @@ -29,7 +29,7 @@ public static partial class LibraryVersion
{
new("8.0.0"),
new("8.10.0"),
new("8.15.5"),
new("8.15.6"),
}
},
{
Expand Down Expand Up @@ -98,6 +98,7 @@ public static partial class LibraryVersion
new List<PackageBuildInfo>
{
new("2.28.0"),
new("2.29.0"),
}
},
{
Expand All @@ -121,7 +122,7 @@ public static partial class LibraryVersion
new List<PackageBuildInfo>
{
new("6.0.11"),
new("8.0.3"),
new("8.0.4"),
}
},
{
Expand All @@ -130,21 +131,23 @@ public static partial class LibraryVersion
{
new("8.0.0"),
new("9.1.0", supportedFrameworks: new string[] {"net8.0"}),
new("9.1.1", supportedFrameworks: new string[] {"net8.0"}),
new("9.2.2", supportedFrameworks: new string[] {"net8.0"}),
}
},
{
"TestApplication.OracleMda.NetFramework",
new List<PackageBuildInfo>
{
new("23.4.0", supportedFrameworks: new string[] {"net472"}),
new("23.5.1", supportedFrameworks: new string[] {"net472"}),
}
},
{
"TestApplication.OracleMda.Core",
new List<PackageBuildInfo>
{
new("23.4.0"),
new("23.5.1"),
}
},
{
Expand Down
14 changes: 7 additions & 7 deletions test/Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project>
<Import Project="..\Directory.Packages.props" />
<ItemGroup>
<PackageVersion Include="Azure.Storage.Blobs" Version="12.21.2" />
<PackageVersion Include="Elastic.Clients.Elasticsearch" Version="8.15.5" />
<PackageVersion Include="Azure.Storage.Blobs" Version="12.22.0" />
<PackageVersion Include="Elastic.Clients.Elasticsearch" Version="8.15.6" />
<PackageVersion Include="Confluent.Kafka" Version="2.5.3" />
<PackageVersion Include="FluentAssertions" Version="6.12.1" />
<PackageVersion Include="Google.Protobuf" Version="3.28.1" />
Expand All @@ -26,17 +26,17 @@
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageVersion Include="MongoDB.Driver" Version="2.28.0" />
<PackageVersion Include="MongoDB.Driver" Version="2.29.0" />
<PackageVersion Include="NSubstitute" Version="5.1.0" />
<PackageVersion Include="MySqlConnector" Version="2.3.7" />
<PackageVersion Include="MySql.Data" Version="9.0.0" />
<PackageVersion Include="NServiceBus" Version="9.1.1" />
<PackageVersion Include="NServiceBus" Version="9.2.2" />
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
<PackageVersion Include="Npgsql" Version="8.0.3" />
<PackageVersion Include="Npgsql" Version="8.0.4" />
<PackageVersion Include="NuGet.Versioning" Version="6.5.0" />
<PackageVersion Include="OpenTracing" Version="0.12.1" />
<PackageVersion Include="Oracle.ManagedDataAccess" Version="23.4.0" />
<PackageVersion Include="Oracle.ManagedDataAccess.Core" Version="23.4.0" />
<PackageVersion Include="Oracle.ManagedDataAccess" Version="23.5.1" />
<PackageVersion Include="Oracle.ManagedDataAccess.Core" Version="23.5.1" />
<PackageVersion Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.2" />
<PackageVersion Include="Quartz" Version="3.13.0" />
<PackageVersion Include="Quartz.Extensions.DependencyInjection" Version="3.13.0" />
Expand Down
13 changes: 9 additions & 4 deletions test/IntegrationTests/LibraryVersions.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public static TheoryData<string> Azure
theoryData.Add(string.Empty);
#else
theoryData.Add("12.13.0");
theoryData.Add("12.21.2");
theoryData.Add("12.22.0");
#endif
return theoryData;
}
Expand All @@ -37,7 +37,7 @@ public static TheoryData<string> Elasticsearch
#else
theoryData.Add("8.0.0");
theoryData.Add("8.10.0");
theoryData.Add("8.15.5");
theoryData.Add("8.15.6");
#endif
return theoryData;
}
Expand Down Expand Up @@ -162,6 +162,7 @@ public static TheoryData<string> MongoDB
theoryData.Add(string.Empty);
#else
theoryData.Add("2.28.0");
theoryData.Add("2.29.0");
#endif
return theoryData;
}
Expand Down Expand Up @@ -203,7 +204,7 @@ public static TheoryData<string> Npgsql
theoryData.Add(string.Empty);
#else
theoryData.Add("6.0.11");
theoryData.Add("8.0.3");
theoryData.Add("8.0.4");
#endif
return theoryData;
}
Expand All @@ -221,7 +222,7 @@ public static TheoryData<string> NServiceBus
theoryData.Add("9.1.0");
#endif
#if NET8_0
theoryData.Add("9.1.1");
theoryData.Add("9.2.2");
#endif
#endif
return theoryData;
Expand All @@ -238,6 +239,9 @@ public static TheoryData<string> OracleMda
#if NET462
theoryData.Add("23.4.0");
#endif
#if NET462
theoryData.Add("23.5.1");
#endif
#endif
return theoryData;
}
Expand All @@ -251,6 +255,7 @@ public static TheoryData<string> OracleMdaCore
theoryData.Add(string.Empty);
#else
theoryData.Add("23.4.0");
theoryData.Add("23.5.1");
#endif
return theoryData;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ internal static class PackageVersionDefinitions
Versions = new List<PackageVersion>
{
new("23.4.0", supportedTargetFrameworks: new[] { "net472" }, supportedExecutionFrameworks: new[] { "net462" }),
new("*")
new("*", supportedTargetFrameworks: new[] { "net472" }, supportedExecutionFrameworks: new[] { "net462" })
}
},
new()
Expand Down

0 comments on commit 6cff753

Please sign in to comment.