Skip to content

Commit 2193fd5

Browse files
committed
chore(deps): update dependencies (#47)
- Updates Go to v1.22.7. - Updates dependencies + tidy. Signed-off-by: Ryan Johnson <[email protected]>
1 parent aee1c84 commit 2193fd5

File tree

5 files changed

+220
-467
lines changed

5 files changed

+220
-467
lines changed

.goreleaser.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ builds:
2424
ignore:
2525
- goos: darwin
2626
goarch: '386'
27-
- goos: darwin
28-
goarch: arm64
29-
- goos: windows
30-
goarch: arm64
3127
binary: '{{ .ProjectName }}_v{{ .Version }}'
3228
archives:
3329
- format: zip

CHANGELOG.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# CHANGELOG
2+
3+
## [v0.5.0](https://github.com/vmware/terraform-provider-hcx/releases/tag/v0.5.0)
4+
5+
> Release Date: 2025-01-13
6+
7+
- License changed from Apache License 2.0 to Mozilla Public License 2.0.
8+
- Transferred to [`vmware/terraform-provider-hcx`](https://github.com/vmware/terraform-provider-hcx) from [`adeleporte/terraform-provider-hcx`](https://github.com/adeleporte/terraform-provider-hcx).
9+
10+
## [v0.4.3](https://github.com/vmware/terraform-provider-hcx/releases/tag/v0.4.3)
11+
12+
> Release Date: 2024-01-22
13+
14+
## [v0.4.2](https://github.com/vmware/terraform-provider-hcx/releases/tag/v0.4.2)
15+
16+
> Release Date: 2021-07-15
17+
18+
## [v0.4.1](https://github.com/vmware/terraform-provider-hcx/releases/tag/v0.4.1)
19+
20+
> Release Date: 2021-03-10
21+
22+
## [v0.4.0](https://github.com/vmware/terraform-provider-hcx/releases/tag/v0.4.0)
23+
24+
> Release Date: 2021-03-10
25+
26+
## [v0.3.4](https://github.com/vmware/terraform-provider-hcx/releases/tag/v0.3.4)
27+
28+
> Release Date: 2021-01-27
29+
30+
## [v0.3.3](https://github.com/vmware/terraform-provider-hcx/releases/tag/v0.3.3)
31+
32+
> Release Date: 2021-01-25
33+
34+
## [v0.3.2](https://github.com/vmware/terraform-provider-hcx/releases/tag/v0.3.2)
35+
36+
> Release Date: 2021-01-25
37+
38+
## [v0.3.1](https://github.com/vmware/terraform-provider-hcx/releases/tag/v0.3.1)
39+
40+
> Release Date: 2021-01-25
41+
42+
## [v0.3.0](https://github.com/vmware/terraform-provider-hcx/releases/tag/v0.3.0)
43+
44+
> Release Date: 2021-01-20
45+
46+
## [v0.2.9](https://github.com/vmware/terraform-provider-hcx/releases/tag/v0.2.9)
47+
48+
> Release Date: 2021-01-20
49+
50+
## [v0.2.8](https://github.com/vmware/terraform-provider-hcx/releases/tag/v0.2.8)
51+
52+
> Release Date: 2021-01-16
53+
54+
## [v0.2.7](https://github.com/vmware/terraform-provider-hcx/releases/tag/v0.2.7)
55+
56+
> Release Date: 2021-01-11
57+
58+
## [v0.2.5](https://github.com/vmware/terraform-provider-hcx/releases/tag/v0.2.5)
59+
60+
> Release Date: 2020-12-08
61+
62+
## [v0.2.4](https://github.com/vmware/terraform-provider-hcx/releases/tag/v0.2.4)
63+
64+
> Release Date: 2020-11-23

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Learn more:
2626

2727
For general information about Terraform, visit [HashiCorp Developer][terraform-install] and [the project][terraform-github] on GitHub.
2828

29-
* [Go 1.15][golang-install]
29+
* [Go 1.22.7][golang-install]
3030

3131
Required, if [building][provider-build] the provider.
3232

go.mod

Lines changed: 48 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,55 @@
11
module github.com/vmware/terraform-provider-hcx
22

3-
go 1.15
3+
go 1.22.7
4+
5+
toolchain go1.23.4
46

57
require (
68
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
79
github.com/hashicorp/go-hclog v1.6.3
8-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.2.0
9-
github.com/zclconf/go-cty v1.5.1 // indirect
10+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.35.0
11+
)
12+
13+
require (
14+
github.com/agext/levenshtein v1.2.2 // indirect
15+
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
16+
github.com/fatih/color v1.18.0 // indirect
17+
github.com/golang/protobuf v1.5.4 // indirect
18+
github.com/google/go-cmp v0.6.0 // indirect
19+
github.com/hashicorp/go-plugin v1.6.2 // indirect
20+
github.com/hashicorp/go-uuid v1.0.3 // indirect
21+
github.com/hashicorp/go-version v1.7.0 // indirect
22+
github.com/hashicorp/hcl/v2 v2.22.0 // indirect
23+
github.com/hashicorp/logutils v1.0.0 // indirect
24+
github.com/hashicorp/terraform-plugin-go v0.25.0 // indirect
25+
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
26+
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
27+
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
28+
github.com/hashicorp/yamux v0.1.1 // indirect
29+
github.com/kr/pretty v0.3.1 // indirect
30+
github.com/mattn/go-colorable v0.1.13 // indirect
31+
github.com/mattn/go-isatty v0.0.20 // indirect
32+
github.com/mitchellh/copystructure v1.2.0 // indirect
33+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
34+
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
35+
github.com/mitchellh/mapstructure v1.5.0 // indirect
36+
github.com/mitchellh/reflectwalk v1.0.2 // indirect
37+
github.com/oklog/run v1.0.0 // indirect
38+
github.com/rogpeppe/go-internal v1.11.0 // indirect
39+
github.com/stretchr/testify v1.9.0 // indirect
40+
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
41+
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
42+
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
43+
github.com/zclconf/go-cty v1.15.0 // indirect
44+
golang.org/x/mod v0.21.0 // indirect
45+
golang.org/x/net v0.33.0 // indirect
46+
golang.org/x/sync v0.10.0 // indirect
47+
golang.org/x/sys v0.29.0 // indirect
48+
golang.org/x/text v0.21.0 // indirect
49+
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
50+
google.golang.org/appengine v1.6.8 // indirect
51+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect
52+
google.golang.org/grpc v1.67.1 // indirect
53+
google.golang.org/protobuf v1.35.1 // indirect
54+
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
1055
)

0 commit comments

Comments
 (0)