Skip to content

Releases: bvdcode/EasyExtensions

Release 3.0.42

10 Feb 19:59

Choose a tag to compare

Update NuGet packages and improve UserAgent device parsing

Updated Microsoft.* and Sentry.AspNetCore package versions across projects. Added a ToString() override to UserAgentDeviceInfo for better string representation. Refactored TryParseDesktop in UserAgentHelpers for clarity and maintainability.

Release 3.0.41

27 Jan 19:43

Choose a tag to compare

Add support for custom token claims in BaseAuthController

Introduce virtual GetAdditionalTokenClaims method to allow derived controllers to add custom claims to authentication tokens. Update CreateAccessToken to include these claims in JWT generation. Add XML documentation for the new method.

Release 3.0.40

27 Jan 17:50

Choose a tag to compare

Refactor and extend web API exception classes

- Replace AccessException with AccessDeniedException, supporting custom messages and generic type-based usage.
- Add generic versions for BadRequest, Duplicate, EntityNotFound, and Unauthorized exceptions.
- Allow custom error messages for all exception types.
- Improve XML documentation for clarity and consistency.
- Enhances flexibility and type safety for API error handling.

Release 3.0.39

26 Jan 16:46

Choose a tag to compare

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

Release 3.0.38

25 Jan 00:52

Choose a tag to compare

Refactor test result parsing: move to test_parser.py and remove chart…

Release 3.0.37

25 Jan 00:20

Choose a tag to compare

Refactor service registration and add hex conversion

Refactored service registration logic in ServiceRegistrar.cs for improved clarity and maintainability. Added ToHexStringLower extension to ByteArrayExtensions.cs for efficient lowercase hex conversion. Updated StreamExtensions.cs to use the new method for SHA-256 and SHA-512 hash outputs and enhanced XML docs. Removed redundant tests from StringHelperTests.cs.

Release 3.0.36

24 Jan 22:23

Choose a tag to compare

Refactor test result parsing; minor C# test cleanups

Refactor Python test result parsing into charts_utils.py for reuse across chart scripts, removing duplication. Update C# tests for clarity in array size calculations and modernize ReadAsync usage. Remove obsolete XML doc in IRepository, optimize assembly check in ServiceCollectionExtensions, and clean up whitespace in StreamRequestHandlerWrapper.

Release 3.0.35

24 Jan 20:47

Choose a tag to compare

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

Release 3.0.34

23 Jan 18:25

Choose a tag to compare

Refactor Pipe buffer thresholds for better memory control

Introduce _pipePauseWriterThresholdBytes and _pipeResumeWriterThresholdBytes to manage Pipe writer buffering independently of chunk size and windowing. Thresholds are now set based on memoryLimitBytes, improving predictability and memory usage, especially when a memory cap is specified. This decouples Pipe buffering from internal windowing logic for more robust resource management.

Release 3.0.33

23 Jan 16:47

Choose a tag to compare

Add TokenLifetime property to ITokenProvider interface

Expose token validity duration via TokenLifetime property in ITokenProvider. Implement this property in JwtTokenProvider to return the configured JWT lifetime from settings.