Skip to content

Commit 0dfa50b

Browse files
feat: updated dependencies
1 parent 3beb12a commit 0dfa50b

15 files changed

+679
-208
lines changed

β€Žgo.modβ€Ž

Lines changed: 34 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -3,47 +3,49 @@ module github.com/go-semantic-release/semantic-release/v2
33
go 1.17
44

55
require (
6-
github.com/Masterminds/semver/v3 v3.1.0
6+
github.com/Masterminds/semver/v3 v3.1.1
77
github.com/cavaliercoder/grab v1.0.1-0.20201108051000-98a5bfe305ec
8-
github.com/golang/protobuf v1.4.3
9-
github.com/hashicorp/go-hclog v0.15.0
10-
github.com/hashicorp/go-plugin v1.4.0
11-
github.com/schollz/progressbar/v3 v3.7.1
12-
github.com/spf13/cobra v1.1.1
13-
github.com/spf13/viper v1.7.1
14-
github.com/stretchr/testify v1.6.1
15-
google.golang.org/grpc v1.33.2
16-
google.golang.org/protobuf v1.25.0
8+
github.com/hashicorp/go-hclog v1.1.0
9+
github.com/hashicorp/go-plugin v1.4.3
10+
github.com/schollz/progressbar/v3 v3.8.5
11+
github.com/spf13/cobra v1.3.0
12+
github.com/spf13/viper v1.10.1
13+
github.com/stretchr/testify v1.7.0
14+
google.golang.org/grpc v1.44.0
15+
google.golang.org/protobuf v1.27.1
1716
)
1817

1918
require (
2019
github.com/davecgh/go-spew v1.1.1 // indirect
21-
github.com/fatih/color v1.7.0 // indirect
22-
github.com/fsnotify/fsnotify v1.4.7 // indirect
20+
github.com/fatih/color v1.13.0 // indirect
21+
github.com/fsnotify/fsnotify v1.5.1 // indirect
22+
github.com/golang/protobuf v1.5.2 // indirect
2323
github.com/hashicorp/hcl v1.0.0 // indirect
24-
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect
24+
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87 // indirect
2525
github.com/inconshreveable/mousetrap v1.0.0 // indirect
26-
github.com/magiconair/properties v1.8.1 // indirect
27-
github.com/mattn/go-colorable v0.1.4 // indirect
28-
github.com/mattn/go-isatty v0.0.12 // indirect
29-
github.com/mattn/go-runewidth v0.0.9 // indirect
26+
github.com/magiconair/properties v1.8.5 // indirect
27+
github.com/mattn/go-colorable v0.1.12 // indirect
28+
github.com/mattn/go-isatty v0.0.14 // indirect
29+
github.com/mattn/go-runewidth v0.0.13 // indirect
3030
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
31-
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
32-
github.com/mitchellh/mapstructure v1.1.2 // indirect
33-
github.com/oklog/run v1.0.0 // indirect
34-
github.com/pelletier/go-toml v1.2.0 // indirect
31+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
32+
github.com/mitchellh/mapstructure v1.4.3 // indirect
33+
github.com/oklog/run v1.1.0 // indirect
34+
github.com/pelletier/go-toml v1.9.4 // indirect
3535
github.com/pmezard/go-difflib v1.0.0 // indirect
36-
github.com/spf13/afero v1.1.2 // indirect
37-
github.com/spf13/cast v1.3.0 // indirect
38-
github.com/spf13/jwalterweatherman v1.0.0 // indirect
36+
github.com/rivo/uniseg v0.2.0 // indirect
37+
github.com/spf13/afero v1.8.0 // indirect
38+
github.com/spf13/cast v1.4.1 // indirect
39+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
3940
github.com/spf13/pflag v1.0.5 // indirect
4041
github.com/subosito/gotenv v1.2.0 // indirect
41-
golang.org/x/crypto v0.0.0-20201112155050-0c6587e931a9 // indirect
42-
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect
43-
golang.org/x/sys v0.0.0-20201113135734-0a15ea8d9b02 // indirect
44-
golang.org/x/text v0.3.2 // indirect
45-
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
46-
gopkg.in/ini.v1 v1.51.0 // indirect
47-
gopkg.in/yaml.v2 v2.2.8 // indirect
48-
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
42+
golang.org/x/crypto v0.0.0-20220128200615-198e4374d7ed // indirect
43+
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
44+
golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27 // indirect
45+
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
46+
golang.org/x/text v0.3.7 // indirect
47+
google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350 // indirect
48+
gopkg.in/ini.v1 v1.66.3 // indirect
49+
gopkg.in/yaml.v2 v2.4.0 // indirect
50+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
4951
)

β€Žgo.sumβ€Ž

Lines changed: 571 additions & 115 deletions
Large diffs are not rendered by default.

β€Žpkg/analyzer/commit_analyzer.pb.goβ€Ž

Lines changed: 2 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpkg/analyzer/commit_analyzer_grpc.pb.goβ€Ž

Lines changed: 10 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpkg/condition/ci_condition.pb.goβ€Ž

Lines changed: 2 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpkg/condition/ci_condition_grpc.pb.goβ€Ž

Lines changed: 10 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpkg/generator/changelog_generator.pb.goβ€Ž

Lines changed: 2 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpkg/generator/changelog_generator_grpc.pb.goβ€Ž

Lines changed: 10 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpkg/hooks/hooks.pb.goβ€Ž

Lines changed: 2 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpkg/hooks/hooks_grpc.pb.goβ€Ž

Lines changed: 10 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)