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
path: root/go.mod
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 /go.mod
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 'go.mod')
-rw-r--r--go.mod11
1 files changed, 1 insertions, 10 deletions
diff --git a/go.mod b/go.mod
index ced04f30a..001e995e8 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module gitlab.com/gitlab-org/gitaly
+module gitlab.com/gitlab-org/gitaly/v14
exclude (
// grpc-go version v1.34.0 and v1.35.0-dev have a bug that affects unix domain docket
@@ -10,9 +10,6 @@ exclude (
)
require (
- github.com/alexbrainman/sspi v0.0.0-20210105120005-909beea2cc74 // indirect
- github.com/avast/retry-go v3.0.0+incompatible // indirect
- github.com/beorn7/perks v1.0.1 // indirect
github.com/cloudflare/tableflip v1.2.2
github.com/containerd/cgroups v0.0.0-20201118023556-2819c83ced99
github.com/getsentry/sentry-go v0.7.0
@@ -21,20 +18,17 @@ require (
github.com/google/uuid v1.1.1
github.com/grpc-ecosystem/go-grpc-middleware v1.2.3-0.20210213123510-be4c235f9d1c
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
- github.com/hashicorp/go-uuid v1.0.2 // indirect
github.com/hashicorp/golang-lru v0.5.4
github.com/hashicorp/yamux v0.0.0-20210316155119-a95892c5f864
github.com/kelseyhightower/envconfig v1.3.0
github.com/lib/pq v1.2.0
github.com/libgit2/git2go/v31 v31.4.12
- github.com/mattn/go-isatty v0.0.12 // indirect
github.com/olekukonko/tablewriter v0.0.2
github.com/opencontainers/runtime-spec v1.0.2
github.com/opentracing/opentracing-go v1.2.0
github.com/otiai10/curr v1.0.0 // indirect
github.com/pelletier/go-toml v1.8.1
github.com/prometheus/client_golang v1.0.0
- github.com/prometheus/procfs v0.0.3 // indirect
github.com/rubenv/sql-migrate v0.0.0-20191213152630-06338513c237
github.com/sirupsen/logrus v1.7.0
github.com/stretchr/testify v1.6.1
@@ -42,13 +36,10 @@ require (
gitlab.com/gitlab-org/gitlab-shell v1.9.8-0.20201117050822-3f9890ef73dc
gitlab.com/gitlab-org/labkit v1.0.0
go.uber.org/goleak v1.1.10
- golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b // indirect
- golang.org/x/exp v0.0.0-20200331195152-e8c3332aa8e5 // indirect
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4
golang.org/x/text v0.3.3
google.golang.org/grpc v1.29.1
- gopkg.in/yaml.v2 v2.4.0 // indirect
)
go 1.15