github pamburus/hl v0.32.0

latest releases: v0.36.1, latest, v0.36.0...
7 months ago

Added

  • Added message format setting by @pamburus in #957, #959, #1002, #1007
    # Formatting settings.
    formatting:
      message:
        # Message format [auto-quoted, always-quoted, always-double-quoted, delimited, raw]:
        # * "auto-quoted"          • Automatically enables or disables message quotation to improve clarity or avoid ambiguities.
        # * "always-quoted"        • Always prints messages in most appropriate to align them consistently and yet maintain readability.
        # * "always-double-quoted" • Always prints messages in double quotes to align them consistently.
        # * "delimited"            • Separates the message from fields with a supposedly rare delimiter to avoid quotation in most cases and avoid ambiguities at the same time.
        #                            See [formatting.punctuation.message-delimiter] setting.
        # * "raw"                  • Always prints messages without any quotes, escaping or delimiters.
        format: delimited
      punctuation:
        # Delimiter used between message and fields when "delimited" message format is used.
        # See [formatting.message.format] for more details.
        message-delimiter:
          ascii: "::"
          unicode: ""
  • Added ascii option for ASCII-only output by @pamburus in #995
  • Added support for filtering by array items by @pamburus in #965, #969
    hl -f 'span.[].name=a'  # include records where any item in `span` has name "a"
    hl -f 'span.[0].name=a' # include records where the first item (with index zero) in `span` has name "a"
  • Added distinct style configurations for false and true boolean values by @pamburus in #949

Changed

Fixed

Dependencies

Other

Full Changelog: v0.31.2...v0.32.0

Don't miss a new hl release

NewReleases is sending notifications on new releases.