Skip to content

Commit 6757f66

Browse files
Bump to ginkgo/v2 and lager/v3 (#11)
* Bump to ginkgo/v2 * Bump to lager/v3 * fix `go vet` failures
1 parent 7b69d26 commit 6757f66

22 files changed

+54
-54
lines changed

auctioneer_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package auctioneer_test
22

33
import (
4-
. "github.com/onsi/ginkgo"
4+
. "github.com/onsi/ginkgo/v2"
55
. "github.com/onsi/gomega"
66

77
"testing"

auctioneerfakes/fake_client.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

auctionmetricemitterdelegate/auctionmetricemitterdelegate_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package auctionmetricemitterdelegate_test
22

33
import (
4-
. "github.com/onsi/ginkgo"
4+
. "github.com/onsi/ginkgo/v2"
55
. "github.com/onsi/gomega"
66

77
"testing"

auctionmetricemitterdelegate/auctionmetricemitterdelegate_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
mfakes "code.cloudfoundry.org/diego-logging-client/testhelpers"
1010
"code.cloudfoundry.org/rep"
1111

12-
. "github.com/onsi/ginkgo"
12+
. "github.com/onsi/ginkgo/v2"
1313
. "github.com/onsi/gomega"
1414
)
1515

auctionrunnerdelegate/auction_runner_delegate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"code.cloudfoundry.org/rep"
66

77
"code.cloudfoundry.org/auction/auctiontypes"
8-
"code.cloudfoundry.org/lager"
8+
"code.cloudfoundry.org/lager/v3"
99
)
1010

1111
type AuctionRunnerDelegate struct {

auctionrunnerdelegate/auctionrunnerdelegate_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package auctionrunnerdelegate_test
22

33
import (
4-
. "github.com/onsi/ginkgo"
4+
. "github.com/onsi/ginkgo/v2"
55
. "github.com/onsi/gomega"
66

77
"testing"

auctionrunnerdelegate/auctionrunnerdelegate_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ import (
77
"code.cloudfoundry.org/rep"
88
"code.cloudfoundry.org/rep/repfakes"
99

10-
"code.cloudfoundry.org/lager"
11-
"code.cloudfoundry.org/lager/lagertest"
10+
"code.cloudfoundry.org/lager/v3"
11+
"code.cloudfoundry.org/lager/v3/lagertest"
1212

1313
"code.cloudfoundry.org/auctioneer/auctionrunnerdelegate"
1414

15-
. "github.com/onsi/ginkgo"
15+
. "github.com/onsi/ginkgo/v2"
1616
. "github.com/onsi/gomega"
1717
)
1818

client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"time"
99

1010
cfhttp "code.cloudfoundry.org/cfhttp/v2"
11-
"code.cloudfoundry.org/lager"
11+
"code.cloudfoundry.org/lager/v3"
1212
"code.cloudfoundry.org/tlsconfig"
1313
"github.com/tedsuo/rata"
1414
)

client_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"time"
99

1010
"code.cloudfoundry.org/auctioneer"
11-
"code.cloudfoundry.org/lager"
12-
"code.cloudfoundry.org/lager/lagertest"
11+
"code.cloudfoundry.org/lager/v3"
12+
"code.cloudfoundry.org/lager/v3/lagertest"
1313
"code.cloudfoundry.org/tlsconfig"
14-
. "github.com/onsi/ginkgo"
14+
. "github.com/onsi/ginkgo/v2"
1515
. "github.com/onsi/gomega"
1616
"github.com/onsi/gomega/ghttp"
1717
)

cmd/auctioneer/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"code.cloudfoundry.org/debugserver"
88
loggingclient "code.cloudfoundry.org/diego-logging-client"
99
"code.cloudfoundry.org/durationjson"
10-
"code.cloudfoundry.org/lager/lagerflags"
10+
"code.cloudfoundry.org/lager/v3/lagerflags"
1111
"code.cloudfoundry.org/locket"
1212
)
1313

0 commit comments

Comments
 (0)