Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .changes/unreleased/NOTES-20250317-094931.yaml

This file was deleted.

7 changes: 7 additions & 0 deletions .changes/unreleased/NOTES-20250917-155810.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
kind: NOTES
body: 'all: This Go module has been updated to Go 1.24 per the [Go support policy](https://go.dev/doc/devel/release#policy).
It is recommended to review the [Go 1.24 release notes](https://go.dev/doc/go1.24)
before upgrading. Any consumers building on earlier Go versions may experience errors.'
time: 2025-09-17T15:58:10.843676+02:00
custom:
Issue: "201"
2 changes: 1 addition & 1 deletion .github/workflows/ci-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.24', '1.23' ]
go-version: [ '1.25', '1.24' ]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This Go module is typically kept up to date with the latest `terraform-plugin-fr

This Go module follows `terraform-plugin-framework` Go compatibility.

Currently, that means Go **1.23** must be used when developing and testing code.
Currently, that means Go **1.24** must be used when developing and testing code.

## Usage

Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/hashicorp/terraform-plugin-framework-timeouts

go 1.23.0

toolchain go1.23.7
go 1.24.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TIL, the toolchain will just use the latest Go patch version, perhaps we should adopt that everywhere 🤔


require (
github.com/google/go-cmp v0.7.0
Expand Down
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module tools

go 1.23.7
go 1.24.0

require github.com/hashicorp/copywrite v0.22.0

Expand Down