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:
authorJohn Cai <jcai@gitlab.com>2022-05-11 17:31:47 +0300
committerJohn Cai <jcai@gitlab.com>2022-05-20 17:30:07 +0300
commitcd77c04625b069c9bbef1f6193705648868cf0c4 (patch)
tree52be358ddbfa65b101c1b05287e8fcb656b929f2 /cmd/gitaly-debug
parentc7e6e84522b46f1d5c5f590201407617db739112 (diff)
Update go package name from v14 to v15
This commit changes the major version in the package name from v14 to v15 Updating go.mod & go.sum with new module name v15 Update Makefile to bump major version to v15 Update the gitaly package name in the Makefile. Also update gitaly-git2go-v14 -> gitaly-git2go-v15. We need to keep gitaly-git2go-v14 for a release however, for zero downtime upgrades. This pulls directly from a sha that is v14. Update package name from v14->v15 for auth, client, cmd, internal packages This commit changes the package name from v14 to v15 in go and proto files in the internal, auth, client, cmd packages. proto: Update major package number in package name tools: Change major version number in package name from v14 to v15 gitaly-git2go: Change the package name from v14 to v15 update module updater for v15 Update the documentation for the module updater to reflect v15
Diffstat (limited to 'cmd/gitaly-debug')
-rw-r--r--cmd/gitaly-debug/analyzehttp.go2
-rw-r--r--cmd/gitaly-debug/bitmap.go2
-rw-r--r--cmd/gitaly-debug/simulatehttp.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/cmd/gitaly-debug/analyzehttp.go b/cmd/gitaly-debug/analyzehttp.go
index 805094ac7..4dc3a8cba 100644
--- a/cmd/gitaly-debug/analyzehttp.go
+++ b/cmd/gitaly-debug/analyzehttp.go
@@ -4,7 +4,7 @@ import (
"context"
"fmt"
- "gitlab.com/gitlab-org/gitaly/v14/internal/git/stats"
+ "gitlab.com/gitlab-org/gitaly/v15/internal/git/stats"
)
func analyzeHTTPClone(cloneURL string) {
diff --git a/cmd/gitaly-debug/bitmap.go b/cmd/gitaly-debug/bitmap.go
index 36e2b514b..c5ec2234e 100644
--- a/cmd/gitaly-debug/bitmap.go
+++ b/cmd/gitaly-debug/bitmap.go
@@ -5,7 +5,7 @@ import (
"fmt"
"os"
- "gitlab.com/gitlab-org/gitaly/v14/internal/git/packfile"
+ "gitlab.com/gitlab-org/gitaly/v15/internal/git/packfile"
)
func listBitmapPack(idxFile string) {
diff --git a/cmd/gitaly-debug/simulatehttp.go b/cmd/gitaly-debug/simulatehttp.go
index f2cf35dab..45bd96531 100644
--- a/cmd/gitaly-debug/simulatehttp.go
+++ b/cmd/gitaly-debug/simulatehttp.go
@@ -9,7 +9,7 @@ import (
"regexp"
"time"
- "gitlab.com/gitlab-org/gitaly/v14/internal/git/pktline"
+ "gitlab.com/gitlab-org/gitaly/v15/internal/git/pktline"
)
func simulateHTTPClone(gitDir string) {