Skip to content

v0.24.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 20 Dec 22:57
ac188cb

[0.24.0] - 2024-12-20

  • runner: Added a Normalizer type for normalizing result values. A new function
    with_normalizer(normalizer: Normalizer)
    has been added to the Runner to allow for specifying a custom Normalizer. The existing default normalizer
    is available via the runner::default_normalizer(..) function.
  • parser: Added a new control mode resultmode that controls whether the results are in
    valuewise or columnwise mode. The default is columnwise which means results are in columns.
    valuewise means the results are in a single column (sqlite test style).
  • parser: Added valuesortsort mode. The valuesort mode works like rowsort except that it does not
    honor row groupings. Each individual result value is sorted on its own.

Breaking change:

  • The Validator type used in various function in Runner implementation has a new required field Normalizer
    that is used to normalize result values.