Skip to content
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

Package updates #3679

Merged
merged 9 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
<PropertyGroup>
<MicrosoftNETTestSdkVersion>17.4.0</MicrosoftNETTestSdkVersion>
<NewtonsoftJsonVersion>13.0.3</NewtonsoftJsonVersion>
<MicrosoftCodeAnalysisCommonVersion>4.9.2</MicrosoftCodeAnalysisCommonVersion>
<SystemDrawingCommonVersion>8.0.6</SystemDrawingCommonVersion>
<MicrosoftCodeAnalysisCommonVersion>4.11.0</MicrosoftCodeAnalysisCommonVersion>
<SystemDrawingCommonVersion>8.0.8</SystemDrawingCommonVersion>
<SystemReactiveVersion>6.0.0</SystemReactiveVersion>
<SystemSecurityCryptographyXmlVersion>8.0.1</SystemSecurityCryptographyXmlVersion>
<SystemSecurityCryptographyPkcsVersion>8.0.0</SystemSecurityCryptographyPkcsVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="$(NewtonsoftJsonVersion)" />
<PackageReference Include="Microsoft.Azure.Kusto.Data" Version="12.2.1" />
<PackageReference Include="Microsoft.Azure.Kusto.Data" Version="12.2.5" />
<PackageReference Include="StreamJsonRpc" Version="2.17.8" />
<PackageReference Include="System.Drawing.Common" Version="$(SystemDrawingCommonVersion)" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<PackageReference Include="System.IO.Pipelines" Version="8.0.0" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="$(SystemSecurityCryptographyXmlVersion)" />
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="$(SystemSecurityCryptographyPkcsVersion)" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.4.3" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.4.5" />
</ItemGroup>

<!-- PowerShell Module Package References -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.4" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.8" />
<PackageReference Include="Pocket.Disposable" Version="1.2.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ private async Task InitializeDbContextAsync(string kernelName, MsSqlKernelConnec

// FIX: (InitializeDbContextAsync) package versions to make them reference the ones that are already referenced at build time
var submission1 = $$"""
#r "nuget: Microsoft.Data.SqlClient, 5.2.0"
#r "nuget: Microsoft.EntityFrameworkCore.Design, 8.0.6"
#r "nuget: Microsoft.EntityFrameworkCore.SqlServer, 8.0.6"
#r "nuget: Microsoft.Data.SqlClient, 5.2.2"
#r "nuget: Microsoft.EntityFrameworkCore.Design, 8.0.8"
#r "nuget: Microsoft.EntityFrameworkCore.SqlServer, 8.0.8"
#r "nuget: Humanizer.Core, 2.14.1"
#r "nuget: Humanizer, 2.14.1"
#r "nuget: Microsoft.Identity.Client, 4.61.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="$(SystemDrawingCommonVersion)" />
<PackageReference Include="Newtonsoft.Json" Version="$(NewtonsoftJsonVersion)" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.0" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.2" />
<PackageReference Include="Humanizer" Version="2.14.1" />
<PackageReference Include="Azure.Identity" Version="1.11.4" />
<PackageReference Include="Azure.Identity" Version="1.12.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.6">
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -869,6 +869,8 @@ open System.Numerics.Tensors

var result = await SubmitCode(kernel, source);

result.Events.Should().NotContainErrors();

result.Events
.Should()
.ContainSingle<ReturnValueProduced>()
Expand Down