Skip to content

Commit adbf236

Browse files
committed
chore(deps): Moving to latest version of gomega and ginko
1 parent 56398e2 commit adbf236

22 files changed

+140
-91
lines changed

db_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"testing"
1515
"time"
1616

17-
. "github.com/onsi/ginkgo"
17+
. "github.com/onsi/ginkgo/v2"
1818
. "github.com/onsi/gomega"
1919
"github.com/stretchr/testify/require"
2020

go.mod

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,16 @@ module github.com/go-pg/pg/v10
33
go 1.11
44

55
require (
6-
github.com/davecgh/go-spew v1.1.1 // indirect
76
github.com/go-pg/zerochecker v0.2.0
8-
github.com/golang/protobuf v1.4.3 // indirect
9-
github.com/google/go-cmp v0.5.5 // indirect
107
github.com/jinzhu/inflection v1.0.0
118
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
12-
github.com/onsi/ginkgo v1.14.2
13-
github.com/onsi/gomega v1.10.3
9+
github.com/onsi/ginkgo/v2 v2.8.3
10+
github.com/onsi/gomega v1.27.1
1411
github.com/stretchr/testify v1.7.0
1512
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc
1613
github.com/vmihailenco/bufpool v0.1.11
1714
github.com/vmihailenco/msgpack/v5 v5.3.4
1815
github.com/vmihailenco/tagparser v0.1.2
19-
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
20-
golang.org/x/sys v0.0.0-20210923061019-b8560ed6a9b7 // indirect
21-
google.golang.org/protobuf v1.25.0 // indirect
2216
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f
2317
mellium.im/sasl v0.3.1
2418
)

go.sum

Lines changed: 118 additions & 63 deletions
Large diffs are not rendered by default.

hook_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"io/ioutil"
66
"strings"
77

8-
. "github.com/onsi/ginkgo"
8+
. "github.com/onsi/ginkgo/v2"
99
. "github.com/onsi/gomega"
1010

1111
"github.com/go-pg/pg/v10"

internal/pool/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"sync"
77
"testing"
88

9-
. "github.com/onsi/ginkgo"
9+
. "github.com/onsi/ginkgo/v2"
1010
. "github.com/onsi/gomega"
1111
)
1212

internal/pool/pool_sticky_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package pool_test
33
import (
44
"context"
55

6-
. "github.com/onsi/ginkgo"
6+
. "github.com/onsi/ginkgo/v2"
77
. "github.com/onsi/gomega"
88

99
"github.com/go-pg/pg/v10/internal/pool"

internal/pool/pool_test.go

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

99
"github.com/go-pg/pg/v10/internal/pool"
1010

11-
. "github.com/onsi/ginkgo"
11+
. "github.com/onsi/ginkgo/v2"
1212
. "github.com/onsi/gomega"
1313
)
1414

listener_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
"github.com/go-pg/pg/v10"
88

9-
. "github.com/onsi/ginkgo"
9+
. "github.com/onsi/ginkgo/v2"
1010
. "github.com/onsi/gomega"
1111
)
1212

main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"testing"
1010
"time"
1111

12-
. "github.com/onsi/ginkgo"
12+
. "github.com/onsi/ginkgo/v2"
1313
. "gopkg.in/check.v1"
1414

1515
"github.com/go-pg/pg/v10"

orm/delete_test.go

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

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

0 commit comments

Comments
 (0)