Skip to content

Commit d820dd7

Browse files
committed
Update dependencies
1 parent c723253 commit d820dd7

File tree

4 files changed

+144
-516
lines changed

4 files changed

+144
-516
lines changed

go.mod

Lines changed: 36 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,74 @@
11
module github.com/ans-group/terraform-provider-loadbalancer
22

3-
go 1.20
3+
go 1.23.0
4+
5+
toolchain go1.24.1
46

57
require (
6-
github.com/ans-group/sdk-go v1.17.0
8+
github.com/ans-group/sdk-go v1.22.2
79
github.com/hashicorp/terraform-plugin-log v0.9.0
8-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.32.0
10+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.36.1
911
)
1012

1113
require (
1214
github.com/agext/levenshtein v1.2.2 // indirect
1315
github.com/ans-group/go-durationstring v1.2.0 // indirect
1416
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
15-
github.com/fatih/color v1.14.1 // indirect
16-
github.com/fsnotify/fsnotify v1.6.0 // indirect
17-
github.com/go-playground/locales v0.12.1 // indirect
18-
github.com/go-playground/universal-translator v0.16.0 // indirect
19-
github.com/golang/protobuf v1.5.3 // indirect
17+
github.com/fatih/color v1.16.0 // indirect
18+
github.com/fsnotify/fsnotify v1.8.0 // indirect
19+
github.com/go-playground/locales v0.14.1 // indirect
20+
github.com/go-playground/universal-translator v0.18.1 // indirect
21+
github.com/golang/protobuf v1.5.4 // indirect
2022
github.com/google/go-cmp v0.6.0 // indirect
2123
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
22-
github.com/hashicorp/go-hclog v1.5.0 // indirect
23-
github.com/hashicorp/go-plugin v1.6.0 // indirect
24+
github.com/hashicorp/go-hclog v1.6.3 // indirect
25+
github.com/hashicorp/go-plugin v1.6.2 // indirect
2426
github.com/hashicorp/go-uuid v1.0.3 // indirect
25-
github.com/hashicorp/go-version v1.6.0 // indirect
27+
github.com/hashicorp/go-version v1.7.0 // indirect
2628
github.com/hashicorp/hcl v1.0.0 // indirect
27-
github.com/hashicorp/hcl/v2 v2.19.1 // indirect
29+
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
2830
github.com/hashicorp/logutils v1.0.0 // indirect
29-
github.com/hashicorp/terraform-plugin-go v0.21.0 // indirect
30-
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
31+
github.com/hashicorp/terraform-plugin-go v0.26.0 // indirect
32+
github.com/hashicorp/terraform-registry-address v0.2.4 // indirect
3133
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
3234
github.com/hashicorp/yamux v0.1.1 // indirect
33-
github.com/leodido/go-urn v1.1.0 // indirect
35+
github.com/leodido/go-urn v1.4.0 // indirect
3436
github.com/magiconair/properties v1.8.7 // indirect
3537
github.com/mattn/go-colorable v0.1.13 // indirect
36-
github.com/mattn/go-isatty v0.0.17 // indirect
38+
github.com/mattn/go-isatty v0.0.20 // indirect
3739
github.com/mitchellh/copystructure v1.2.0 // indirect
3840
github.com/mitchellh/go-homedir v1.1.0 // indirect
3941
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
4042
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
4143
github.com/mitchellh/mapstructure v1.5.0 // indirect
4244
github.com/mitchellh/reflectwalk v1.0.2 // indirect
4345
github.com/oklog/run v1.0.0 // indirect
44-
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
45-
github.com/sagikazarmark/locafero v0.3.0 // indirect
46+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
47+
github.com/sagikazarmark/locafero v0.6.0 // indirect
4648
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
4749
github.com/sourcegraph/conc v0.3.0 // indirect
48-
github.com/spf13/afero v1.10.0 // indirect
49-
github.com/spf13/cast v1.5.1 // indirect
50+
github.com/spf13/afero v1.11.0 // indirect
51+
github.com/spf13/cast v1.7.0 // indirect
5052
github.com/spf13/pflag v1.0.5 // indirect
51-
github.com/spf13/viper v1.17.0 // indirect
53+
github.com/spf13/viper v1.19.0 // indirect
5254
github.com/subosito/gotenv v1.6.0 // indirect
5355
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
5456
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
5557
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
56-
github.com/zclconf/go-cty v1.14.2 // indirect
57-
go.uber.org/atomic v1.9.0 // indirect
58-
go.uber.org/multierr v1.9.0 // indirect
59-
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
60-
golang.org/x/net v0.18.0 // indirect
61-
golang.org/x/sys v0.16.0 // indirect
62-
golang.org/x/text v0.14.0 // indirect
58+
github.com/zclconf/go-cty v1.16.2 // indirect
59+
go.uber.org/multierr v1.11.0 // indirect
60+
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect
61+
golang.org/x/mod v0.22.0 // indirect
62+
golang.org/x/net v0.36.0 // indirect
63+
golang.org/x/sync v0.11.0 // indirect
64+
golang.org/x/sys v0.30.0 // indirect
65+
golang.org/x/text v0.22.0 // indirect
66+
golang.org/x/tools v0.26.0 // indirect
6367
google.golang.org/appengine v1.6.8 // indirect
64-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect
65-
google.golang.org/grpc v1.61.0 // indirect
66-
google.golang.org/protobuf v1.32.0 // indirect
67-
gopkg.in/go-playground/validator.v9 v9.27.0 // indirect
68+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 // indirect
69+
google.golang.org/grpc v1.69.4 // indirect
70+
google.golang.org/protobuf v1.36.3 // indirect
71+
gopkg.in/go-playground/validator.v9 v9.31.0 // indirect
6872
gopkg.in/ini.v1 v1.67.0 // indirect
6973
gopkg.in/yaml.v3 v3.0.1 // indirect
7074
)

0 commit comments

Comments
 (0)