From 7df44f9418489c0ac38af957466590b48beac32c Mon Sep 17 00:00:00 2001 From: yoff Date: Sun, 8 Feb 2026 09:45:32 +0100 Subject: [PATCH] python: add change note --- .../2026-02-08-guards-compared-to-boolean-literals.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 python/ql/lib/change-notes/2026-02-08-guards-compared-to-boolean-literals.md diff --git a/python/ql/lib/change-notes/2026-02-08-guards-compared-to-boolean-literals.md b/python/ql/lib/change-notes/2026-02-08-guards-compared-to-boolean-literals.md new file mode 100644 index 00000000000..bf626c2958c --- /dev/null +++ b/python/ql/lib/change-notes/2026-02-08-guards-compared-to-boolean-literals.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* When a guard such as `isSafe(x)` is defined, we now also automatically handle `isSafe(x) == true` and `isSafe(x) != false`.