about summary refs log tree commit diff
path: root/tools/nixery/go.mod (follow)
AgeCommit message (Collapse)AuthorFilesLines
2021-10-29 chore: Bump all Go dependenciesVincent Ambo1-5/+17
Result of 'go get -u && go mod tidy'
2021-06-26 feat(storage): Store blob content-type in extended attributesJérôme Petazzoni1-0/+1
After the discussion in #116, this stores the blob content types in extended attributes when using the filesystem backend. If the underlying filesystem doesn't support extended attributes, storing blobs won't work; also, if extended attributes get removed, blobs won't be served anymore. We can relax this behavior if needed (i.e. log errors but still accept to store or serve blobs). However, since the Docker Engine (and possibly other container engines) won't accept to pull images from a registry that doesn't use correct content types for manifest files, it could be argued that it's better to give a hard fail. (Otherwise, the container engine gives cryptic error messages like "missing signature key".) I can change that behavior (and log errors but still store/serve blobs to the filesystem) if you think it's better.
2021-04-30 refactor(build): Pin dependencies using Go modulesVincent Ambo1-0/+11
Drops the go2nix configuration in favour of pkgs.buildGoModule. Note that the go.sum file is bloated by issues with cyclic dependencies in some Google projects, but this large number of dependencies is not actually built.