Skip to content

Commit 1446705

Browse files
committed
chore: bump dependencies
1 parent ecc8326 commit 1446705

File tree

509 files changed

+30670
-7611
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

509 files changed

+30670
-7611
lines changed

go.mod

+20-16
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,34 @@ module github.com/form3tech-oss/go-pact-testing/v2
33
go 1.20
44

55
require (
6-
github.com/avast/retry-go/v4 v4.3.3
7-
github.com/pact-foundation/pact-go v1.7.0
8-
github.com/sirupsen/logrus v1.9.0
9-
github.com/spf13/viper v1.15.0
10-
github.com/stretchr/testify v1.8.2
6+
github.com/avast/retry-go/v4 v4.5.1
7+
github.com/pact-foundation/pact-go v1.8.0
8+
github.com/sirupsen/logrus v1.9.3
9+
github.com/spf13/viper v1.18.2
10+
github.com/stretchr/testify v1.8.4
1111
)
1212

1313
require (
14-
github.com/davecgh/go-spew v1.1.1 // indirect
15-
github.com/fsnotify/fsnotify v1.6.0 // indirect
16-
github.com/hashicorp/go-version v1.5.0 // indirect
14+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
15+
github.com/fsnotify/fsnotify v1.7.0 // indirect
16+
github.com/hashicorp/go-version v1.6.0 // indirect
1717
github.com/hashicorp/hcl v1.0.0 // indirect
1818
github.com/hashicorp/logutils v1.0.0 // indirect
1919
github.com/magiconair/properties v1.8.7 // indirect
2020
github.com/mitchellh/mapstructure v1.5.0 // indirect
21-
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
22-
github.com/pmezard/go-difflib v1.0.0 // indirect
23-
github.com/spf13/afero v1.9.3 // indirect
24-
github.com/spf13/cast v1.5.0 // indirect
25-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
21+
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
22+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
23+
github.com/sagikazarmark/locafero v0.4.0 // indirect
24+
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
25+
github.com/sourcegraph/conc v0.3.0 // indirect
26+
github.com/spf13/afero v1.11.0 // indirect
27+
github.com/spf13/cast v1.6.0 // indirect
2628
github.com/spf13/pflag v1.0.5 // indirect
27-
github.com/subosito/gotenv v1.4.2 // indirect
28-
golang.org/x/sys v0.3.0 // indirect
29-
golang.org/x/text v0.5.0 // indirect
29+
github.com/subosito/gotenv v1.6.0 // indirect
30+
go.uber.org/multierr v1.11.0 // indirect
31+
golang.org/x/exp v0.0.0-20240222234643-814bf88cf225 // indirect
32+
golang.org/x/sys v0.17.0 // indirect
33+
golang.org/x/text v0.14.0 // indirect
3034
gopkg.in/ini.v1 v1.67.0 // indirect
3135
gopkg.in/yaml.v3 v3.0.1 // indirect
3236
)

go.sum

+58-512
Large diffs are not rendered by default.

pacttesting/pact_testing_integration_stage_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ func (s *pactTestingStage) pact_file_names_exclude_path_separator() *pactTesting
188188
func (s *pactTestingStage) provider_pact_verification_is_successful() *pactTestingStage {
189189
_, filename, _, _ := runtime.Caller(0) //nolint:dogsled // stdlib source
190190
dir := filename[0:strings.LastIndex(filename, "/")]
191-
b, err := os.ReadFile(dir + "/../build/pact-verifications/providerA.json")
191+
b, err := os.ReadFile(filepath.Join(dir, "../build/pact-verifications/providerA.json"))
192192
require.NoError(s.t, err)
193193

194194
str := string(b)

pacttesting/testing.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,10 @@ func getVersion() (string, error) {
128128
gitCommand := exec.Command("git", "describe", "--tags")
129129
var out bytes.Buffer
130130
gitCommand.Stdout = &out
131+
gitCommand.Stderr = &out
131132
err := gitCommand.Run()
132133
if err != nil {
133-
return "", fmt.Errorf("getting git version: %w", err)
134+
return "", fmt.Errorf("getting git version: %w; out: %s", err, out.String())
134135
}
135136

136137
version := strings.TrimRight(out.String(), "\n")

vendor/github.com/avast/retry-go/v4/README.md

+70-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/avast/retry-go/v4/VERSION

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/avast/retry-go/v4/options.go

+38-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)