diff --git a/.changes/v1.14/UPGRADE NOTES-20250814-162650.yaml b/.changes/v1.14/UPGRADE NOTES-20250814-162650.yaml new file mode 100644 index 0000000000..17baa54cca --- /dev/null +++ b/.changes/v1.14/UPGRADE NOTES-20250814-162650.yaml @@ -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" diff --git a/.changes/v1.14/UPGRADE NOTES-20250814-162752.yaml b/.changes/v1.14/UPGRADE NOTES-20250814-162752.yaml new file mode 100644 index 0000000000..c42a78470c --- /dev/null +++ b/.changes/v1.14/UPGRADE NOTES-20250814-162752.yaml @@ -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" diff --git a/.go-version b/.go-version index 6521720b41..5e2b950027 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.24.5 +1.25 diff --git a/go.mod b/go.mod index 07e81397f4..d375fdf6e0 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/terraform -go 1.24.5 +go 1.25 godebug winsymlink=0 diff --git a/internal/backend/remote-state/azure/go.mod b/internal/backend/remote-state/azure/go.mod index f1d42da2b6..1dcd6c4203 100644 --- a/internal/backend/remote-state/azure/go.mod +++ b/internal/backend/remote-state/azure/go.mod @@ -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 diff --git a/internal/backend/remote-state/consul/go.mod b/internal/backend/remote-state/consul/go.mod index a6e698e7d0..2f17f49186 100644 --- a/internal/backend/remote-state/consul/go.mod +++ b/internal/backend/remote-state/consul/go.mod @@ -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 diff --git a/internal/backend/remote-state/cos/go.mod b/internal/backend/remote-state/cos/go.mod index 9826dd704f..dde5c75a8f 100644 --- a/internal/backend/remote-state/cos/go.mod +++ b/internal/backend/remote-state/cos/go.mod @@ -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 diff --git a/internal/backend/remote-state/gcs/go.mod b/internal/backend/remote-state/gcs/go.mod index cf9c8d163b..d245f8132f 100644 --- a/internal/backend/remote-state/gcs/go.mod +++ b/internal/backend/remote-state/gcs/go.mod @@ -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 diff --git a/internal/backend/remote-state/kubernetes/go.mod b/internal/backend/remote-state/kubernetes/go.mod index 84c23c3dbf..1b297122bd 100644 --- a/internal/backend/remote-state/kubernetes/go.mod +++ b/internal/backend/remote-state/kubernetes/go.mod @@ -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 diff --git a/internal/backend/remote-state/oci/go.mod b/internal/backend/remote-state/oci/go.mod index e7707ebfc3..e732c9df21 100644 --- a/internal/backend/remote-state/oci/go.mod +++ b/internal/backend/remote-state/oci/go.mod @@ -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 diff --git a/internal/backend/remote-state/oss/go.mod b/internal/backend/remote-state/oss/go.mod index 75fac8e1fe..22a6d48287 100644 --- a/internal/backend/remote-state/oss/go.mod +++ b/internal/backend/remote-state/oss/go.mod @@ -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 diff --git a/internal/backend/remote-state/pg/go.mod b/internal/backend/remote-state/pg/go.mod index d38e0307de..ea3e3f7c11 100644 --- a/internal/backend/remote-state/pg/go.mod +++ b/internal/backend/remote-state/pg/go.mod @@ -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 diff --git a/internal/backend/remote-state/s3/go.mod b/internal/backend/remote-state/s3/go.mod index dbe60197b5..b3651d1a99 100644 --- a/internal/backend/remote-state/s3/go.mod +++ b/internal/backend/remote-state/s3/go.mod @@ -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 diff --git a/internal/legacy/go.mod b/internal/legacy/go.mod index 928782be47..21af27b3c9 100644 --- a/internal/legacy/go.mod +++ b/internal/legacy/go.mod @@ -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