Skip to content

Commit 07a3331

Browse files
authored
Update golang to 1.24, golang.org/x/net to v.0.44.0 and terraform-plu… (#1322)
* Update golang to 1.24, golang.org/x/net to v.0.44.0 and terraform-plugin-sdk/v2 to v2.38.1 Signed-off-by: Sebastian Schuster <[email protected]> * Fixed format errors Signed-off-by: Sebastian Schuster <[email protected]> * Update readme required versions Signed-off-by: Sebastian Schuster <[email protected]> --------- Signed-off-by: Sebastian Schuster <[email protected]>
1 parent 1d616da commit 07a3331

File tree

4 files changed

+80
-24
lines changed

4 files changed

+80
-24
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ build you can use the `linux_amd64` build as long as `libc6-compat` is installed
7474

7575
## Development
7676

77-
This project requires Go 1.23 and Terraform 1.12.2.
77+
This project requires Go 1.24 and Terraform 1.13.3.
7878
This project uses [Go Modules](https://github.com/golang/go/wiki/Modules) for dependency management, which allows this project to exist outside an existing GOPATH.
7979

8080
After cloning the repository, you can build the project by running `make build`.

go.mod

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ require (
99
github.com/hashicorp/go-uuid v1.0.3
1010
github.com/hashicorp/go-version v1.7.0
1111
github.com/hashicorp/terraform-plugin-log v0.9.0
12-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.37.0
13-
golang.org/x/net v0.43.0
12+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.38.1
13+
golang.org/x/net v0.44.0
1414
)
1515

1616
require (
17-
github.com/ProtonMail/go-crypto v1.1.6 // indirect
17+
github.com/ProtonMail/go-crypto v1.3.0 // indirect
1818
github.com/agext/levenshtein v1.2.3 // indirect
1919
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
2020
github.com/cloudflare/circl v1.6.1 // indirect
@@ -25,14 +25,14 @@ require (
2525
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
2626
github.com/hashicorp/go-hclog v1.6.3 // indirect
2727
github.com/hashicorp/go-multierror v1.1.1 // indirect
28-
github.com/hashicorp/go-plugin v1.6.3 // indirect
28+
github.com/hashicorp/go-plugin v1.7.0 // indirect
2929
github.com/hashicorp/hc-install v0.9.2 // indirect
30-
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
30+
github.com/hashicorp/hcl/v2 v2.24.0 // indirect
3131
github.com/hashicorp/logutils v1.0.0 // indirect
32-
github.com/hashicorp/terraform-exec v0.23.0 // indirect
33-
github.com/hashicorp/terraform-json v0.25.0 // indirect
34-
github.com/hashicorp/terraform-plugin-go v0.27.0 // indirect
35-
github.com/hashicorp/terraform-registry-address v0.2.5 // indirect
32+
github.com/hashicorp/terraform-exec v0.24.0 // indirect
33+
github.com/hashicorp/terraform-json v0.27.2 // indirect
34+
github.com/hashicorp/terraform-plugin-go v0.29.0 // indirect
35+
github.com/hashicorp/terraform-registry-address v0.4.0 // indirect
3636
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
3737
github.com/hashicorp/yamux v0.1.2 // indirect
3838
github.com/mattn/go-colorable v0.1.14 // indirect
@@ -42,23 +42,23 @@ require (
4242
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
4343
github.com/mitchellh/mapstructure v1.5.0 // indirect
4444
github.com/mitchellh/reflectwalk v1.0.2 // indirect
45-
github.com/oklog/run v1.1.0 // indirect
45+
github.com/oklog/run v1.2.0 // indirect
4646
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
4747
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
4848
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
49-
github.com/zclconf/go-cty v1.16.2 // indirect
50-
golang.org/x/crypto v0.41.0 // indirect
51-
golang.org/x/mod v0.26.0 // indirect
52-
golang.org/x/sync v0.16.0 // indirect
53-
golang.org/x/sys v0.35.0 // indirect
54-
golang.org/x/text v0.28.0 // indirect
55-
golang.org/x/tools v0.35.0 // indirect
49+
github.com/zclconf/go-cty v1.17.0 // indirect
50+
golang.org/x/crypto v0.42.0 // indirect
51+
golang.org/x/mod v0.28.0 // indirect
52+
golang.org/x/sync v0.17.0 // indirect
53+
golang.org/x/sys v0.36.0 // indirect
54+
golang.org/x/text v0.29.0 // indirect
55+
golang.org/x/tools v0.37.0 // indirect
5656
google.golang.org/appengine v1.6.8 // indirect
57-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250313205543-e70fdf4c4cb4 // indirect
58-
google.golang.org/grpc v1.72.1 // indirect
59-
google.golang.org/protobuf v1.36.6 // indirect
57+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250908214217-97024824d090 // indirect
58+
google.golang.org/grpc v1.75.1 // indirect
59+
google.golang.org/protobuf v1.36.9 // indirect
6060
)
6161

62-
go 1.23.0
62+
go 1.24.0
6363

6464
toolchain go1.24.4

0 commit comments

Comments
 (0)