Update go/ql/lib/CHANGELOG.md

Co-authored-by: Jeroen Ketema <93738568+jketema@users.noreply.github.com>
This commit is contained in:
Ian Lynagh
2022-08-25 14:25:20 +01:00
committed by GitHub
parent f20825ae55
commit b951e94d85

View File

@@ -3,8 +3,7 @@
### Minor Analysis Improvements
* Go 1.19 is now supported, including adding new taint propagation steps for new standard-library functions introduced in this release.
* Most deprecated predicates/classes/modules that have been deprecated for over a year have been
deleted.
* Most deprecated predicates/classes/modules that have been deprecated for over a year have been deleted.
* Fixed data-flow to captured variable references.
* We now assume that if a channel-typed field is only referred to twice in the user codebase, once in a send operation and once in a receive, then data flows from the send to the receive statement. This enables finding some cross-goroutine flow.