Skip to content

Commit

Permalink
Bump Microsoft.Data.SqlClient to 5.1.4 (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkatufus authored Jan 18, 2024
1 parent 42f3b68 commit d5a611e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/Akka.Persistence.SqlServer.Tests/SqlServerFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public SqlServerFixture()
}

protected string ImageName => "mcr.microsoft.com/mssql/server";
protected string Tag => "2019-latest";
protected string Tag => "2022-latest";

protected string SqlServerImageName => $"{ImageName}:{Tag}";

Expand Down Expand Up @@ -155,7 +155,8 @@ await Client.Containers.CreateContainerAsync(new CreateContainerParameters
["Server"] = $"localhost,{sqlServerHostPort}",
["Database"] = "akka_persistence_tests",
["User Id"] = "sa",
["Password"] = "l0l!Th1sIsOpenSource"
["Password"] = "l0l!Th1sIsOpenSource",
["TrustServerCertificate"] = "true",
};

ConnectionString = connectionString.ToString();
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageVersion Include="Akka.Persistence.Query.Sql" Version="$(AkkaVersion)" />
<PackageVersion Include="Akka.Hosting" Version="$(AkkaHostingVersion)" />
<PackageVersion Include="Akka.Persistence.Hosting" Version="$(AkkaHostingVersion)" />
<PackageVersion Include="Microsoft.Data.SqlClient" Version="3.0.1" />
<PackageVersion Include="Microsoft.Data.SqlClient" Version="5.1.4" />
</ItemGroup>
<!-- Test dependencies -->
<ItemGroup>
Expand Down

0 comments on commit d5a611e

Please sign in to comment.