From 6926e0a2df578df13c0d59b694f6ac157b2e3894 Mon Sep 17 00:00:00 2001 From: ICHINOSE Shogo Date: Sun, 9 Mar 2025 21:18:22 +0900 Subject: [PATCH 1/3] add Go 1.24 to the test matrix --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2e07fea9..0dc20744 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,10 +29,10 @@ jobs: import os go = [ # Keep the most recent production release at the top - '1.23', + '1.24', # Older production releases + '1.23', '1.22', - '1.21', ] mysql = [ '9.0', From fc353a4a1e5266b8f7319d9e22998cc89f961ded Mon Sep 17 00:00:00 2001 From: ICHINOSE Shogo Date: Mon, 7 Apr 2025 22:44:01 +0900 Subject: [PATCH 2/3] go.mod: update Go version to 1.22.0 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 187aff17..f17666dc 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module github.com/go-sql-driver/mysql -go 1.21.0 +go 1.22.0 require filippo.io/edwards25519 v1.1.0 From 09f335fceb0b6795b64b235c7e19d18e59bfd5f9 Mon Sep 17 00:00:00 2001 From: ICHINOSE Shogo Date: Mon, 7 Apr 2025 22:44:27 +0900 Subject: [PATCH 3/3] README.md: update Go version requirement to 1.22 or higher --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index da4593cc..65dd898d 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ A MySQL-Driver for Go's [database/sql](https://golang.org/pkg/database/sql/) pac ## Requirements -* Go 1.21 or higher. We aim to support the 3 latest versions of Go. +* Go 1.22 or higher. We aim to support the 3 latest versions of Go. * MySQL (5.7+) and MariaDB (10.5+) are supported. * [TiDB](https://github.com/pingcap/tidb) is supported by PingCAP. * Do not ask questions about TiDB in our issue tracker or forum.