From 024d48d9c1d81e6c4a9225aef1a436be823e5ee9 Mon Sep 17 00:00:00 2001 From: Charlotte Brandhorst-Satzkorn Date: Fri, 5 May 2023 14:06:23 -0700 Subject: [PATCH] tailcfg: bump capability version This change bumps the capability version to 62, after support for sending SSHEventNotificationRequests to control via noise for failure events was introduced. Updates tailscale/corp#9967 Signed-off-by: Charlotte Brandhorst-Satzkorn --- tailcfg/tailcfg.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tailcfg/tailcfg.go b/tailcfg/tailcfg.go index d2df24fc0..d9a38eda0 100644 --- a/tailcfg/tailcfg.go +++ b/tailcfg/tailcfg.go @@ -98,7 +98,8 @@ type CapabilityVersion int // - 59: 2023-03-16: Client understands Peers[].SelfNodeV4MasqAddrForThisPeer // - 60: 2023-04-06: Client understands IsWireGuardOnly // - 61: 2023-04-18: Client understand SSHAction.SSHRecorderFailureAction -const CurrentCapabilityVersion CapabilityVersion = 61 +// - 62: 2023-05-05: Client can notify control over noise for SSHEventNotificationRequest recording failure events +const CurrentCapabilityVersion CapabilityVersion = 62 type StableID string