Skip to content

Commit 912e3b3

Browse files
Update module github.com/onsi/ginkgo to v2
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
1 parent 00ad55c commit 912e3b3

File tree

13 files changed

+55
-160
lines changed

13 files changed

+55
-160
lines changed

go.mod

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/go-chi/httprate v0.15.0
1010
github.com/google/uuid v1.6.0
1111
github.com/hashicorp/golang-lru/v2 v2.0.7
12-
github.com/onsi/ginkgo v1.16.5
12+
github.com/onsi/ginkgo/v2 v2.27.3
1313
github.com/onsi/gomega v1.38.2
1414
github.com/prometheus/client_golang v1.23.2
1515
github.com/redhatinsights/app-common-go v1.6.8
@@ -21,44 +21,44 @@ require (
2121
)
2222

2323
require (
24+
github.com/Masterminds/semver/v3 v3.4.0 // indirect
2425
github.com/beorn7/perks v1.0.1 // indirect
2526
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2627
github.com/fsnotify/fsnotify v1.9.0 // indirect
28+
github.com/go-logr/logr v1.4.3 // indirect
29+
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
2730
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
2831
github.com/google/go-cmp v0.7.0 // indirect
32+
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
2933
github.com/jackc/pgpassfile v1.0.0 // indirect
3034
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
3135
github.com/jackc/pgx/v5 v5.7.6 // indirect
3236
github.com/jackc/puddle/v2 v2.2.2 // indirect
3337
github.com/jinzhu/inflection v1.0.0 // indirect
3438
github.com/jinzhu/now v1.1.5 // indirect
3539
github.com/jmespath/go-jmespath v0.4.0 // indirect
36-
github.com/klauspost/compress v1.18.0 // indirect
3740
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
3841
github.com/magiconair/properties v1.8.10 // indirect
3942
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
40-
github.com/nxadm/tail v1.4.11 // indirect
4143
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
4244
github.com/prometheus/client_model v0.6.2 // indirect
4345
github.com/prometheus/common v0.67.4 // indirect
4446
github.com/prometheus/procfs v0.19.2 // indirect
4547
github.com/sagikazarmark/locafero v0.12.0 // indirect
46-
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
4748
github.com/spf13/afero v1.15.0 // indirect
4849
github.com/spf13/cast v1.10.0 // indirect
4950
github.com/spf13/pflag v1.0.10 // indirect
5051
github.com/subosito/gotenv v1.6.0 // indirect
5152
github.com/zeebo/xxh3 v1.0.2 // indirect
52-
go.uber.org/multierr v1.11.0 // indirect
5353
go.yaml.in/yaml/v2 v2.4.3 // indirect
5454
go.yaml.in/yaml/v3 v3.0.4 // indirect
5555
golang.org/x/crypto v0.45.0 // indirect
5656
golang.org/x/exp v0.0.0-20251009144603-d2f985daa21b // indirect
57+
golang.org/x/mod v0.29.0 // indirect
5758
golang.org/x/net v0.47.0 // indirect
5859
golang.org/x/sync v0.18.0 // indirect
5960
golang.org/x/sys v0.38.0 // indirect
6061
golang.org/x/text v0.31.0 // indirect
62+
golang.org/x/tools v0.38.0 // indirect
6163
google.golang.org/protobuf v1.36.10 // indirect
62-
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
63-
gopkg.in/yaml.v3 v3.0.1 // indirect
6464
)

go.sum

Lines changed: 37 additions & 142 deletions
Large diffs are not rendered by default.

internal/endpoints/endpoints_db_test/endpoints_db_suite_test.go

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

6-
. "github.com/onsi/ginkgo"
6+
. "github.com/onsi/ginkgo/v2"
77
. "github.com/onsi/gomega"
88
l "github.com/redhatinsights/payload-tracker-go/internal/logging"
99
)

internal/endpoints/endpoints_db_test/payloads_db_test.go

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

1212
"github.com/go-chi/chi/v5"
1313
"github.com/google/uuid"
14-
. "github.com/onsi/ginkgo"
14+
. "github.com/onsi/ginkgo/v2"
1515
. "github.com/onsi/gomega"
1616

1717
"github.com/redhatinsights/payload-tracker-go/internal/endpoints"

internal/endpoints/endpoints_suite_test.go

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

6-
. "github.com/onsi/ginkgo"
6+
. "github.com/onsi/ginkgo/v2"
77
. "github.com/onsi/gomega"
88
l "github.com/redhatinsights/payload-tracker-go/internal/logging"
99
)

internal/endpoints/payloads_test.go

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

1212
"github.com/go-chi/chi/v5"
1313
"github.com/google/uuid"
14-
. "github.com/onsi/ginkgo"
14+
. "github.com/onsi/ginkgo/v2"
1515
. "github.com/onsi/gomega"
1616
"gorm.io/gorm"
1717

internal/endpoints/roles_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"net/http"
55
"net/http/httptest"
66

7-
. "github.com/onsi/ginkgo"
7+
. "github.com/onsi/ginkgo/v2"
88
. "github.com/onsi/gomega"
99

1010
"github.com/redhatinsights/payload-tracker-go/internal/endpoints"

internal/endpoints/statuses_test.go

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

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

internal/kafka/handler_suite_test.go

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

6-
. "github.com/onsi/ginkgo"
6+
. "github.com/onsi/ginkgo/v2"
77
. "github.com/onsi/gomega"
88
l "github.com/redhatinsights/payload-tracker-go/internal/logging"
99
)

internal/kafka/handler_test.go

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

88
k "github.com/confluentinc/confluent-kafka-go/v2/kafka"
99
"github.com/google/uuid"
10-
. "github.com/onsi/ginkgo"
10+
. "github.com/onsi/ginkgo/v2"
1111
. "github.com/onsi/gomega"
1212

1313
"github.com/redhatinsights/payload-tracker-go/internal/config"

0 commit comments

Comments
 (0)