mirror of
https://github.com/juanfont/headscale.git
synced 2025-02-08 18:18:03 +09:00
Some checks are pending
Build / build-cross (GOARCH=386 GOOS=linux) (push) Waiting to run
Build / build-cross (GOARCH=amd64 GOOS=darwin) (push) Waiting to run
Build / build-nix (push) Waiting to run
Build / build-cross (GOARCH=amd64 GOOS=linux) (push) Waiting to run
Build / build-cross (GOARCH=arm GOOS=linux GOARM=5) (push) Waiting to run
Build / build-cross (GOARCH=arm GOOS=linux GOARM=6) (push) Waiting to run
Build / build-cross (GOARCH=arm GOOS=linux GOARM=7) (push) Waiting to run
Build / build-cross (GOARCH=arm64 GOOS=darwin) (push) Waiting to run
Build / build-cross (GOARCH=arm64 GOOS=linux) (push) Waiting to run
Tests / test (push) Waiting to run
56 lines
939 B
Go
56 lines
939 B
Go
package capver
|
|
|
|
//Generated DO NOT EDIT
|
|
|
|
import "tailscale.com/tailcfg"
|
|
|
|
var tailscaleToCapVer = map[string]tailcfg.CapabilityVersion{
|
|
"v1.44.3": 63,
|
|
"v1.56.1": 82,
|
|
"v1.58.0": 85,
|
|
"v1.58.1": 85,
|
|
"v1.58.2": 85,
|
|
"v1.60.0": 87,
|
|
"v1.60.1": 87,
|
|
"v1.62.0": 88,
|
|
"v1.62.1": 88,
|
|
"v1.64.0": 90,
|
|
"v1.64.1": 90,
|
|
"v1.64.2": 90,
|
|
"v1.66.0": 95,
|
|
"v1.66.1": 95,
|
|
"v1.66.2": 95,
|
|
"v1.66.3": 95,
|
|
"v1.66.4": 95,
|
|
"v1.68.0": 97,
|
|
"v1.68.1": 97,
|
|
"v1.68.2": 97,
|
|
"v1.70.0": 102,
|
|
"v1.72.0": 104,
|
|
"v1.72.1": 104,
|
|
"v1.74.0": 106,
|
|
"v1.74.1": 106,
|
|
"v1.76.0": 106,
|
|
"v1.76.1": 106,
|
|
"v1.76.6": 106,
|
|
"v1.78.0": 109,
|
|
"v1.78.1": 109,
|
|
"v1.80.0": 113,
|
|
}
|
|
|
|
|
|
var capVerToTailscaleVer = map[tailcfg.CapabilityVersion]string{
|
|
63: "v1.44.3",
|
|
82: "v1.56.1",
|
|
85: "v1.58.0",
|
|
87: "v1.60.0",
|
|
88: "v1.62.0",
|
|
90: "v1.64.0",
|
|
95: "v1.66.0",
|
|
97: "v1.68.0",
|
|
102: "v1.70.0",
|
|
104: "v1.72.0",
|
|
106: "v1.74.0",
|
|
109: "v1.78.0",
|
|
113: "v1.80.0",
|
|
}
|