Releases: bvdcode/EasyExtensions
Releases · bvdcode/EasyExtensions
Release 3.0.32
Update Android Tablet UA test to expect generic device name Changed the expected result for the Android Tablet user agent test case to "Android Tablet" instead of "Android Tablet (rv:102.0)", reflecting a move to a more generic device identification without version details.
Release 3.0.31
Update project description for MediatR fork details Clarified the project description in EasyExtensions.Mediator.csproj to specify that the library is a fork of MediatR based on v12.5.0 under the MIT license, providing more accurate information about its origin and licensing.
Release 3.0.30
Update DI package and suppress CA1873 in migration logging Suppress CA1873 warning for migration logging in DbContextExtensions.cs by adding pragma directives. Update Microsoft.Extensions.DependencyInjection.Abstractions package reference to version 10.0.2 in EasyExtensions.Mediator.csproj.
Release 3.0.29
Update XML docs to use discard param names and clarify types Replaced unused parameter names with discards (`_`, `__`) in `Unit` and updated XML docs to refer generically to parameters. Also revised `Mediator` documentation to use non-generic type references for clarity.
Release 3.0.28
Merge branch 'main' of https://github.com/bvdcode/EasyExtensions
Release 3.0.27
Update NuGet package versions across all projects Upgraded Microsoft.SourceLink.GitHub to 10.0.102 in all .csproj files. Updated various Microsoft and related dependencies (e.g., AspNetCore, EntityFrameworkCore, System.Drawing.Common) to 10.0.2 or newer. Also bumped NUnit3TestAdapter to 6.1.0 in test projects. No code changes; only dependency version updates for improved compatibility and security.
Release 3.0.26
Update license headers across the codebase to SPDX format and add cop…
Release 3.0.25
Merge branch 'main' of https://github.com/bvdcode/EasyExtensions
Release 3.0.24
Add EnumExtensions with ToNiceString method Introduced a static EnumExtensions class in the EasyExtensions.Extensions namespace. Added the ToNiceString extension method for Enum types to convert enum values into user-friendly strings by inserting spaces before uppercase letters. Included XML documentation for clarity and usage guidance.
Release 3.0.23
Move BasePostgresUser; add BaseUserDto class - Relocated BasePostgresUser from BaseUser.cs to BasePostgresUser.cs. - Removed BaseUser.cs. - Introduced BaseUserDto in BaseUserDto.cs for user API data transfer.