Skip to content

Commit

Permalink
Merge pull request #81 from Encamina/@rliberoff/updated_dependencies
Browse files Browse the repository at this point in the history
Updated dependencies:
  • Loading branch information
rliberoff authored Feb 28, 2024
2 parents f12d534 + 2d1d92c commit 09fff58
Show file tree
Hide file tree
Showing 13 changed files with 48 additions and 25 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,28 @@ Previous classification is not required if changes are simple or all belong to t
### Breaking Changes
In the `QuestionAnsweringFromMemoryQuery` function of the `QuestionAnsweringPlugin`, null is no longer returned when there are no relevant memory results. Instead, the execution flow continues, prompting a message with an empty context information, ultimately resulting in a response such as "I don't know" or a similar message.

### Major Changes
- Updated dependencies:
- Updated `Azure.Core` from `1.37.0` to `1.38.0`.
- Updated `Microsoft.Bot.Builder.Azure` from `4.22.1` to `4.22.2`.
- Updated `Microsoft.Bot.Builder.Azure.Blobs` from `4.22.1` to `4.22.2`.
- Updated `Microsoft.Bot.Builder.Dialogs` from `4.22.1` to `4.22.2`.
- Updated `Microsoft.Bot.Builder.Integration.ApplicationInsights.Core` from `4.22.1` to `4.22.2`.
- Updated `MMicrosoft.Bot.Builder.Integration.AspNet.Core` from `4.22.1` to `4.22.2`.
- Updated `Microsoft.SemanticKernel.Abstractions` from `1.4.0` to `1.5.0`.
- Updated `Microsoft.SemanticKernel.Connectors.AzureAISearch` from `1.4.0-alpha` to `1.5.0-alpha`. This does fix the [Issue 72](https://github.com/Encamina/enmarcha/issues/72).
- Updated `Microsoft.SemanticKernel.Connectors.OpenAI` from `1.4.0` to `1.5.0`.
- Updated `Microsoft.SemanticKernel.Connectors.Qdrant` from `1.4.0-alpha` to `1.5.0-alpha`.
- Updated `Microsoft.SemanticKernel.Core` from `1.4.0` to `1.5.0`.
- Updated `Microsoft.SemanticKernel.Plugins.Document` from `1.4.0-alpha` to `1.5.0-alpha`.
- Updated `Microsoft.SemanticKernel.Plugins.Memory` from `1.4.0-alpha` to `1.5.0-alpha`.
- Updated `SharpToken` from `1.2.15` to `1.2.17`.
- Updated `coverlet.collector` from `6.0.0` to `6.0.1`.
- Updated `xunit` from `2.6.6` to `2.7.0`.
- Updated `xunit.analyzers` from `1.10.0` to `1.11.0`.
- Updated `xunit.extensibility.core` from `2.6.6` to `2.7.0`.
- Updated `xunit.runner.visualstudio` from `2.5.6` to `2.5.7`.

### Minor Changes
- Changes in the prompt of `QuestionAnsweringPlugin` to enhance language detection in the response.

Expand Down
3 changes: 2 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>8.1.5-preview-01</VersionPrefix>
<VersionPrefix>8.1.5</VersionPrefix>
<VersionSuffix>preview-02</VersionSuffix>
</PropertyGroup>

<!--
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Memory" Version="1.4.0-alpha" />
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Memory" Version="1.5.0-alpha" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<ItemGroup>
<PackageReference Include="Azure.AI.Language.Conversations" Version="1.1.0" />
<PackageReference Include="Azure.Core" Version="1.37.0" />
<PackageReference Include="Azure.Core" Version="1.38.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
Expand All @@ -23,6 +23,6 @@
</ItemGroup>

<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.1" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.1" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.2" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.2" />
</ItemGroup>

<ItemGroup>
Expand Down
10 changes: 5 additions & 5 deletions src/Encamina.Enmarcha.Bot/Encamina.Enmarcha.Bot.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
<TreatAsUsed>true</TreatAsUsed>
<!-- This project needs this package reference to fix warning NU1701 -->
</PackageReference>
<PackageReference Include="Microsoft.Bot.Builder.Azure" Version="4.22.1" />
<PackageReference Include="Microsoft.Bot.Builder.Azure.Blobs" Version="4.22.1" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.1" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.ApplicationInsights.Core" Version="4.22.1" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.1" />
<PackageReference Include="Microsoft.Bot.Builder.Azure" Version="4.22.2" />
<PackageReference Include="Microsoft.Bot.Builder.Azure.Blobs" Version="4.22.2" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.2" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.ApplicationInsights.Core" Version="4.22.2" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.2" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SemanticKernel.Connectors.OpenAI" Version="1.4.0" PrivateAssets="none" />
<PackageReference Include="Microsoft.SemanticKernel.Core" Version="1.4.0" />
<PackageReference Include="SharpToken" Version="1.2.15" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.OpenAI" Version="1.5.0" PrivateAssets="none" />
<PackageReference Include="Microsoft.SemanticKernel.Core" Version="1.5.0" />
<PackageReference Include="SharpToken" Version="1.2.17" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Document" Version="1.4.0-alpha" />
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Document" Version="1.5.0-alpha" />
<PackageReference Include="PdfPig" Version="0.1.8" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.AzureAISearch" Version="1.4.0-alpha" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.Qdrant" Version="1.4.0-alpha" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.AzureAISearch" Version="1.5.0-alpha" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.Qdrant" Version="1.5.0-alpha" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.4.0" />
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.5.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.4.0" />
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.5.0" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.4.0" />
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.5.0" />
</ItemGroup>

<ItemGroup>
Expand Down
10 changes: 5 additions & 5 deletions tst/Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PackageReference Include="coverlet.collector" Version="6.0.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="Moq" Version="4.20.70" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.analyzers" Version="1.10.0" />
<PackageReference Include="xunit.extensibility.core" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PackageReference Include="xunit" Version="2.7.0" />
<PackageReference Include="xunit.analyzers" Version="1.11.0" />
<PackageReference Include="xunit.extensibility.core" Version="2.7.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down

0 comments on commit 09fff58

Please sign in to comment.