Bump minimum eligible Xray version

Update Xray release filtering to only include versions at or above v26.6.27 (previously v26.4.25). Also mark `google.golang.org/protobuf` as a direct dependency in `go.mod` by removing the `// indirect` annotation.
This commit is contained in:
MHSanaei
2026-06-28 14:57:43 +02:00
parent 79069d2b64
commit bbfbd7eba6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -825,7 +825,7 @@ func (s *ServerService) GetXrayVersions() ([]string, error) {
continue
}
if major > 26 || (major == 26 && minor > 4) || (major == 26 && minor == 4 && patch >= 25) {
if major > 26 || (major == 26 && minor > 6) || (major == 26 && minor == 6 && patch >= 27) {
versions = append(versions, release.TagName)
}
}