Skip to content

Releases: kisielk/errcheck

v.1.7.0

08 Feb 00:57
338069c
Compare
Choose a tag to compare

What's Changed

Go 1.22 support, plus other fixes.

New Contributors

Full Changelog: v1.6.3...v1.7.0

Test and check blanks in var declarations, doc fixes

12 Jan 01:41
4e4370a
Compare
Choose a tag to compare

What's Changed

  • docs(README.md): Add abspath, mod, and ignoregenerated flag docs by @edwinavalos in #220
  • Remove GO111MODULE: 'off' variantes from CI workflow by @kisielk in #221
  • test and fix check blanks in var declarations by @gburt in #219
  • Add a note about GO111MODULE by @kisielk in #222

New Contributors

Full Changelog: v1.6.2...v1.6.3

More bug fixes.

03 Aug 20:41
3faf0bc
Compare
Choose a tag to compare

What's Changed

  • Calculate correct position with comments before the package keyword by @rmohr in #215

New Contributors

Full Changelog: v1.6.1...v1.6.2

v1.6.1 - Bug fixes

21 May 03:12
98d3f84
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.6.0...v1.6.1

Add SelectorName

25 Feb 04:30
4174a4a
Compare
Choose a tag to compare

Add SelectorName field to UncheckedError result struct.

v1.5.0: Support the -mod=vendor flag

06 Jan 02:08
ee08a45
Compare
Choose a tag to compare

4319a61 Support the -mod=vendor flag for using modules in a vendor directory

v1.4.0

14 Jul 23:48
Compare
Choose a tag to compare

c491130 Correction: requires Go 1.11.x
6b5513d Ignore comments and empty lines in excludes files

Upgrade golang.org/x/tools, drop Go < 1.11 support

20 Jun 01:30
Compare
Choose a tag to compare

b367e75 Limit the amount of memory errcheck uses with smarter goroutine scheduling
175c8b8 Drop support for Go 1.10 and Go 1.9
77437ce Upgrade golang.org/x/tools to latest
e327f15 Fix #139: Add example of excluding a call to a vendored dependency
ff9d777 Update .travis.yml
dd5e04e Update .travis.yml
aaeeb43 Use svg for ci build graphics
2050f4e Fix regression that occurs when GO111MODULE=on
f4fbc7c .travis.yml, tests: Update for GO111MODULE=on [ci-skip]
ff068b1 .travis.yml: Grow the build matrix, pin golang.org/x/tools version
3bf72b1 errcheck_test.go: Better error reporting for debugging
4f924b3 errcheck_test.go: Remove dead code

Go Modules

03 Jan 21:14
e14f8d5
Compare
Choose a tag to compare

Add support for Go modules.

v1.1.0: Merge pull request #137 from louissobel/add-receiver-checking-against…

22 May 14:13
55d8f50
Compare
Choose a tag to compare
  • Improved default exclude list by removing default package-level excludes.
  • Check all levels of a type's embedded interfaces against the exclude list.