Skip to content

v0.24.0

Compare
Choose a tag to compare
@ayeshajay ayeshajay released this 29 Jul 11:25
· 135 commits to main since this release
b016599

What's Changed

  • Add support for multiple custom rule match_conditions by @ayeshajay in #83

Full Changelog: v0.23.0...v0.24.0

Release note

Existing users need to update the existing condition to the following.

Existing

match_condition = {
            match_variable     = "Testing condition"
            match_values       = ["/test"]
            operator           = "contains"
            negation_condition = false
            transforms         = []
          }

New

match_condition = [{
            match_variable     = "Testing condition"
            match_values       = ["/test"]
            operator           = "contains"
            negation_condition = false
            transforms         = []
          }]