Bump honnef.co/go/tools from 0.4.6 to 0.4.7 in /tools
Bumps honnef.co/go/tools from 0.4.6 to 0.4.7.
Release notes
Sourced from honnef.co/go/tools's releases.
Staticcheck 2023.1.7 (v0.4.7)
This release fixes some minor issues in Staticcheck’s intermediate representation. Furthermore, it improves the way QF1003 generates suggested fixes, working around constraints in the language server protocol.
The released binaries for this version have been built with Go 1.22 and should no longer panic when checking code targeting Go 1.22.
Staticcheck 2023.1.6 (v0.4.6)
This release fixes the following bugs:
- A crash when using the upcoming Go 1.22 (issue 1442)
- A false positive in SA9005 when embedding basic types (issue 1443)
Staticcheck 2023.1.5 (v0.4.5)
This release fixes the following bug:
- A crash involving methods named
_Staticcheck 2023.1.4 (v0.4.4)
This release adds support for Go 1.21 and fixes the following bugs:
- Three crashes when encountering unnecessarily parenthesized statements (#1393, #1400)
- Unnecessarily high memory usage when analyzing composite literals such as
[]int{1<<31: 1}(#1393)- A false positive in S1011 when appending to a dynamic left-hand side (#1399)
- A crash involving generics (#1410)
- A false positive in SA9001 involving control flow statements (#488)
- A false positive in ST1003, complaining about the names of fuzz functions (#1420)
Staticcheck 2023.1.3 (v0.4.3)
This release fixes the following bugs:
- A crash when embedding type aliases of unnamed types (issue 1361)
- A false positive in U1000, claiming that type aliases are unused (issue 1365)
- A bug in the binary formatter that prevented correct merging behavior for some checks (issue 1372)
Staticcheck 2023.1.2 (v0.4.2)
This release fixes a bug that prevented the
binaryformatter from working (issue 1370).Staticcheck 2023.1.1 (v0.4.1)
This release fixes a crash, a false positive in U1000 (issue 1360) and improves the way deprecated API is flagged (issue 1318).
When targeting a Go version that is older than the version that deprecated an API, SA1019 will no longer flag the use even if there is already an alternative available in the targeted Go version.
For example,
math/rand.Seedhas been deprecated in Go 1.20, but an alternative has existed since Go 1.0. In the past, we would flag uses ofSeedeven if targeting e.g. Go 1.19, to encourage better forwards compatibility. This can lead to unnecessary churn, however, because the correct change may depend on the Go version in use. For example, forSeedbefore Go 1.20, the alternative is to use a separate instance ofmath/rand.Rand, whereas in Go 1.20, a possible alternative is to simply drop the call toSeed.Staticcheck 2023.1 (v0.4.0)
Staticcheck 2023.1 adds support for Go 1.20, brings minor improvements to various checks, and replaces U1000 with a new implementation.
The following checks have been improved:
... (truncated)
Commits
a093f7cVersion 2023.1.7 (v0.4.7)f4d3418website: add 2023.1.7 release notes917c595quickfix: backport "QF1003: reorder edits to respect LSP spec"b1b6abbgo/ir: emit field and index lvals on demand3e57c5dgo/ir: fix miscompilation of <= statementsd965e98go/ir: emit Low expression before High in *ast.Slice102ab03go/ir: don't emit split stores before phi nodes- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Codecov Report
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 100.00%. Comparing base (
1f1cd8a) to head (c19b4cf).
Additional details and impacted files
@@ Coverage Diff @@
## master #157 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 23 23
Lines 429 429
=========================================
Hits 429 429
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.