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

Commit e0c9b91

Browse files
Update module github.com/cucumber/common/messages/go/v18 to v19 (#129)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: David Goss <[email protected]>
1 parent cb1bf37 commit e0c9b91

File tree

10 files changed

+25
-267
lines changed

10 files changed

+25
-267
lines changed

go/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@ go 1.23.0
55
toolchain go1.24.4
66

77
require (
8-
github.com/cucumber/common/messages/go/v18 v18.0.0
98
github.com/cucumber/common/messages/go/v19 v19.1.2
109
github.com/onsi/ginkgo v1.16.5
11-
github.com/onsi/ginkgo/v2 v2.23.4
1210
github.com/onsi/gomega v1.37.0
1311
)
1412

@@ -17,7 +15,7 @@ require (
1715
github.com/gofrs/uuid v4.2.0+incompatible // indirect
1816
github.com/google/go-cmp v0.7.0 // indirect
1917
github.com/nxadm/tail v1.4.8 // indirect
20-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
18+
github.com/onsi/ginkgo/v2 v2.23.4 // indirect
2119
golang.org/x/net v0.37.0 // indirect
2220
golang.org/x/sys v0.32.0 // indirect
2321
golang.org/x/text v0.23.0 // indirect

go/go.sum

Lines changed: 16 additions & 256 deletions
Large diffs are not rendered by default.

go/json.go

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

9-
"github.com/cucumber/common/messages/go/v18"
9+
"github.com/cucumber/common/messages/go/v19"
1010
)
1111

1212
type Formatter struct {

go/message_lookup.go

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

6-
"github.com/cucumber/common/messages/go/v18"
6+
"github.com/cucumber/common/messages/go/v19"
77
)
88

99
type MessageLookup struct {

go/message_lookup_test.go

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

33
import (
4-
"github.com/cucumber/common/messages/go/v18"
4+
"github.com/cucumber/common/messages/go/v19"
55

66
. "github.com/onsi/ginkgo"
77
. "github.com/onsi/gomega"

go/test_case.go

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

8-
"github.com/cucumber/common/messages/go/v18"
8+
"github.com/cucumber/common/messages/go/v19"
99
)
1010

1111
type TestCase struct {

go/test_case_test.go

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

33
import (
4-
"github.com/cucumber/common/messages/go/v18"
4+
"github.com/cucumber/common/messages/go/v19"
55
. "github.com/onsi/ginkgo"
66
. "github.com/onsi/gomega"
77
)

go/test_helpers.go

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

33
import (
4-
"github.com/cucumber/common/messages/go/v18"
4+
"github.com/cucumber/common/messages/go/v19"
55
)
66

77
func makeScenario(id string, steps []*messages.Step) *messages.Scenario {

go/test_step.go

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

9-
"github.com/cucumber/common/messages/go/v18"
9+
"github.com/cucumber/common/messages/go/v19"
1010
)
1111

1212
type TestStep struct {

go/test_step_test.go

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

33
import (
4-
"github.com/cucumber/common/messages/go/v18"
4+
"github.com/cucumber/common/messages/go/v19"
55
. "github.com/onsi/ginkgo"
66
. "github.com/onsi/gomega"
77
)

0 commit comments

Comments
 (0)