Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavlo Strokov <pstrokov@gitlab.com>2021-05-25 15:43:12 +0300
committerPavlo Strokov <pstrokov@gitlab.com>2021-05-27 17:06:12 +0300
commit12e0bf3ac80b72bef07a5733a70c270f70771859 (patch)
tree30d34863d4a51d7dbffd9be19038ab6f7288b0f2 /client/upload_archive.go
parent6d0661ae39285390cc3b03c6847b85a442c93364 (diff)
Create module v14 gitaly version
The new "v14" version of the Gitaly module is named to match the next GitLab release. The module versioning is needed in order to pull gitaly as a dependency in other projects. The change updates all imports to include v14 version. The go.mod file was modified as well after go mod tidy execution. And the changes in dependency licenses are reflected in the NOTICE file. Part of: https://gitlab.com/gitlab-org/gitaly/-/issues/3177
Diffstat (limited to 'client/upload_archive.go')
-rw-r--r--client/upload_archive.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/upload_archive.go b/client/upload_archive.go
index 118ef4787..1afd0e9a8 100644
--- a/client/upload_archive.go
+++ b/client/upload_archive.go
@@ -4,9 +4,9 @@ import (
"context"
"io"
- "gitlab.com/gitlab-org/gitaly/internal/stream"
- "gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
- "gitlab.com/gitlab-org/gitaly/streamio"
+ "gitlab.com/gitlab-org/gitaly/v14/internal/stream"
+ "gitlab.com/gitlab-org/gitaly/v14/proto/go/gitalypb"
+ "gitlab.com/gitlab-org/gitaly/v14/streamio"
"google.golang.org/grpc"
)