mirror of
https://github.com/github/codeql.git
synced 2026-01-29 14:23:03 +01:00
Merge pull request #443 from smowton/smowton/admin/missing-change-notes-2021-01
Add change-notes for recent PRs that were missing them
This commit is contained in:
2
change-notes/2020-11-03-underscore-assigns.md
Normal file
2
change-notes/2020-11-03-underscore-assigns.md
Normal file
@@ -0,0 +1,2 @@
|
||||
lgtm,codescanning
|
||||
* Fixed a bug that meant partially-ignored parallel assignments, such as `x, _ := a, b`, could produce an incorrect control-flow graph.
|
||||
2
change-notes/2020-11-19-dataflow-edges.md
Normal file
2
change-notes/2020-11-19-dataflow-edges.md
Normal file
@@ -0,0 +1,2 @@
|
||||
lgtm,codescanning
|
||||
* Fixed a bug that meant data-flow through a checked typecast (e.g. `cast, ok = x.(*Type)`) could be missed.
|
||||
2
change-notes/2020-11-27-guarding-functions.md
Normal file
2
change-notes/2020-11-27-guarding-functions.md
Normal file
@@ -0,0 +1,2 @@
|
||||
lgtm,codescanning
|
||||
* Improved ability to recognise a sanitizing function (for example, `func f(s string) bool { return isClean(s) }`). This may reduce false-positives for any query employing a sanitizing test.
|
||||
2
change-notes/2020-12-01-fmt-errorf.md
Normal file
2
change-notes/2020-12-01-fmt-errorf.md
Normal file
@@ -0,0 +1,2 @@
|
||||
lgtm,codescanning
|
||||
* Recognised function `fmt.Errorf` to always return non-nil strings. This may reduce false-positives that depend on a function possibly returning nil.
|
||||
2
change-notes/2020-12-23-regexp-anchors.md
Normal file
2
change-notes/2020-12-23-regexp-anchors.md
Normal file
@@ -0,0 +1,2 @@
|
||||
lgtm,codescanning
|
||||
* Query `go/regex/missing-regexp-anchor` now recognizes the start- and end-of-text anchors `\A` and `\z`. This reduces false-positives relating to unanchored expressions.
|
||||
Reference in New Issue
Block a user