mirror of
https://github.com/coder/coder.git
synced 2025-07-12 00:14:10 +00:00
Drops support for v1 of the tailnet API, which was the original coordination protocol where we only sent node updates, never marked them lost or disconnected. v2 of the tailnet API went GA for CLI clients in Coder 2.8.0, so clients older than that would stop working.
13 lines
178 B
Go
13 lines
178 B
Go
package proto
|
|
|
|
import (
|
|
"github.com/coder/coder/v2/apiversion"
|
|
)
|
|
|
|
const (
|
|
CurrentMajor = 2
|
|
CurrentMinor = 2
|
|
)
|
|
|
|
var CurrentVersion = apiversion.New(CurrentMajor, CurrentMinor)
|