Skip to content

Releases: elastic/go-licence-detector

v0.7.0

30 Sep 10:46
b9dd1fb
Compare
Choose a tag to compare
feat: update dependencies and bump go version (#26)

* feat: bump to a supported go version

* feat: replace godirwalk with upstream walkdir function

WalkDir avoids calling os.Lstat on every visited file or directory
and was introduced in go 1.16

* feat: replace pkgerr with upstream embed package

go 1.16 added the new embed package and pkger is archived

* feat: bump dependencies

* lint: regenerate notice file

* ci: do not install pkger
we are not using it anymore

* ci: checkout repo before setting up go

* fix: do not copy transport locks

assignment copies lock value to transport: net/http.Transport contains sync.Mutex

* feat: replace deprecated ioutil calls

* feat: inline funcitons

v0.6.1

21 Jun 05:58
2412355
Compare
Choose a tag to compare
Upgrading golang.org/x/* dependencies to latest (#24)

v0.6.0

08 Mar 10:19
d99858a
Compare
Choose a tag to compare
Add license.mit filename to detector (#20)

v0.5.0

22 Jul 10:49
3c2d758
Compare
Choose a tag to compare
Handle local module replacements (#13)

* Handle relative module replacements

Handle the name and the timestamp when the module is replaced by a local
relative path.

* Support local replacements

v0.4.0

29 Jun 20:49
38d1269
Compare
Choose a tag to compare

Adds new canonicalVersion and revision template functions

v0.3.0

23 Jun 14:37
1621275
Compare
Choose a tag to compare
Change whitelist to allowlist (#6)

Changes whitelist => allowlist, similar to elastic/cloud-on-k8s#3266, and yellowlist => maybelist to be consistent.

This is a breaking change as override files will need to be updated with the new field name.

Also adds expands the gitignore to include options from https://github.com/github/gitignore/blob/master/Go.gitignore

and begins a contributing doc to make the prereqs clearer.

v0.2.0

08 Jun 14:03
660cfee
Compare
Choose a tag to compare
Allow specifying licence file + add yellow list and licence-specific …

v0.1.1

24 Apr 13:06
919d39a
Compare
Choose a tag to compare
Switch to vanity import path (#3)

* Switch to vanity URL

* Update README

v0.1.0

23 Apr 07:25
9ffa081
Compare
Choose a tag to compare
Add whitelist option (#2)

* Add whitelist option

* Add PR hook to GH action

* Address CR comments