release: sourcegraph@5.2.6 (#59504)

* release: sourcegraph@5.2.6

* manually remove all changes in doc folder to pass CI

* weird extra doc change added by vsCode md editor
This commit is contained in:
Warren Gifford 2024-01-10 19:51:58 -08:00 committed by GitHub
parent 24fc9f5923
commit 09063fe99d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,17 +32,17 @@ var (
// non-cluster, non-docker-compose, and non-pure-docker installations what the latest
// version is. The version here _must_ be available at https://hub.docker.com/r/sourcegraph/server/tags/
// before landing in master.
latestReleaseDockerServerImageBuild = newPingResponse("5.2.5")
latestReleaseDockerServerImageBuild = newPingResponse("5.2.6")
// latestReleaseKubernetesBuild is only used by sourcegraph.com to tell existing Sourcegraph
// cluster deployments what the latest version is. The version here _must_ be available in
// a tag at https://github.com/sourcegraph/deploy-sourcegraph before landing in master.
latestReleaseKubernetesBuild = newPingResponse("5.2.5")
latestReleaseKubernetesBuild = newPingResponse("5.2.6")
// latestReleaseDockerComposeOrPureDocker is only used by sourcegraph.com to tell existing Sourcegraph
// Docker Compose or Pure Docker deployments what the latest version is. The version here _must_ be
// available in a tag at https://github.com/sourcegraph/deploy-sourcegraph-docker before landing in master.
latestReleaseDockerComposeOrPureDocker = newPingResponse("5.2.5")
latestReleaseDockerComposeOrPureDocker = newPingResponse("5.2.6")
)
func getLatestRelease(deployType string) pingResponse {