Skip to content

Commit

Permalink
3.2.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
karamem0 committed Jan 17, 2025
1 parent 9807497 commit 247415d
Show file tree
Hide file tree
Showing 9 changed files with 1,118 additions and 944 deletions.
2,001 changes: 1,088 additions & 913 deletions source/client/package-lock.json

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions source/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,47 +16,47 @@
"dependencies": {
"@automapper/pojos": "^8.8.1",
"@emotion/react": "^11.14.0",
"@fluentui/react-components": "^9.56.8",
"@fluentui/react-components": "^9.57.0",
"@microsoft/applicationinsights-react-js": "^17.3.4",
"@microsoft/applicationinsights-web": "^3.3.4",
"@microsoft/teams-js": "2.32.0-beta.3",
"@microsoft/teams-js": "2.33.0",
"axios": "^1.7.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"react-intl": "^7.0.4",
"react-router-dom": "^7.1.1",
"react-intl": "^7.1.1",
"react-router-dom": "^7.1.2",
"react-use": "^17.6.0",
"ress": "^5.0.2"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.13.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@formatjs/cli": "^6.3.14",
"@stylistic/eslint-plugin": "^2.12.1",
"@eslint/js": "^9.18.0",
"@formatjs/cli": "^6.4.0",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.3.4",
"babel-plugin-formatjs": "^10.5.29",
"eslint": "^9.17.0",
"babel-plugin-formatjs": "^10.5.31",
"eslint": "^9.18.0",
"eslint-plugin-hooks": "^0.4.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-sonarjs": "^3.0.1",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"postcss-styled-syntax": "^0.7.0",
"stylelint": "^16.12.0",
"postcss": "^8.5.1",
"postcss-styled-syntax": "^0.7.1",
"stylelint": "^16.13.2",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-standard-scss": "^14.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5"
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.7"
},
"volta": {
"node": "20.18.0"
Expand Down
9 changes: 6 additions & 3 deletions source/server/Karamem0.Commistant.Bot/Bots/ActivityBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ ILogger<ActivityBot> logger

private readonly ILogger logger = logger;

public override async Task OnTurnAsync(ITurnContext turnContext, CancellationToken cancellationToken = default)
{
await base.OnTurnAsync(turnContext, cancellationToken);
await this.conversationState.SaveChangesAsync(turnContext, cancellationToken: cancellationToken);
}

protected override async Task OnMembersAddedAsync(
IList<ChannelAccount> membersAdded,
ITurnContext<IConversationUpdateActivity> turnContext,
Expand Down Expand Up @@ -156,7 +162,6 @@ protected override async Task OnMessageActivityAsync(
cancellationToken: cancellationToken
);
}
await this.conversationState.SaveChangesAsync(turnContext, cancellationToken: cancellationToken);
}

protected override async Task OnTeamsMeetingStartAsync(
Expand All @@ -175,7 +180,6 @@ CancellationToken cancellationToken
property.ScheduledStartTime = meetingInfo.Details.ScheduledStartTime;
property.ScheduledEndTime = meetingInfo.Details.ScheduledEndTime;
await propertyAccessor.SetAsync(turnContext, property, cancellationToken: cancellationToken);
await this.conversationState.SaveChangesAsync(turnContext, cancellationToken: cancellationToken);
}

protected override async Task OnTeamsMeetingEndAsync(
Expand All @@ -193,7 +197,6 @@ CancellationToken cancellationToken
property.ScheduledStartTime = null;
property.ScheduledEndTime = null;
await propertyAccessor.SetAsync(turnContext, property, cancellationToken: cancellationToken);
await this.conversationState.SaveChangesAsync(turnContext, cancellationToken: cancellationToken);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
<PackageReference Include="AdaptiveCards" Version="3.1.0" />
<PackageReference Include="AutoMapper" Version="13.0.1" />
<PackageReference Include="Azure.AI.OpenAI" Version="2.1.0" />
<PackageReference Include="Azure.Identity" Version="1.13.1" />
<PackageReference Include="Azure.Identity" Version="1.13.2" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.11" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.12" />
<PackageReference Include="Microsoft.Bot.Builder.Azure.Blobs" Version="4.22.9" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.9" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.9" />
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="9.0.1" />
<PackageReference Include="QRCoder" Version="1.6.0" />
</ItemGroup>

Expand Down
4 changes: 0 additions & 4 deletions source/server/Karamem0.Commistant.Bot/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
// https://github.com/karamem0/commistant/blob/main/LICENSE
//

#pragma warning disable CA1852

using Karamem0.Commistant;
using Karamem0.Commistant.Mappings;
using Microsoft.AspNetCore.Builder;
Expand Down Expand Up @@ -47,5 +45,3 @@
_ = app.MapControllers();

await app.RunAsync();

#pragma warning restore CA1852
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<PackageReference Include="Azure.Storage.Blobs" Version="12.23.0" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.9" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.9" />
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="9.0.1" />
<PackageReference Include="QRCoder" Version="1.6.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<ItemGroup>
<PackageReference Include="AdaptiveCards" Version="3.1.0" />
<PackageReference Include="Azure.Identity" Version="1.13.1" />
<PackageReference Include="Azure.Identity" Version="1.13.2" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.23.0" />
<PackageReference Include="Microsoft.ApplicationInsights.WorkerService" Version="2.22.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="2.0.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
<PackageReference Include="Microsoft.Bot.Schema" Version="4.22.9" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="NUnit" Version="4.3.1" />
<PackageReference Include="NUnit" Version="4.3.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Include="NUnit.Analyzers" Version="4.5.0">
<PackageReference Include="NUnit.Analyzers" Version="4.6.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.13.1" />
<PackageReference Include="Azure.Identity" Version="1.13.2" />
<PackageReference Include="AutoMapper" Version="13.0.1" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.23.0" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
Expand Down

0 comments on commit 247415d

Please sign in to comment.