Skip to content

Commit 5ce1686

Browse files
glahayedependabot[bot]TaoChenOSUmomunoMollie Munoz
authored
Update NuGet packages (#1180)
Update NuGet packages --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tao Chen <[email protected]> Co-authored-by: Mollie Munoz <[email protected]> Co-authored-by: Mollie Munoz <[email protected]> Co-authored-by: Teresa Hoang <[email protected]> Co-authored-by: Gina Triolo <[email protected]> Co-authored-by: Chris <[email protected]> Co-authored-by: Desmond Howard <[email protected]> Co-authored-by: Yingting Huang <[email protected]> Co-authored-by: Jon Gallant <[email protected]> Co-authored-by: Eamon Keane <[email protected]> Co-authored-by: Marcelo Jose <[email protected]> Co-authored-by: Marcelo Jose <[email protected]> Co-authored-by: Ahmad Adel <[email protected]> Co-authored-by: teresaqhoang <[email protected]> Co-authored-by: Hüseyin ABANOZ <[email protected]> Co-authored-by: Ben Thomas <[email protected]> Co-authored-by: Ben Thomas <[email protected]> Co-authored-by: Fabian Alves <[email protected]> Co-authored-by: Fabian Alves <[email protected]> Co-authored-by: Tao Chen <[email protected]> Co-authored-by: David Schinteie <[email protected]> Co-authored-by: william-daconceicao <[email protected]> Co-authored-by: DA CONCEICAO <[email protected]> Co-authored-by: Dikarabo-Molele <[email protected]> Co-authored-by: Shaharukh mithagari <[email protected]>
1 parent ad6bcf6 commit 5ce1686

File tree

5 files changed

+37
-20
lines changed

5 files changed

+37
-20
lines changed

integration-tests/ChatCopilotIntegrationTests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
1313
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
1414
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="8.0.0" />
15-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
16-
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="8.0.0" />
17-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
18-
<PackageReference Include="xunit" Version="2.9.0" />
15+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.1" />
16+
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="8.0.1" />
17+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
18+
<PackageReference Include="xunit" Version="2.9.2" />
1919
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2121
<PrivateAssets>all</PrivateAssets>

plugins/web-searcher/PluginEndpoint.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public async Task<HttpResponseData> WebSearch([HttpTrigger(AuthorizationLevel.Fu
116116
return await this.CreateBadRequestResponseAsync(req, "Empty query.");
117117
}
118118

119-
var numResults = queries.ContainsKey("NumResults") ? int.Parse(queries["NumResults"]) : 0;
119+
var numResults = queries.ContainsKey("NumResults") ? int.Parse(queries["NumResults"]!) : 0;
120120
if (numResults <= 0)
121121
{
122122
return await this.CreateBadRequestResponseAsync(req, "Invalid number of results.");

tools/importdocument/ImportDocument.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

1818
<ItemGroup>
1919
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.2" />
20-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
21-
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
20+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.1" />
21+
<PackageReference Include="Microsoft.Identity.Client" Version="4.65.0" />
2222
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
2323
</ItemGroup>
2424

webapi/CopilotChatWebApi.csproj

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<Nullable>enable</Nullable>
88
<ImplicitUsings>disable</ImplicitUsings>
99
<UserSecretsId>5ee045b0-aea3-4f08-8d31-32d1a6f8fed0</UserSecretsId>
10+
<AnalysisMode>All</AnalysisMode>
1011
<NoWarn>SKEXP0003,SKEXP0011,SKEXP0021,SKEXP0026,SKEXP0042,SKEXP0050,SKEXP0052,SKEXP0053,SKEXP0060</NoWarn>
1112
</PropertyGroup>
1213

@@ -20,7 +21,7 @@
2021
<ItemGroup>
2122
<PackageReference Include="Azure.Extensions.AspNetCore.Configuration.Secrets" Version="1.3.2" />
2223
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
23-
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.43.1" />
24+
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.44.0" />
2425
<PackageReference Include="Microsoft.Identity.Web" Version="2.20.0" />
2526
<PackageReference Include="Microsoft.KernelMemory.Abstractions" Version="0.66.240709.1" />
2627
<PackageReference Include="Microsoft.SemanticKernel" Version="1.15.1" />
@@ -33,7 +34,7 @@
3334
<PackageReference Include="Microsoft.SemanticKernel.Plugins.OpenApi" Version="1.5.0-alpha" />
3435
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Web" Version="1.5.0-alpha" />
3536
<PackageReference Include="SharpToken" Version="2.0.3" />
36-
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.8.0" />
37+
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.8.1" />
3738
</ItemGroup>
3839

3940
<ItemGroup>
@@ -46,7 +47,7 @@
4647
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4748
</PackageReference>
4849

49-
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4">
50+
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0">
5051
<PrivateAssets>all</PrivateAssets>
5152
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
5253
</PackageReference>
@@ -56,7 +57,7 @@
5657
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
5758
</PackageReference>
5859

59-
<PackageReference Include="Roslynator.Analyzers" Version="4.12.7">
60+
<PackageReference Include="Roslynator.Analyzers" Version="4.12.8">
6061
<PrivateAssets>all</PrivateAssets>
6162
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
6263
</PackageReference>
@@ -66,7 +67,7 @@
6667
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
6768
</PackageReference>
6869

69-
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.12.5">
70+
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.12.8">
7071
<PrivateAssets>all</PrivateAssets>
7172
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
7273
</PackageReference>
@@ -82,14 +83,6 @@
8283
<None Update="data\eng.traineddata">
8384
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
8485
</None>
85-
<!--
86-
<Content Include="Plugins\NativePlugins\*.*">
87-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
88-
</Content>
89-
<Content Include="Plugins\SemanticPlugins\*.*">
90-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
91-
</Content>
92-
-->
9386
</ItemGroup>
9487

9588
<ItemGroup>

webapp/yarn.lock

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4040,6 +4040,30 @@ array.prototype.findlastindex@^1.2.3:
40404040
es-object-atoms "^1.0.0"
40414041
es-shim-unscopables "^1.0.2"
40424042

4043+
array.prototype.flat@^1.3.1, array.prototype.flat@^1.3.2:
4044+
version "1.3.2"
4045+
resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18"
4046+
integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==
4047+
dependencies:
4048+
call-bind "^1.0.7"
4049+
define-properties "^1.2.1"
4050+
es-abstract "^1.23.2"
4051+
es-errors "^1.3.0"
4052+
es-object-atoms "^1.0.0"
4053+
es-shim-unscopables "^1.0.2"
4054+
4055+
array.prototype.findlastindex@^1.2.3:
4056+
version "1.2.5"
4057+
resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz#8c35a755c72908719453f87145ca011e39334d0d"
4058+
integrity sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==
4059+
dependencies:
4060+
call-bind "^1.0.7"
4061+
define-properties "^1.2.1"
4062+
es-abstract "^1.23.2"
4063+
es-errors "^1.3.0"
4064+
es-object-atoms "^1.0.0"
4065+
es-shim-unscopables "^1.0.2"
4066+
40434067
array.prototype.flat@^1.3.1, array.prototype.flat@^1.3.2:
40444068
version "1.3.2"
40454069
resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18"

0 commit comments

Comments
 (0)