Skip to content

Releases: bvdcode/EasyExtensions

Release 3.0.32

22 Jan 20:22

Choose a tag to compare

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

22 Jan 01:02

Choose a tag to compare

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

21 Jan 18:49

Choose a tag to compare

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

21 Jan 18:37

Choose a tag to compare

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

19 Jan 23:02

Choose a tag to compare

Merge branch 'main' of https://github.com/bvdcode/EasyExtensions

Release 3.0.27

19 Jan 01:53

Choose a tag to compare

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

19 Jan 01:16

Choose a tag to compare

Update license headers across the codebase to SPDX format and add cop…

Release 3.0.25

18 Jan 21:54

Choose a tag to compare

Merge branch 'main' of https://github.com/bvdcode/EasyExtensions

Release 3.0.24

15 Jan 22:16

Choose a tag to compare

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

15 Jan 17:12

Choose a tag to compare

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.