From ad9b711a1b7c427ace060dc8f97e048eaa96a040 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Wed, 23 Aug 2023 13:42:15 -0700 Subject: [PATCH] tailcfg: bump capver to 72 to restore UPnP Actually fixed in 77ff705545 but that was cherry-picked to a branch and we don't bump capver in branches. This tells the control plane that UPnP should be re-enabled going forward. Updates #8992 Change-Id: I5c4743eb52fdee94175668c368c0f712536dc26b Signed-off-by: Brad Fitzpatrick --- tailcfg/tailcfg.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tailcfg/tailcfg.go b/tailcfg/tailcfg.go index c3dfe43f2..754d90eda 100644 --- a/tailcfg/tailcfg.go +++ b/tailcfg/tailcfg.go @@ -110,7 +110,8 @@ type CapabilityVersion int // - 69: 2023-08-16: removed Debug.LogHeap* + GoroutineDumpURL; added c2n /debug/logheap // - 70: 2023-08-16: removed most Debug fields; added NodeAttrDisable*, NodeAttrDebug* instead // - 71: 2023-08-17: added NodeAttrOneCGNATEnable, NodeAttrOneCGNATDisable -const CurrentCapabilityVersion CapabilityVersion = 71 +// - 72: 2023-08-23: TS-2023-006 UPnP issue fixed; UPnP can now be used again +const CurrentCapabilityVersion CapabilityVersion = 72 type StableID string