Skip to content
This repository was archived by the owner on Mar 3, 2024. It is now read-only.

Releases: TechNobre/PowerUtils.Validations.Primitives

v2.0.0

02 Mar 23:52

Choose a tag to compare

2.0.0 (2024-03-02)

Bug Fixes

  • Marked all implementations as Obsolete (90b640e)

BREAKING CHANGES

  • Deprecated package

v1.2.2

23 Jul 10:47

Choose a tag to compare

1.2.2 (2022-07-23)

Bug Fixes

1.2.1

23 Jul 10:39

Choose a tag to compare

Features

  • Add support to debug in runtime Microsoft.SourceLink.GitHub (15cf744)

Bug Fixes

1.2.0

29 Mar 23:20
6d8ddbe

Choose a tag to compare

[1.2.0] - 2022-03-30

Full Changelog

New Features

  • Added new constants MIN_LATITUDE, MAX_LATITUDE, MIN_LONGITUDE and MAX_LONGITUDE;

1.1.0

26 Mar 12:55
b30620a

Choose a tag to compare

[1.1.0] - 2022-03-26

Full Changelog

New Features

  • Added new constants MIN_ZERO and MAX_ZERO;

1.0.0

15 Mar 03:47
6bb74fd

Choose a tag to compare

[1.0.0] - 2022-03-15

  • Kickoff;
  • Moved the attributes from PowerUtils.Validations project to this one so it can be used individually;

New Features

  • Added new constants DUPLICATED and EXPIRED;
  • Added helper ErrorCodes.GetMinFormatted(int min);;
  • Added helper ErrorCodes.GetMaxFormatted(int max);;
  • Added helper ErrorCodes.GetMinFormatted(uint min);;
  • Added helper ErrorCodes.GetMaxFormatted(uint max);;
  • Added helper ErrorCodes.GetMinFormatted(ulong min);;
  • Added helper ErrorCodes.GetMaxFormatted(ulong max);;
  • Added helper ErrorCodes.GetMinFormatted(float min);;
  • Added helper ErrorCodes.GetMaxFormatted(float max);;
  • Added helper ErrorCodes.GetMinFormatted(decimal min);;
  • Added helper ErrorCodes.GetMaxFormatted(decimal max);;
  • Added helper ErrorCodes.GetMinFormatted(DateTime min);;
  • Added helper ErrorCodes.GetMaxFormatted(DateTime max);;
  • Added helper ErrorCodes.GetMinFormatted<TValue>(TValue min);;
  • Added helper ErrorCodes.GetMaxFormatted<TValue>(TValue max);;

Breaking Changes

  • Discontinued the constant ALREADY_EXISTS. New constant DUPLICATED;