You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is being opened to discuss the possibility of removing the vendor dir from the repo. Vendoring enables us to have reproducible builds, but at the cost of updates and security fixes in newer versions of the modules.
Including the upcoming crit library, we will be using three modules - proto, x/sys and protojson. All three are hardened packages with proper testing before every release. Go automatically fetches them when running go build based on the info in go.mod. We can use go get -u to update the deps manually when necessary.
The text was updated successfully, but these errors were encountered:
This issue is being opened to discuss the possibility of removing the
vendor
dir from the repo. Vendoring enables us to have reproducible builds, but at the cost of updates and security fixes in newer versions of the modules.Including the upcoming
crit
library, we will be using three modules -proto
,x/sys
andprotojson
. All three are hardened packages with proper testing before every release. Go automatically fetches them when runninggo build
based on the info ingo.mod
. We can usego get -u
to update the deps manually when necessary.The text was updated successfully, but these errors were encountered: