From e4760ec406c081ed5c3972406fb0c57aa46277f2 Mon Sep 17 00:00:00 2001 From: Kristoffer Dalby Date: Fri, 2 May 2025 16:44:46 +0200 Subject: [PATCH] capgen: update Signed-off-by: Kristoffer Dalby --- hscontrol/capver/capver_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hscontrol/capver/capver_test.go b/hscontrol/capver/capver_test.go index 5a9310ac..eb2d06ba 100644 --- a/hscontrol/capver/capver_test.go +++ b/hscontrol/capver/capver_test.go @@ -13,11 +13,10 @@ func TestTailscaleLatestMajorMinor(t *testing.T) { stripV bool expected []string }{ - {3, false, []string{"v1.76", "v1.78", "v1.80"}}, - {2, true, []string{"1.78", "1.80"}}, + {3, false, []string{"v1.78", "v1.80", "v1.82"}}, + {2, true, []string{"1.80", "1.82"}}, // Lazy way to see all supported versions {10, true, []string{ - "1.62", "1.64", "1.66", "1.68", @@ -27,6 +26,7 @@ func TestTailscaleLatestMajorMinor(t *testing.T) { "1.76", "1.78", "1.80", + "1.82", }}, {0, false, nil}, } @@ -46,7 +46,7 @@ func TestCapVerMinimumTailscaleVersion(t *testing.T) { input tailcfg.CapabilityVersion expected string }{ - {85, "v1.58.0"}, + {88, "v1.62.0"}, {90, "v1.64.0"}, {95, "v1.66.0"}, {106, "v1.74.0"},