-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Vendor Update #16121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vendor Update #16121
Conversation
Looks like there is a change in one of the underlying packages meaning that the error code has changed:
|
1746186 caused it ... |
I think you just have to skip that one - unless you can work out why that would happen. |
A note about bleve though: https://twitter.com/blevesearch/status/1401558497335156740 the 2.0.5 release is an emergency release due to a breaking upstream dependency of theirs that needed to be resolved. |
@techknowlogick yes noticed, we are affected by this too ... |
Thats intended. In https://gitea.com/go-chi/binding/pulls/7 I fixed a bug in the form email validation which allowed a malformed address. Because of this there was a second check in Gitea needed: Lines 876 to 878 in f088dc4
This returns the error the test checks for. Now the form binding rejects the incorrect address which uses a different error message. |
@KN4CK3R will send a pull specific for that, this pull only bump dependencys |
* update github.com/PuerkitoBio/goquery * update github.com/alecthomas/chroma * update github.com/blevesearch/bleve/v2 * update github.com/caddyserver/certmagic * update github.com/go-enry/go-enry/v2 * update github.com/go-git/go-billy/v5 * update github.com/go-git/go-git/v5 * update github.com/go-redis/redis/v8 * update github.com/go-testfixtures/testfixtures/v3 * update github.com/jaytaylor/html2text * update github.com/json-iterator/go * update github.com/klauspost/compress * update github.com/markbates/goth * update github.com/mattn/go-isatty * update github.com/mholt/archiver/v3 * update github.com/microcosm-cc/bluemonday * update github.com/minio/minio-go/v7 * update github.com/prometheus/client_golang * update github.com/unrolled/render * update github.com/xanzy/go-gitlab * update github.com/yuin/goldmark * update github.com/yuin/goldmark-highlighting Co-authored-by: techknowlogick <techknowlogick@gitea.io>
created by
grep 'git' go.mod | grep '\.com' | grep -v indirect | grep -v replace | cut -f 2 | cut -d ' ' -f 1 | while read line; do go get -u "$line"; make vendor; git add .; git commit -S -m "update $line"; done