Skip to content

Commit eb0c6f8

Browse files
authored
goversion: add 1.23 to supported versions, update test matrix (#3780)
Add 1.23 to supported versions and to test matrix, remove 1.19 and 1.20 from supported versions (1.19 should have been removed long ago, but we forgot to do it on release).
1 parent c1366e9 commit eb0c6f8

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.teamcity/settings.kts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,25 +41,25 @@ To debug in IntelliJ Idea, open the 'Maven Projects' tool window (View
4141
version = "2023.05"
4242

4343
val targets = arrayOf(
44-
"linux/amd64/1.20",
4544
"linux/amd64/1.21",
4645
"linux/amd64/1.22",
46+
"linux/amd64/1.23"
4747
"linux/amd64/tip",
4848

49-
"linux/386/1.22",
49+
"linux/386/1.23",
5050

51-
"linux/arm64/1.22",
51+
"linux/arm64/1.23",
5252
"linux/arm64/tip",
5353

54-
"linux/ppc64le/1.22",
54+
"linux/ppc64le/1.23",
5555

56-
"windows/amd64/1.22",
56+
"windows/amd64/1.23",
5757
"windows/amd64/tip",
5858

59-
"mac/amd64/1.22",
59+
"mac/amd64/1.23",
6060
"mac/amd64/tip",
6161

62-
"mac/arm64/1.22",
62+
"mac/arm64/1.23",
6363
"mac/arm64/tip"
6464
)
6565

pkg/goversion/compat.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88

99
var (
1010
MinSupportedVersionOfGoMajor = 1
11-
MinSupportedVersionOfGoMinor = 19
11+
MinSupportedVersionOfGoMinor = 21
1212
MaxSupportedVersionOfGoMajor = 1
13-
MaxSupportedVersionOfGoMinor = 22
13+
MaxSupportedVersionOfGoMinor = 23
1414
goTooOldErr = fmt.Sprintf("Go version %%s is too old for this version of Delve (minimum supported version %d.%d, suppress this error with --check-go-version=false)", MinSupportedVersionOfGoMajor, MinSupportedVersionOfGoMinor)
1515
goTooOldWarn = fmt.Sprintf("WARNING: undefined behavior - Go version %%s is too old for this version of Delve (minimum supported version %d.%d)", MinSupportedVersionOfGoMajor, MinSupportedVersionOfGoMinor)
1616
dlvTooOldErr = fmt.Sprintf("Version of Delve is too old for Go version %%s (maximum supported version %d.%d, suppress this error with --check-go-version=false)", MaxSupportedVersionOfGoMajor, MaxSupportedVersionOfGoMinor)

0 commit comments

Comments
 (0)