Skip to content

Commit

Permalink
backport #35494 : move from Go 1.22.4 to 1.22.5 (#35496)
Browse files Browse the repository at this point in the history
* move from Go 1.22.4 to 1.22.5

* add CHANGELOG entry
  • Loading branch information
finnigja committed Jul 23, 2024
1 parent 27b3984 commit 0cbc9db
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .go-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.22.4
1.22.5
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ BUG FIXES:
* core: Terraform no longer performs an unnecessary refresh when removing an instance targeted by a `removed` block. ([#35458](https://github.com/hashicorp/terraform/pull/35458))
* config generation: Fix validation error when using nested computed or deprecated attributes. ([#35484](https://github.com/hashicorp/terraform/pull/35484))
* Updated to newer github.com/hashicorp/go-retryablehttp version, addressing CVE-2024-6104, and bringing in updates for several indirect dependencies. ([#35473](https://github.com/hashicorp/terraform/pull/35473))
* Moved to building with Go 1.22.5, which addresses CVE-2024-24791 and several other non-security bugs. ([#35494](https://github.com/hashicorp/terraform/pull/35494))

## 1.9.2 (July 10, 2024)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/terraform

go 1.22.4
go 1.22.5

require (
github.com/Netflix/go-expect v0.0.0-20220104043353-73e0943537d2
Expand Down
2 changes: 1 addition & 1 deletion internal/backend/remote-state/azure/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/azure

go 1.22.4
go 1.22.5

require (
github.com/Azure/azure-sdk-for-go v59.2.0+incompatible
Expand Down
2 changes: 1 addition & 1 deletion internal/backend/remote-state/consul/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/consul

go 1.22.4
go 1.22.5

require (
github.com/hashicorp/consul/api v1.13.0
Expand Down
2 changes: 1 addition & 1 deletion internal/backend/remote-state/cos/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/cos

go 1.22.4
go 1.22.5

require (
github.com/hashicorp/terraform v0.0.0-00010101000000-000000000000
Expand Down
2 changes: 1 addition & 1 deletion internal/backend/remote-state/gcs/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/gcs

go 1.22.4
go 1.22.5

require (
cloud.google.com/go/kms v1.15.0
Expand Down
2 changes: 1 addition & 1 deletion internal/backend/remote-state/kubernetes/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/kubernetes

go 1.22.4
go 1.22.5

require (
github.com/hashicorp/terraform v0.0.0-00010101000000-000000000000
Expand Down
2 changes: 1 addition & 1 deletion internal/backend/remote-state/oss/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/oss

go 1.22.4
go 1.22.5

require (
github.com/aliyun/alibaba-cloud-sdk-go v1.61.1501
Expand Down
2 changes: 1 addition & 1 deletion internal/backend/remote-state/pg/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/pg

go 1.22.4
go 1.22.5

require (
github.com/hashicorp/go-uuid v1.0.3
Expand Down
2 changes: 1 addition & 1 deletion internal/backend/remote-state/s3/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/s3

go 1.22.4
go 1.22.5

require (
github.com/aws/aws-sdk-go-v2 v1.25.3
Expand Down
2 changes: 1 addition & 1 deletion internal/legacy/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/hashicorp/terraform/internal/legacy

replace github.com/hashicorp/terraform => ../..

go 1.22.4
go 1.22.5

require (
github.com/davecgh/go-spew v1.1.1
Expand Down

0 comments on commit 0cbc9db

Please sign in to comment.