Skip to content
This repository was archived by the owner on Jul 11, 2023. It is now read-only.

Commit f5f48da

Browse files
author
Kieron Browne
committed
Fix canonical package name of the bbolt package
This is a very indirect dependency, via eirinix, cobra, viper, etcd. The initial problem is in etcd-v3.3, with an incorrect import of github.com/coreos/bbolt. This is fixed in etcd-v3.4, however, etcd-v3.4 is not a correct go module, and cannot be included in a go mod project! So everyone must wait for etcd-v3.5 to be released with the fix. See etcd-io/etcd#11154 (comment). Until then, we can rename bbolt. Fixing to v1.3.5 is unfortunately required by go.mod's syntax. It should be upgraded if bbolt releases again. Signed-off-by: Danail Branekov <[email protected]>
1 parent 84a1ca6 commit f5f48da

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module code.cloudfoundry.org/eirini
33
go 1.13
44

55
replace (
6+
github.com/coreos/bbolt => go.etcd.io/bbolt v1.3.5
67
github.com/go-logr/logr => github.com/go-logr/logr v0.1.0
78
github.com/googleapis/gnostic => github.com/googleapis/gnostic v0.4.0
89
k8s.io/client-go => k8s.io/client-go v0.18.6

0 commit comments

Comments
 (0)