Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump of all dependencies #24

Merged
merged 1 commit into from
May 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ This tool wouldn't be possible (or at least would have been a lot harder to
write) without the great work of the Go community. The following libraries are
used:

* https://github.com/Sirupsen/logrus
* https://github.com/sirupsen/logrus
* https://github.com/fatih/structs
* https://github.com/golang/snappy
* https://github.com/hashicorp/errwrap
Expand All @@ -259,7 +259,7 @@ used:
* https://github.com/hashicorp/go-rootcerts
* https://github.com/hashicorp/hcl
* https://github.com/hashicorp/vault
* https://github.com/Masterminds/sprig
* https://github.com/Masterminds/sprig/v3
* https://github.com/mitchellh/go-homedir
* https://github.com/mitchellh/mapstructure
* https://github.com/pkg/errors
Expand Down
6 changes: 3 additions & 3 deletions cmd/tpl/licenses_generated.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion cmd/tpl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"io"
"os"

"github.com/Sirupsen/logrus"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/spf13/pflag"
"github.com/zerok/tpl/internal/world"
)
Expand Down
31 changes: 12 additions & 19 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,16 @@ module github.com/zerok/tpl
go 1.13

require (
github.com/Masterminds/semver v1.4.2 // indirect
github.com/Masterminds/sprig v2.16.0+incompatible
github.com/Sirupsen/logrus v1.0.3
github.com/aokoli/goutils v1.0.1 // indirect
github.com/google/uuid v1.0.0 // indirect
github.com/hashicorp/go-retryablehttp v0.6.8
github.com/hashicorp/vault/api v1.0.4
github.com/huandu/xstrings v1.2.0 // indirect
github.com/imdario/mergo v0.3.6 // indirect
github.com/jmespath/go-jmespath v0.3.0
github.com/onsi/ginkgo v1.10.1 // indirect
github.com/onsi/gomega v1.7.0 // indirect
github.com/pkg/errors v0.8.0
github.com/sirupsen/logrus v1.4.2 // indirect
github.com/spf13/pflag v1.0.0
github.com/stretchr/testify v1.5.1
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
gopkg.in/yaml.v2 v2.2.2
github.com/Masterminds/sprig/v3 v3.2.2
github.com/google/uuid v1.2.0 // indirect
github.com/hashicorp/go-retryablehttp v0.7.0
github.com/hashicorp/vault/api v1.1.0
github.com/huandu/xstrings v1.3.2 // indirect
github.com/imdario/mergo v0.3.12 // indirect
github.com/jmespath/go-jmespath v0.4.0
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.8.1
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.7.0
gopkg.in/yaml.v2 v2.4.0
)
198 changes: 100 additions & 98 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion internal/world/azure.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"os"
"strings"

"github.com/Sirupsen/logrus"
"github.com/hashicorp/go-retryablehttp"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion internal/world/vault.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (

"github.com/pkg/errors"

"github.com/Sirupsen/logrus"
vault "github.com/hashicorp/vault/api"
"github.com/sirupsen/logrus"
)

func (w *World) Vault() *Vault {
Expand Down
4 changes: 2 additions & 2 deletions internal/world/world.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (

"github.com/jmespath/go-jmespath"

"github.com/Masterminds/sprig"
"github.com/Sirupsen/logrus"
"github.com/Masterminds/sprig/v3"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)

var ErrInsecureRequired = errors.New("This feature requires the --insecure flag")
Expand Down