mirror of
https://github.com/hashicorp/terraform.git
synced 2025-12-18 23:26:07 -05:00
go: bump version to 1.25 (#37436)
This commit is contained in:
parent
e5a5e21801
commit
9f01530237
14 changed files with 22 additions and 12 deletions
5
.changes/v1.14/UPGRADE NOTES-20250814-162650.yaml
Normal file
5
.changes/v1.14/UPGRADE NOTES-20250814-162650.yaml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
kind: UPGRADE NOTES
|
||||
body: 'The parallelism of Terraform operations within container runtimes may be reduced depending on the CPU bandwidth limit setting.'
|
||||
time: 2025-08-14T16:26:50.569878+02:00
|
||||
custom:
|
||||
Issue: "37436"
|
||||
5
.changes/v1.14/UPGRADE NOTES-20250814-162752.yaml
Normal file
5
.changes/v1.14/UPGRADE NOTES-20250814-162752.yaml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
kind: UPGRADE NOTES
|
||||
body: 'Building Terraform 1.14 requires macOS Monterey or later (due to being built on Go 1.25 which imposes these requirements)'
|
||||
time: 2025-08-14T16:27:52.659896+02:00
|
||||
custom:
|
||||
Issue: "37436"
|
||||
|
|
@ -1 +1 @@
|
|||
1.24.5
|
||||
1.25
|
||||
|
|
|
|||
2
go.mod
2
go.mod
|
|
@ -1,6 +1,6 @@
|
|||
module github.com/hashicorp/terraform
|
||||
|
||||
go 1.24.5
|
||||
go 1.25
|
||||
|
||||
godebug winsymlink=0
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module github.com/hashicorp/terraform/internal/backend/remote-state/azure
|
||||
|
||||
go 1.24.5
|
||||
go 1.25
|
||||
|
||||
require (
|
||||
github.com/hashicorp/go-azure-helpers v0.72.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module github.com/hashicorp/terraform/internal/backend/remote-state/consul
|
||||
|
||||
go 1.24.5
|
||||
go 1.25
|
||||
|
||||
require (
|
||||
github.com/hashicorp/consul/api v1.32.1
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module github.com/hashicorp/terraform/internal/backend/remote-state/cos
|
||||
|
||||
go 1.24.5
|
||||
go 1.25
|
||||
|
||||
require (
|
||||
github.com/hashicorp/terraform v0.0.0-00010101000000-000000000000
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module github.com/hashicorp/terraform/internal/backend/remote-state/gcs
|
||||
|
||||
go 1.24.5
|
||||
go 1.25
|
||||
|
||||
require (
|
||||
cloud.google.com/go/kms v1.15.5
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module github.com/hashicorp/terraform/internal/backend/remote-state/kubernetes
|
||||
|
||||
go 1.24.5
|
||||
go 1.25
|
||||
|
||||
require (
|
||||
github.com/hashicorp/terraform v0.0.0-00010101000000-000000000000
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module github.com/hashicorp/terraform/internal/backend/remote-state/oci
|
||||
|
||||
go 1.24.5
|
||||
go 1.25
|
||||
|
||||
require (
|
||||
github.com/google/go-cmp v0.7.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module github.com/hashicorp/terraform/internal/backend/remote-state/oss
|
||||
|
||||
go 1.24.5
|
||||
go 1.25
|
||||
|
||||
require (
|
||||
github.com/aliyun/alibaba-cloud-sdk-go v1.61.1501
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module github.com/hashicorp/terraform/internal/backend/remote-state/pg
|
||||
|
||||
go 1.24.5
|
||||
go 1.25
|
||||
|
||||
require (
|
||||
github.com/hashicorp/go-uuid v1.0.3
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module github.com/hashicorp/terraform/internal/backend/remote-state/s3
|
||||
|
||||
go 1.24.5
|
||||
go 1.25
|
||||
|
||||
require (
|
||||
github.com/aws/aws-sdk-go-v2 v1.36.0
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ module github.com/hashicorp/terraform/internal/legacy
|
|||
|
||||
replace github.com/hashicorp/terraform => ../..
|
||||
|
||||
go 1.24.5
|
||||
go 1.25
|
||||
|
||||
require (
|
||||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
|
||||
|
|
|
|||
Loading…
Reference in a new issue