Skip to content

Commit

Permalink
fix(deps): update module github.com/cucumber/messages/go/v22 to v24 (#…
Browse files Browse the repository at this point in the history
…207)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: M.P. Korstanje <rien.korstanje@gmail.com>
  • Loading branch information
renovate[bot] and mpkorstanje authored Jan 4, 2024
1 parent 7c4c131 commit 1e1f01e
Show file tree
Hide file tree
Showing 14 changed files with 13 additions and 15 deletions.
2 changes: 1 addition & 1 deletion go/astbuilder.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package gherkin

import (
"github.com/cucumber/messages/go/v22"
"github.com/cucumber/messages/go/v24"
"strings"
)

Expand Down
2 changes: 1 addition & 1 deletion go/bench_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package gherkin

import (
messages "github.com/cucumber/messages/go/v22"
messages "github.com/cucumber/messages/go/v24"
"strings"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion go/dialect.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package gherkin

import messages "github.com/cucumber/messages/go/v22"
import messages "github.com/cucumber/messages/go/v24"

type Dialect struct {
Language string
Expand Down
2 changes: 1 addition & 1 deletion go/dialects_builtin.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion go/dialects_builtin.go.jq
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
)
| "// Code generated from dialects_builtin.go.jq (make dialects_builtin.go); DO NOT EDIT.\n\n" # Standard header defined at https://golang.org/s/generatedcode
+ "package gherkin\n\n"
+ "import messages \"github.com/cucumber/messages/go/v22\"\n\n"
+ "import messages \"github.com/cucumber/messages/go/v24\"\n\n"
+ "// Builtin dialects for " + ([ $root | to_entries[] | .key+" ("+.value.name+")" ] | join(", ")) + "\n"
+ "func DialectsBuiltin() DialectProvider {\n"
+ "\treturn builtinDialects\n"
Expand Down
2 changes: 1 addition & 1 deletion go/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package gherkin

import (
"fmt"
messages "github.com/cucumber/messages/go/v22"
messages "github.com/cucumber/messages/go/v24"
"os"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion go/gherkin.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package gherkin
import (
"bufio"
"fmt"
"github.com/cucumber/messages/go/v22"
"github.com/cucumber/messages/go/v24"
"io"
"strings"
)
Expand Down
1 change: 0 additions & 1 deletion go/go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
module github.com/cucumber/gherkin/go/v27

require (
github.com/cucumber/messages/go/v22 v22.0.0
github.com/cucumber/messages/go/v24 v24.0.1
github.com/stretchr/testify v1.8.4
)
Expand Down
3 changes: 1 addition & 2 deletions go/go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
github.com/cucumber/messages/go/v22 v22.0.0 h1:hk3ITpEWQ+KWDe619zYcqtaLOfcu9jgClSeps3DlNWI=
github.com/cucumber/messages/go/v22 v22.0.0/go.mod h1:aZipXTKc0JnjCsXrJnuZpWhtay93k7Rn3Dee7iyPJjs=
github.com/cucumber/messages/go/v24 v24.0.1 h1:jajAQDk3fPa4RhIANE+NOxGdCKQdi7RYjd8wdKXnOu4=
github.com/cucumber/messages/go/v24 v24.0.1/go.mod h1:ns4Befq4c4n9/B5APpTlBu5kXL1DVE4+5bbe0vSV4fc=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
Expand Down
2 changes: 1 addition & 1 deletion go/main/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"flag"
"fmt"
gherkin "github.com/cucumber/gherkin/go/v27"
"github.com/cucumber/messages/go/v22"
"github.com/cucumber/messages/go/v24"
"os"
)

Expand Down
2 changes: 1 addition & 1 deletion go/messages.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package gherkin
import (
"encoding/json"
"fmt"
"github.com/cucumber/messages/go/v22"
"github.com/cucumber/messages/go/v24"
"io"
"io/ioutil"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion go/messages_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package gherkin
import (
"bytes"
"encoding/json"
"github.com/cucumber/messages/go/v22"
"github.com/cucumber/messages/go/v24"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion go/pickles.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package gherkin

import (
"github.com/cucumber/messages/go/v22"
"github.com/cucumber/messages/go/v24"
"strings"
)

Expand Down
2 changes: 1 addition & 1 deletion go/pickles_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package gherkin
import (
"encoding/json"
"fmt"
"github.com/cucumber/messages/go/v22"
"github.com/cucumber/messages/go/v24"
"os"
"strings"
)
Expand Down

0 comments on commit 1e1f01e

Please sign in to comment.