v0.24.0
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 = []
}]