Skip to content

Releases: maxkoshevoi/DateOnlyTimeOnly.AspNet

v2.1.1: Culture

26 Feb 20:02
Compare
Choose a tag to compare

What's Changed

  • Respect culture in type converter

Full Changelog: v2.0.0...v2.1.1

v2.0.0: .NET 7

09 Nov 01:04
Compare
Choose a tag to compare

What's Changed

  • Simplify setup. Now you only need to call AddDateOnlyTimeOnlyStringConverters once, and everything is ready
  • Add support to use DateOnly and TimeOnly as Dictionary key
  • Improve Minimal APIs support
  • Add .NET 7 support (by removing features that are already available out of the box there)

v1.0.3: Improve TimeOnly's example value

16 Apr 12:42
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.2...v1.0.3

v1.0.2: Swashbuckle support

28 Nov 19:33
Compare
Choose a tag to compare
  • Added new DateOnlyTimeOnly.AspNet.Swashbuckle NuGet that adds Swashbuckle support
  • Added symbols and license to NuGets
  • Added <summary> to all extension methods

Full Changelog: v1.0.1...v1.0.2

v1.0.0: Initial release

16 Sep 11:11
Compare
Choose a tag to compare

Initial release of the NuGet ✨

  • Body parameters are supported using custom json converters (inspired by this article)
  • Query parameters are supported using custom type converters (inspired by this article)
    • there is an alternative solution using custom model binders and Swagger mapping. Will move to it if there're any unintended side effects with type converter approach.