diff options
author | Clark Boylan <clark.boylan@gmail.com> | 2022-10-06 13:51:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-06 21:51:38 +0100 |
commit | f1f911df41cc7c566348cae3672a32291d98a890 (patch) | |
tree | 3bccd43731a3f733dbd9ecd54d20bf3d6c6aa6c4 /go.mod | |
parent | 64073276c444c875afe0176c3cf1429ce2a24716 (diff) | |
download | gitea-f1f911df41cc7c566348cae3672a32291d98a890.tar.gz gitea-f1f911df41cc7c566348cae3672a32291d98a890.zip |
Update to go-enry v2.8.3 (#21360)
This fixes an issue with enry's isVendor() method being too greedy. This
lead to gitea classifying unvendored code as vendored. The impact of
this is fairly minimal, but our Gitea users did notice which led me to
fixing this in go-enry. Some files will be tagged with a vendored flag
in the UI. I think it also impacts the calculation of language
statistics in the repo as vendored files are not incorporated into the
stats.
For more information on the issue see the go-enry bug:
https://github.com/go-enry/go-enry/issues/135
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ require ( github.com/go-ap/jsonld v0.0.0-20220917142617-76bf51585778 github.com/go-chi/chi/v5 v5.0.7 github.com/go-chi/cors v1.2.1 - github.com/go-enry/go-enry/v2 v2.8.2 + github.com/go-enry/go-enry/v2 v2.8.3 github.com/go-fed/httpsig v1.1.1-0.20201223112313-55836744818e github.com/go-git/go-billy/v5 v5.3.1 github.com/go-git/go-git/v5 v5.4.3-0.20220529141257-bc1f419cebcf |