Skip to content

Latest commit

 

History

History
57 lines (50 loc) · 4.33 KB

CHANGELOG.md

File metadata and controls

57 lines (50 loc) · 4.33 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[1.3.0] - 2021-01-04

Added

  • Decision tree that provides all results [#73]

[1.2.0] - 2020-12-30

Changed

  • Enable equality matches to use default equality comparison and drop constraint that value to match must be equatable [#77]

[1.1.0] - 2020-12-16

Added

  • Transform match [#74]

[1.0.0] - 2020-12-11

Added

  • LessThanOrEqualTo match for comparable types [#54]
  • LessThan match for comparable types [#52]
  • GreaterThanOrEqualTo match for comparable types [#50]
  • GreaterThan match for comparable types [#48]
  • NotEqualTo match for comparable types [#46]
  • EqualTo match for comparable types [#44]
  • NotEqual match for equatable types [#42]
  • Equal match for equatable types [#40]
  • Custom match [#36]
  • None match [#33]
  • Any match [#31]
  • All match [#29]
  • NotEqual match using a comparer [#27]
  • Equal match using a comparer [#25]
  • LessThanOrEqualTo match using a comparer [#23]
  • LessThan match using a comparer [#21]
  • GreaterThanOrEqualTo match using a comparer [#19]
  • GreaterThan match using a comparer [#17]
  • NotSame match [#15]
  • Same match [#13]
  • NotNull match [#11]
  • NotEqual match using an equality comparer [#9]
  • Equal match using an equality comparer [#7]
  • Null match [#5]
  • Never match [#3]
  • Always match [#1]

Changed

  • Ensure composite matches to accept null values for matching [#64]
  • Ensure predefined matches to accept null values for matching [#62]
  • Ensure sameness matches to accept null values for matching [#60]
  • Ensure equality matches to accept null values for matching [#58]
  • Ensure comparison matches to accept null values for matching [#56]
  • Prevent ambiguity of factory methods for matches that match for equality using names Equal/NotEqual (use of equality comparer) and EqualTo/NotEqualTo (use of comparer) [#38]

Deprecated

  • Except match that has only been introduced for compatibility when migrating from Delizious-Filtering component [#33]