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-06-01 15:12:13 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2023-06-01 17:10:11 +0300
commiteb26c5c90f785f3448f448c675b0780d055e9cda (patch)
treeec299526e43dad9031fe8201be2b2425eafbeb38 /internal/gitaly/transaction_manager_hook_test.go
parentf82056a5081d5ed208cac8249a855581ff9a2613 (diff)
go.mod: Update Badger to v4.1.0
Badger has bumped its major version from v3 series to v4. This bump is mostly uninteresting, but there are two interesting changes in there: - They have upgraded the minimum required Go version to 1.19. This has kept us from upgrading Badger given that we still supported Go 1.18. This has changed with a17fb7823 (go.mod: Use Go 1.19 as minimum required version, 2023-05-23) though, so we're unblocked with the upgrade. - They have changed their version schema from CalVer to SemVer, meaning that future releases should be more indicative of real major changes. Other than that there are no real changes that would be interesting to us.
Diffstat (limited to 'internal/gitaly/transaction_manager_hook_test.go')
-rw-r--r--internal/gitaly/transaction_manager_hook_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/gitaly/transaction_manager_hook_test.go b/internal/gitaly/transaction_manager_hook_test.go
index e529ea8b4..7642efb35 100644
--- a/internal/gitaly/transaction_manager_hook_test.go
+++ b/internal/gitaly/transaction_manager_hook_test.go
@@ -6,7 +6,7 @@ import (
"strings"
"testing"
- "github.com/dgraph-io/badger/v3"
+ "github.com/dgraph-io/badger/v4"
"github.com/stretchr/testify/require"
)