From 4da5d6660ae3b6c1cbd3f8f1657f23008ecc6443 Mon Sep 17 00:00:00 2001 From: Chris Smowton Date: Mon, 17 Jun 2024 16:49:09 +0100 Subject: [PATCH] Add change note --- .../lib/change-notes/2024-06-17-go-global-variable-writes.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 go/ql/lib/change-notes/2024-06-17-go-global-variable-writes.md diff --git a/go/ql/lib/change-notes/2024-06-17-go-global-variable-writes.md b/go/ql/lib/change-notes/2024-06-17-go-global-variable-writes.md new file mode 100644 index 000000000000..16eb555ae37b --- /dev/null +++ b/go/ql/lib/change-notes/2024-06-17-go-global-variable-writes.md @@ -0,0 +1,4 @@ +--- +category: fix +--- +* Fixed dataflow via global variables other than via a direct write: for example, via a side-effect on a global, such as `io.copy(SomeGlobal, ...)` or via assignment to a field or array or slice cell of a global. This means that any data-flow query may return more results where global variables are involved.