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:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2023-05-10 15:44:05 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2023-05-10 15:49:46 +0300
commitdd2cf97a144b73053da370e97cc7581a81bdc527 (patch)
tree3a20798f8f7c85823b4466d007c8070ccfb4d84c /internal/bootstrap
parent46ee0248c36241d856710030958fa5e1e04b179e (diff)
go: Bump module version from v15 to v16
We're about to release Gitaly v16.0. As we've landed a bunch of previously announced removals it's thus time to bump our Go module version from v15 to v16.
Diffstat (limited to 'internal/bootstrap')
-rw-r--r--internal/bootstrap/bootstrap.go4
-rw-r--r--internal/bootstrap/bootstrap_test.go6
-rw-r--r--internal/bootstrap/starter/starter.go2
-rw-r--r--internal/bootstrap/testhelper_test.go2
4 files changed, 7 insertions, 7 deletions
diff --git a/internal/bootstrap/bootstrap.go b/internal/bootstrap/bootstrap.go
index 6a2473390..30113e13d 100644
--- a/internal/bootstrap/bootstrap.go
+++ b/internal/bootstrap/bootstrap.go
@@ -10,8 +10,8 @@ import (
"github.com/cloudflare/tableflip"
"github.com/prometheus/client_golang/prometheus"
log "github.com/sirupsen/logrus"
- "gitlab.com/gitlab-org/gitaly/v15/internal/helper"
- "gitlab.com/gitlab-org/gitaly/v15/internal/helper/env"
+ "gitlab.com/gitlab-org/gitaly/v16/internal/helper"
+ "gitlab.com/gitlab-org/gitaly/v16/internal/helper/env"
"golang.org/x/sys/unix"
)
diff --git a/internal/bootstrap/bootstrap_test.go b/internal/bootstrap/bootstrap_test.go
index 7dfa7f053..adbf8468d 100644
--- a/internal/bootstrap/bootstrap_test.go
+++ b/internal/bootstrap/bootstrap_test.go
@@ -12,9 +12,9 @@ import (
"github.com/prometheus/client_golang/prometheus"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
- "gitlab.com/gitlab-org/gitaly/v15/internal/helper"
- "gitlab.com/gitlab-org/gitaly/v15/internal/helper/perm"
- "gitlab.com/gitlab-org/gitaly/v15/internal/testhelper"
+ "gitlab.com/gitlab-org/gitaly/v16/internal/helper"
+ "gitlab.com/gitlab-org/gitaly/v16/internal/helper/perm"
+ "gitlab.com/gitlab-org/gitaly/v16/internal/testhelper"
)
func TestBootstrap_unixListener(t *testing.T) {
diff --git a/internal/bootstrap/starter/starter.go b/internal/bootstrap/starter/starter.go
index 6f8d3cda9..b2e7f586f 100644
--- a/internal/bootstrap/starter/starter.go
+++ b/internal/bootstrap/starter/starter.go
@@ -9,7 +9,7 @@ import (
"github.com/prometheus/client_golang/prometheus"
"github.com/sirupsen/logrus"
- "gitlab.com/gitlab-org/gitaly/v15/internal/bootstrap"
+ "gitlab.com/gitlab-org/gitaly/v16/internal/bootstrap"
)
const (
diff --git a/internal/bootstrap/testhelper_test.go b/internal/bootstrap/testhelper_test.go
index 8aeb1ed46..26d268ccd 100644
--- a/internal/bootstrap/testhelper_test.go
+++ b/internal/bootstrap/testhelper_test.go
@@ -3,7 +3,7 @@ package bootstrap
import (
"testing"
- "gitlab.com/gitlab-org/gitaly/v15/internal/testhelper"
+ "gitlab.com/gitlab-org/gitaly/v16/internal/testhelper"
)
func TestMain(m *testing.M) {