Author SHA1 Message Date
codex b3aeef24eb Merge PR #34: update setup-dotnet to v6
PR and Push Build/Test / build-and-test (push) Failing after 16s
Attended CI control-plane merge after exact-head success and local combined validation; final main run will be monitored.
2026-08-05 13:03:50 +02:00
codex c91d956beb Merge PR #38: update NCalcSync to 7.0.2
PR and Push Build/Test / build-and-test (push) Failing after 16s
Attended major-version merge after API migration review and combined current-main workflow-expression test validation.
2026-08-05 13:03:39 +02:00
codex 4c858170d9 Merge PR #36: update Microsoft Agent Framework OpenAI
PR and Push Build/Test / build-and-test (push) Failing after 16s
Attended merge after upstream compatibility review and combined current-main validation.
2026-08-05 13:03:30 +02:00
codex 0b6643d87f Merge PR #37: update Microsoft Speech to 1.51.1
PR and Push Build/Test / build-and-test (push) Failing after 4m10s
Attended merge after fixing MAS model asset discovery and validating both targets plus 440 tests.
2026-08-05 13:03:18 +02:00
codex 44ce419c49 fix: copy available MAS model assets
PR and Push Build/Test / build-and-test (push) Successful in 11m38s
PR and Push Build/Test / build-and-test (pull_request) Failing after 11m41s
2026-08-05 13:01:50 +02:00
codex a087ff0cbf Merge remote-tracking branch 'origin/main' into renovate/microsoftspeechversion 2026-08-05 13:00:56 +02:00
codex 8dc1b70f8a test: stabilize summary retry background wait
PR and Push Build/Test / build-and-test (push) Successful in 11m32s
2026-08-05 12:35:00 +02:00
codex aaee123b9a merge: attach calendar metadata to active meetings
PR and Push Build/Test / build-and-test (push) Failing after 18m6s
2026-08-05 11:59:35 +02:00
renovate-bot e886fac311 Update dependency NCalcSync to v7
PR and Push Build/Test / build-and-test (push) Failing after 16s
PR and Push Build/Test / build-and-test (pull_request) Failing after 16s
2026-08-05 02:40:11 +00:00
renovate-bot e35ccf661f Update dependency Microsoft.Agents.AI.OpenAI to 1.17.0
PR and Push Build/Test / build-and-test (push) Failing after 3m0s
PR and Push Build/Test / build-and-test (pull_request) Failing after 15s
2026-08-05 02:39:47 +00:00
renovate-bot 20eed38477 Update actions/setup-dotnet action to v6
PR and Push Build/Test / build-and-test (push) Successful in 10m25s
PR and Push Build/Test / build-and-test (pull_request) Successful in 10m46s
2026-08-04 02:39:34 +00:00
renovate-bot ada4a40f62 Update MicrosoftSpeechVersion to 1.51.1
PR and Push Build/Test / build-and-test (push) Successful in 10m0s
PR and Push Build/Test / build-and-test (pull_request) Successful in 11m11s
2026-08-04 02:39:30 +00:00
3 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ jobs:
uses: actions/checkout@v7 uses: actions/checkout@v7
- name: Setup .NET - name: Setup .NET
uses: actions/setup-dotnet@v5 uses: actions/setup-dotnet@v6
with: with:
dotnet-version: "10.0.x" dotnet-version: "10.0.x"
@@ -189,7 +189,9 @@ public sealed class MeetingSummaryRetryRunnerTests
return; return;
} }
await stateChanged.Task.WaitAsync(TimeSpan.FromMilliseconds(100)); await Task.WhenAny(
stateChanged.Task,
Task.Delay(TimeSpan.FromMilliseconds(100)));
} }
throw new TimeoutException($"Expected {count} state changes."); throw new TimeoutException($"Expected {count} state changes.");
+4 -5
View File
@@ -5,7 +5,7 @@
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<PreserveCompilationContext>true</PreserveCompilationContext> <PreserveCompilationContext>true</PreserveCompilationContext>
<MicrosoftSpeechVersion>1.50.0</MicrosoftSpeechVersion> <MicrosoftSpeechVersion>1.51.1</MicrosoftSpeechVersion>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'"> <PropertyGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">
@@ -20,13 +20,13 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.Agents.AI.OpenAI" Version="1.13.0" /> <PackageReference Include="Microsoft.Agents.AI.OpenAI" Version="1.17.0" />
<PackageReference Include="DiffPlex" Version="1.9.0" /> <PackageReference Include="DiffPlex" Version="1.9.0" />
<PackageReference Include="Microsoft.CognitiveServices.Speech" Version="$(MicrosoftSpeechVersion)" /> <PackageReference Include="Microsoft.CognitiveServices.Speech" Version="$(MicrosoftSpeechVersion)" />
<PackageReference Include="Microsoft.CognitiveServices.Speech.Extension.MAS" Version="$(MicrosoftSpeechVersion)" ExcludeAssets="build" /> <PackageReference Include="Microsoft.CognitiveServices.Speech.Extension.MAS" Version="$(MicrosoftSpeechVersion)" ExcludeAssets="build" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.10" /> <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.10" />
<PackageReference Include="NAudio" Version="2.3.0" /> <PackageReference Include="NAudio" Version="2.3.0" />
<PackageReference Include="NCalcSync" Version="6.4.0" /> <PackageReference Include="NCalcSync" Version="7.0.2" />
<PackageReference Include="RazorLight" Version="2.3.1" /> <PackageReference Include="RazorLight" Version="2.3.1" />
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="3.0.5" /> <PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="3.0.5" />
<PackageReference Include="System.Drawing.Common" Version="10.0.10" /> <PackageReference Include="System.Drawing.Common" Version="10.0.10" />
@@ -50,8 +50,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'"> <ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">
<None Include="$(NuGetPackageRoot)microsoft.cognitiveservices.speech.extension.mas\$(MicrosoftSpeechVersion)\contentFiles\any\any\models\aec_v1.fpie" Link="runtimes\win-x64\native\MASmodels\aec_v1.fpie" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" /> <None Include="$(NuGetPackageRoot)microsoft.cognitiveservices.speech.extension.mas\$(MicrosoftSpeechVersion)\contentFiles\any\any\models\*.fpie" Link="runtimes\win-x64\native\MASmodels\%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
<None Include="$(NuGetPackageRoot)microsoft.cognitiveservices.speech.extension.mas\$(MicrosoftSpeechVersion)\contentFiles\any\any\models\pns_avg4.fpie" Link="runtimes\win-x64\native\MASmodels\pns_avg4.fpie" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>