Skip to content

Commit 4b127d2

Browse files
committed
Update dependencies
1 parent 4c80752 commit 4b127d2

File tree

3 files changed

+65
-367
lines changed

3 files changed

+65
-367
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.18] - 2022-04-30
10+
11+
### Changed
12+
13+
- Updated Go to 1.18 and all dependencies
14+
15+
### Fixed
16+
17+
- `ERROR: You're using an RSA key with SHA-1, which is no longer allowed. Please use a newer client or a different key type.`
18+
919
## [0.0.17] - 2022-01-15
1020

1121
### Changed

go.mod

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,46 @@
11
module github.com/plumber-cd/terraform-backend-git
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/go-git/go-billy/v5 v5.3.1
77
github.com/go-git/go-git/v5 v5.4.2
88
github.com/gorilla/handlers v1.5.1
99
github.com/mitchellh/go-homedir v1.1.0
10-
github.com/spf13/cobra v1.3.0
11-
github.com/spf13/viper v1.10.1
10+
github.com/spf13/cobra v1.4.0
11+
github.com/spf13/viper v1.11.0
1212
github.com/xanzy/ssh-agent v0.3.1
13-
golang.org/x/crypto v0.0.0-20220112180741-5e0467b6c7ce
14-
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9
13+
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f
14+
golang.org/x/sys v0.0.0-20220429233432-b5fbb4746d32
1515
)
1616

1717
require (
18-
github.com/Microsoft/go-winio v0.5.1 // indirect
19-
github.com/ProtonMail/go-crypto v0.0.0-20220113124808-70ae35bab23f // indirect
18+
github.com/Microsoft/go-winio v0.5.2 // indirect
19+
github.com/ProtonMail/go-crypto v0.0.0-20220407094043-a94812496cf5 // indirect
2020
github.com/acomagu/bufpipe v1.0.3 // indirect
21-
github.com/emirpasic/gods v1.12.0 // indirect
21+
github.com/emirpasic/gods v1.18.1 // indirect
2222
github.com/felixge/httpsnoop v1.0.2 // indirect
23-
github.com/fsnotify/fsnotify v1.5.1 // indirect
23+
github.com/fsnotify/fsnotify v1.5.4 // indirect
2424
github.com/go-git/gcfg v1.5.0 // indirect
2525
github.com/hashicorp/hcl v1.0.0 // indirect
2626
github.com/imdario/mergo v0.3.12 // indirect
2727
github.com/inconshreveable/mousetrap v1.0.0 // indirect
2828
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
29-
github.com/kevinburke/ssh_config v1.1.0 // indirect
30-
github.com/magiconair/properties v1.8.5 // indirect
31-
github.com/mitchellh/mapstructure v1.4.3 // indirect
32-
github.com/pelletier/go-toml v1.9.4 // indirect
29+
github.com/kevinburke/ssh_config v1.2.0 // indirect
30+
github.com/magiconair/properties v1.8.6 // indirect
31+
github.com/mitchellh/mapstructure v1.5.0 // indirect
32+
github.com/pelletier/go-toml v1.9.5 // indirect
33+
github.com/pelletier/go-toml/v2 v2.0.0 // indirect
3334
github.com/sergi/go-diff v1.2.0 // indirect
34-
github.com/spf13/afero v1.8.0 // indirect
35+
github.com/spf13/afero v1.8.2 // indirect
3536
github.com/spf13/cast v1.4.1 // indirect
3637
github.com/spf13/jwalterweatherman v1.1.0 // indirect
3738
github.com/spf13/pflag v1.0.5 // indirect
3839
github.com/subosito/gotenv v1.2.0 // indirect
39-
golang.org/x/net v0.0.0-20220114011407-0dd24b26b47d // indirect
40-
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
40+
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 // indirect
4141
golang.org/x/text v0.3.7 // indirect
42-
gopkg.in/ini.v1 v1.66.2 // indirect
42+
gopkg.in/ini.v1 v1.66.4 // indirect
4343
gopkg.in/warnings.v0 v0.1.2 // indirect
4444
gopkg.in/yaml.v2 v2.4.0 // indirect
45+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
4546
)

0 commit comments

Comments
 (0)