AutoMapper v16.0.0

Released: Dec 3, 2025

v16.0.0 での更新項目

機能

  • Added support for .NET 10 to the AutoMapper project by updating target frameworks, package versions, and CI/CD workflows. The changes ensure the library can be built and tested against the latest .NET version.
    • Added net10.0 as a target framework across test and application projects, and as an additional multi-target in the main AutoMapper library.
    • Updated C# language version from 13.0 to 14.0 to align with .NET 10.
    • Updated Microsoft.Extensions.* and Microsoft.EntityFrameworkCore packages to version 10.0.0.
    • Added .NET 10.0.x SDK to GitHub Actions CI and release workflows.

不具合の修正

  • Reorganized the GitHub Actions workflow structure to improve job execution order and standardize indentation for YAML files. The changes swap the order of the build and build-windows jobs so that the Linux build runs first, followed by the Windows build which now depends on it. Additionally, the build process has been standardized to use ./Build.ps1 across both workflows.
    • Reordered jobs in both CI and release workflows to run Linux builds first, with Windows builds depending on them.
    • Standardized build commands to use ./Build.ps1 consistently across all jobs.
    • Added YAML indentation configuration to .editorconfig.