From dadc14563affab6cd5e4eac52a1fd4d4b2e96f9d Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Thu, 9 Oct 2025 16:42:41 +0900 Subject: [PATCH] jmespath search check update --- test-run/json_handling/jmespath_helper.py | 4 +++- uv.lock | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/test-run/json_handling/jmespath_helper.py b/test-run/json_handling/jmespath_helper.py index 9238051..969a45c 100644 --- a/test-run/json_handling/jmespath_helper.py +++ b/test-run/json_handling/jmespath_helper.py @@ -39,7 +39,9 @@ def main() -> None: 'a', 'bar.a', 'foo.a', - 'baz[].aa' + 'baz[].aa', + "[?\"c\" && contains(\"c\", 'b')]", + "[?contains(\"c\", 'b')]", ] for __jmespath in __get: result = jmespath_search(__set, __jmespath) diff --git a/uv.lock b/uv.lock index 7960b88..4ac9997 100644 --- a/uv.lock +++ b/uv.lock @@ -53,7 +53,7 @@ wheels = [ [[package]] name = "corelibs" -version = "0.24.4" +version = "0.25.0" source = { editable = "." } dependencies = [ { name = "jmespath" },