diff options
author | Pavlo Strokov <pstrokov@gitlab.com> | 2021-06-02 11:54:10 +0300 |
---|---|---|
committer | Pavlo Strokov <pstrokov@gitlab.com> | 2021-06-02 11:56:45 +0300 |
commit | 9f5a802258338483075aa440225d67e95616740f (patch) | |
tree | 10f79f776fd30501c7a8db8fa2eb06a3636756c8 /go.mod | |
parent | 40ff6687b3b0fbe5285cdeccf9afb84e42823a4b (diff) | |
download | gitlab-shell-9f5a802258338483075aa440225d67e95616740f.tar.gz |
fix: upgrade of the gitaly dependency
Gitaly project now properly respects module release flow
and includes a module suffix in the package name. It requires
to re-write all non-suffixed imports with suffixed of a specific
version of tha module. With proper module versioning we don't
need to use a 'replace' directive to point to specific commit
and can use semantic versioning for the gitaly dependency.
Part of: https://gitlab.com/gitlab-org/gitaly/-/issues/3177
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -12,15 +12,10 @@ require ( github.com/prometheus/client_golang v1.10.0 github.com/sirupsen/logrus v1.8.1 github.com/stretchr/testify v1.7.0 - gitlab.com/gitlab-org/gitaly v1.68.0 + gitlab.com/gitlab-org/gitaly/v14 v14.0.0-rc1 gitlab.com/gitlab-org/labkit v1.4.1 golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad golang.org/x/sync v0.0.0-20210220032951-036812b2e83c google.golang.org/grpc v1.37.0 gopkg.in/yaml.v2 v2.4.0 ) - -// go get tries to enforce semantic version compatibility via module paths. -// We can't upgrade to Gitaly v13.x.x from v1.x.x without using a manual override. -// See https://gitlab.com/gitlab-org/gitaly/-/issues/3177 for more details. -replace gitlab.com/gitlab-org/gitaly => gitlab.com/gitlab-org/gitaly v0.0.0-20201001041716-3f5e218def93 |