Dev#2422
Merged
Merged
Conversation
- Bump TFM to net10.0 across solution - Upgrade ABP Framework to 10.3.0 - Migrate AutoMapper profiles to Mapperly across all modules - Fix Microsoft.OpenApi 2.x / Swashbuckle 10 breaking changes - Skip owned entity types in extra-properties model loop (fixes IdentityPasskeyData OwnsOne conflict in ABP 10.3) - Fix CommentDto polymorphic mapping for Mapperly (CommentBase dispatcher) - Make ScoresheetSectionDto setters public (Mapperly cannot write private setters) - Add EF Core host migration Abp10_3_Upgrade (UserPasskeys, UserPasswordHistories, AuditLogExcelFiles, ResourcePermissionGrants, etc.)
# Conflicts: # applications/Unity.GrantManager/modules/Unity.Flex/src/Unity.Flex.Application/FlexApplicationAutoMapperProfile.cs
Conflict resolutions: - Application/Web csproj: keep .NET 10 + ABP 10.3 + Mapperly versions; merge dev's pkg additions (Newtonsoft, NPOI, PdfPig) - GrantManagerApplicationAutoMapperProfile.cs: re-deleted (Mapperly migration); ported new CreateMap<AIGenerationRequest, AIGenerationRequestDto>() to GrantManagerApplicationMapperlyProfile.cs
RMG020 (Mapperly unmapped source): add assembly-level [MapperDefaults(RequiredMappingStrategy = RequiredMappingStrategy.Target)] to 15 Mapperly-bearing projects via MapperlyDefaults.cs. Mirrors AutoMapper's old MemberList.None default so ABP audit/tenancy/Id source members on entities don't emit warnings on every Entity->DTO mapper. NU1510 (unused PackageReference): remove System.Text.Json (and a few stragglers: Microsoft.Extensions.Caching.Memory/Options, System.Formats.Asn1, System.Text.RegularExpressions) from 31 projects. .NET 10 SDK ships these as framework references, so explicit ABP 9 pinning is no longer needed.
AmazonS3Client internally owns an HttpClient, which maintains a pool of TCP connections to S3. Creating a new instance per request means a new connection pool per request — those pools are expensive to spin up and are never explicitly cleaned up when the class doesn't implement IDisposable.
…-upgrade # Conflicts: # applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantManagerApplicationAutoMapperProfile.cs
Feature/ab#32683 net10 upgrade
…ols-panel AB#32452 remove prompt tools panel
…Client-Usage AB#32684: Register AmazonS3Client as singleton and reuse it
Add Sequential/Parallel/Batch execution modes for the two multi-step AI flows: - AttachmentSummaryService.GenerateAndSaveAsync(IEnumerable<Guid>) - ApplicationScoringService.RegenerateAndSaveAsync (per scoresheet section) Mode is resolved from configuration per flow: Azure:AIExecutionModes:AttachmentSummaries Azure:AIExecutionModes:Scoresheet Azure:AIExecutionModes:BatchSize (default 5) Default is Sequential, preserving current behavior. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…tion-modes-for-multi-step-ai-flows Feature/ab#32310 support ai execution modes for multi step ai flows
…lling-dedupe-and-locking Feature/ab#32451 ai generation polling dedupe and locking
|
1 similar comment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



No description provided.